mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
fix verify test, and Tarmogoyf Next rules text
This commit is contained in:
parent
1063c93c3f
commit
223b745d17
2 changed files with 3 additions and 7 deletions
|
|
@ -18,8 +18,7 @@ public final class TarmogoyfToken extends TokenImpl {
|
|||
private static final DynamicValue powerValue = CardTypesInGraveyardCount.ALL;
|
||||
|
||||
public TarmogoyfToken() {
|
||||
super("Tarmogoyf Token",
|
||||
"Tarmogoyf’s power is equal to the number of card types among cards in all graveyards and its toughness is equal to that number plus 1.");
|
||||
super("Tarmogoyf Token", "Tarmogoyf token");
|
||||
manaCost = new ManaCostsImpl<>("{1}{G}");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setGreen(true);
|
||||
|
|
@ -27,8 +26,7 @@ public final class TarmogoyfToken extends TokenImpl {
|
|||
power = new MageInt(0);
|
||||
toughness = new MageInt(1);
|
||||
|
||||
// Tarmogoyf’s power is equal to the number of card types among cards in all
|
||||
// graveyards and its toughness is equal to that number plus 1.
|
||||
// Tarmogoyf's power is equal to the number of card types among cards in all graveyards and its toughness is equal to that number plus 1.
|
||||
this.addAbility(new SimpleStaticAbility(Zone.ALL, new SetBasePowerToughnessPlusOneSourceEffect(powerValue)));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue