Beispiel #1
0
 public override bool LoadFromTabData(TabData tabData)
 {
     cardName = tabData.ReadString("CardName");
     description = tabData.ReadString("Description");
     type = (CardType)tabData.ReadInt("CardType");
     cost = tabData.ReadInt("Cost");
     return true;
 }
Beispiel #2
0
 public override bool LoadFromTabData(TabData tabData)
 {
     minionName = tabData.ReadString("MinionName");
     description = tabData.ReadString("Description");
     maxHP = tabData.ReadInt("MaxHP");
     dmgPhysics = tabData.ReadInt("PhysicsDamage");
     return true;
 }