Exemplo n.º 1
0
 public void TestThatCharAbilityHasCorrectMPCostWithZeroCost()
 {
     Character bob = new Character("Bob", null, 10, 10, 10, new Item(), "Warrior");
     var target = new CharAbility("Fire", null, "spell",0, bob);
     Assert.AreEqual(target.getMPCost(), 1);
 }