예제 #1
0
 public HsHero() : base("new Hero")
 {
     ClassType = ClassType.None;
     Attack    = new OmcInt(0);
     Health    = new OmcInt(30);
     Armor     = new OmcInt(0);
 }
예제 #2
0
 public HsHero(ClassType classType, int startingHealth = 30) : base(classType.ToString())
 {
     ClassType = classType;
     Attack    = new OmcInt(0);
     Health    = new OmcInt(startingHealth);
     Armor     = new OmcInt(0);
 }
예제 #3
0
        public Minion(string cardName, int manaCost, int attack, int health, string toolTip = default(string), Race race = default(Race)) : base(cardName, toolTip, CardType.Minion)
        {
            ManaCost = new OmcInt(manaCost);
            Attack   = new OmcInt(attack);
            Health   = new OmcInt(health);

            Race = race;
        }