tModLoader v2024.03
A mod to make and play Terraria mods
ItemDefinition Class Reference

ItemDefinition represents an Item identity. A typical use for this class is usage in ModConfig, perhaps to facilitate an Item tweaking mod. More...

Inherits EntityDefinition.

Public Member Functions

 ItemDefinition (int type)
 Note: As ModConfig loads before other content, make sure to only use ItemDefinition(string, string) for modded content in ModConfig classes.
 
 ItemDefinition (string key)
 
 ItemDefinition (string mod, string name)
 
- Public Member Functions inherited from EntityDefinition
 EntityDefinition (string key)
 
 EntityDefinition (string mod, string name)
 
override bool Equals (object obj)
 
override int GetHashCode ()
 
TagCompound SerializeData ()
 
override string ToString ()
 
TagCompound SerializeData ()
 

Static Public Member Functions

static ItemDefinition FromString (string s)
 
static ItemDefinition Load (TagCompound tag)
 

Static Public Attributes

static readonly Func< TagCompound, ItemDefinitionDESERIALIZER = Load
 

Properties

override string DisplayName [get]
 
override int Type [get]
 
- Properties inherited from EntityDefinition
virtual string DisplayName [get]
 
virtual bool IsUnloaded [get]
 
abstract int Type [get]
 

Additional Inherited Members

- Public Attributes inherited from EntityDefinition
string Mod
 
string Name
 

Detailed Description

ItemDefinition represents an Item identity. A typical use for this class is usage in ModConfig, perhaps to facilitate an Item tweaking mod.