Menace is now a singleton like other keywords

This commit is contained in:
Evan Kranzler 2017-09-13 15:38:02 -04:00
parent 6cb4299b5a
commit b83e12f51c
93 changed files with 110 additions and 103 deletions

View file

@ -105,7 +105,7 @@ public class ExertTest extends CardTestPlayerBase {
setStopAt(1, PhaseStep.POSTCOMBAT_MAIN);
execute();
assertAbility(playerA, minotaur, new MenaceAbility(), true);
assertAbility(playerA, minotaur, MenaceAbility.getInstance(), true);
assertPowerToughness(playerA, minotaur, 5, 4);
}

View file

@ -203,7 +203,7 @@ public class RenownTest extends CardTestPlayerBase {
Permanent goblin = getPermanent("Goblin Glory Chaser", playerA);
Assert.assertEquals("has has renown", true, goblin.isRenowned());
assertAbility(playerA, "Goblin Glory Chaser", new MenaceAbility(), true);
assertAbility(playerA, "Goblin Glory Chaser", MenaceAbility.getInstance(), true);
assertPowerToughness(playerA, "Goblin Glory Chaser", 2, 2);
assertLife(playerA, 20);