Liberi
An exergame built for kids with CP!
Item Class Reference

A Class for storing items. Can be used as is or be derived from. See GemItem or GuardianWeapon for examples of derived items. More...

Inherits ScriptableObject.

Inherited by GemItem, GuardianWeapon, and HeroItem.

Public Attributes

Sprite GUISprite
 The Sprite used to represent this item in the GUI. More...
 

Properties

string DisplayNameID [get]
 The Localization ID of the Item's actual name as it will appear in inventory/shops. More...
 
string DescriptionID [get]
 The Localization ID of the Item's description/flavour text. More...
 
virtual string Type [get]
 Derived classes should override this property with a relevant string used for comparisons related to how an item is treater by a vendor. It is kept as a string and not an Enum beacuse this type will often be sent as a net message and Enum's introduce type/case sensitivity. More...
 
virtual bool Equippable [get]
 Derived classes should override this property to return true if they are equippable. More...
 

Detailed Description

A Class for storing items. Can be used as is or be derived from. See GemItem or GuardianWeapon for examples of derived items.

Definition at line 8 of file Item.cs.

Member Data Documentation

Sprite Item.GUISprite

The Sprite used to represent this item in the GUI.

Definition at line 21 of file Item.cs.

Property Documentation

string Item.DescriptionID
get

The Localization ID of the Item's description/flavour text.

Definition at line 17 of file Item.cs.

string Item.DisplayNameID
get

The Localization ID of the Item's actual name as it will appear in inventory/shops.

Definition at line 13 of file Item.cs.

virtual bool Item.Equippable
get

Derived classes should override this property to return true if they are equippable.

Definition at line 33 of file Item.cs.

virtual string Item.Type
get

Derived classes should override this property with a relevant string used for comparisons related to how an item is treater by a vendor. It is kept as a string and not an Enum beacuse this type will often be sent as a net message and Enum's introduce type/case sensitivity.

Definition at line 28 of file Item.cs.


The documentation for this class was generated from the following file: