Liberi
An exergame built for kids with CP!
Item.cs
1 using UnityEngine;
2 using System.Collections;
3 
8 public class Item : ScriptableObject
9 {
13  public string DisplayNameID { get {return "item.name." + name;} }
17  public string DescriptionID { get {return "item.desc." + name;} }
21  public Sprite GUISprite;
22 
28  public virtual string Type {get {return "item";}}
29 
33  public virtual bool Equippable {get {return false;}}
34 }
string DisplayNameID
The Localization ID of the Item's actual name as it will appear in inventory/shops.
Definition: Item.cs:13
A Class for storing items. Can be used as is or be derived from. See GemItem or GuardianWeapon for ex...
Definition: Item.cs:8
virtual string Type
Derived classes should override this property with a relevant string used for comparisons related to ...
Definition: Item.cs:28
Sprite GUISprite
The Sprite used to represent this item in the GUI.
Definition: Item.cs:21
virtual bool Equippable
Derived classes should override this property to return true if they are equippable.
Definition: Item.cs:33
string DescriptionID
The Localization ID of the Item's description/flavour text.
Definition: Item.cs:17