mirror of
https://github.com/correl/mage.git
synced 2025-04-09 01:01:06 -09:00
Minor changes.
This commit is contained in:
parent
54d28550b4
commit
af18f95bba
2 changed files with 8 additions and 6 deletions
Mage.Sets/src/mage/sets/alarareborn
Mage.Tests/src/test/java/org/mage/test/player
|
@ -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…
Add table
Reference in a new issue