Beispiel #1
0
 public ItemPet(int id, string name, string des, string sprite, int buyprice, int sellpirce, int capacity, ItemType type,
                OtherItemType othertype,
                int petID)
     : base(id, name, des, sprite, buyprice, sellpirce, capacity, type, othertype)
 {
     PetID = petID;
 }
Beispiel #2
0
 public ItemSeed(int id, string name, string des, string sprite, int buyprice, int sellpirce, int capacity, ItemType type,
                 OtherItemType othertype,
                 int maxgrow, int daygrow, int productid, List <string> sprites)
     : base(id, name, des, sprite, buyprice, sellpirce, capacity, type, othertype)
 {
     Maxgrow   = maxgrow;
     Daygrow   = daygrow;
     ProductID = productid;
     Sprites   = sprites;
 }
Beispiel #3
0
 public OtherItem(int id, string name, string des, string sprite, int buyprice, int sellpirce, int capacity, ItemType type,
      OtherItemType othertype)
     : base(id, name, des, sprite, buyprice, sellpirce, capacity, type)
 {
     OtherType = othertype;
 }