Minor changes.

This commit is contained in:
LevelX2 2015-11-04 17:16:45 +01:00
parent 54d28550b4
commit af18f95bba
2 changed files with 8 additions and 6 deletions

View file

@ -53,13 +53,11 @@ public class LordOfExtinction extends CardImpl {
this.expansionSetCode = "ARB"; this.expansionSetCode = "ARB";
this.subtype.add("Elemental"); this.subtype.add("Elemental");
this.power = new MageInt(0); this.power = new MageInt(0);
this.toughness = new MageInt(0); this.toughness = new MageInt(0);
// Lord of Extinction's power and toughness are each equal to the number of cards in all graveyards. // Lord of Extinction's power and toughness are each equal to the number of cards in all graveyards.
this.addAbility(new SimpleStaticAbility(Zone.ALL, new SetPowerToughnessSourceEffect(new LordOfExtinctionDynamicCount(), Duration.WhileOnBattlefield))); this.addAbility(new SimpleStaticAbility(Zone.ALL, new SetPowerToughnessSourceEffect(new LordOfExtinctionDynamicCount(), Duration.EndOfGame)));
} }
public LordOfExtinction(final LordOfExtinction card) { public LordOfExtinction(final LordOfExtinction card) {

View file

@ -662,9 +662,13 @@ public class TestPlayer implements Player {
} }
} }
if (targetFound && targetCard.isChosen()) { if (targetFound) {
choices.remove(choose2); if (targetCard.isChosen()) {
return true; choices.remove(choose2);
return true;
} else {
target.clearChosen();
}
} }
} }
} }