public Consumable(Item item) { this.SetID(item.GetID()); this.SetName(item.GetName()); this.SetDescription(item.GetDescription()); this.SetPrice(item.GetPrice()); this.ActuallySetSprite(item.GetSprite()); ActuallySetSprite(new Image()); }
public Equipable(Item item) { this.SetID(item.GetID()); this.SetName(item.GetName()); this.SetDescription(item.GetDescription()); this.SetPrice(item.GetPrice()); this.ActuallySetSprite(item.GetSprite()); ActuallySetSprite(new Image()); modifiers = new List <Modifiers>(); }