Merge pull request #3032 from ingmargoudt/type_api

Type api
This commit is contained in:
Derek M 2017-03-28 22:48:02 -04:00 committed by GitHub
commit b68bfdf4c2
6382 changed files with 17850 additions and 14126 deletions

View file

@ -117,7 +117,7 @@ public class LazavDimirMastermindTest extends CardTestPlayerBase {
Permanent lazav = getPermanent("Lazav, Dimir Mastermind", playerA.getId());
Assert.assertTrue(lazav.getAbilities().contains(FlyingAbility.getInstance()));
Assert.assertTrue(lazav.getSubtype(currentGame).contains("Specter"));
Assert.assertTrue(lazav.getSupertype().contains("Legendary"));
Assert.assertTrue(lazav.isLegendary());
assertPermanentCount(playerA, "Silvercoat Lion", 1);
assertPowerToughness(playerA, "Silvercoat Lion", 2, 2);
@ -147,7 +147,7 @@ public class LazavDimirMastermindTest extends CardTestPlayerBase {
Permanent lazav = getPermanent("Lazav, Dimir Mastermind", playerA.getId());
Assert.assertTrue(lazav.getSubtype(currentGame).contains("Cat"));
Assert.assertTrue(lazav.getSupertype().contains("Legendary"));
Assert.assertTrue(lazav.isLegendary());
}
/**