forked from External/mage
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.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) {
|
||||||
|
|
|
||||||
|
|
@ -662,9 +662,13 @@ public class TestPlayer implements Player {
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (targetFound && targetCard.isChosen()) {
|
if (targetFound) {
|
||||||
|
if (targetCard.isChosen()) {
|
||||||
choices.remove(choose2);
|
choices.remove(choose2);
|
||||||
return true;
|
return true;
|
||||||
|
} else {
|
||||||
|
target.clearChosen();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue