mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
Minor changes.
This commit is contained in:
parent
54d28550b4
commit
af18f95bba
2 changed files with 8 additions and 6 deletions
|
@ -53,13 +53,11 @@ public class LordOfExtinction extends CardImpl {
|
|||
this.expansionSetCode = "ARB";
|
||||
this.subtype.add("Elemental");
|
||||
|
||||
|
||||
|
||||
this.power = 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.
|
||||
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) {
|
||||
|
|
|
@ -662,9 +662,13 @@ public class TestPlayer implements Player {
|
|||
|
||||
}
|
||||
}
|
||||
if (targetFound && targetCard.isChosen()) {
|
||||
choices.remove(choose2);
|
||||
return true;
|
||||
if (targetFound) {
|
||||
if (targetCard.isChosen()) {
|
||||
choices.remove(choose2);
|
||||
return true;
|
||||
} else {
|
||||
target.clearChosen();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue