fix verify test, and Tarmogoyf Next rules text

This commit is contained in:
Susucre 2024-06-04 12:21:12 +02:00
parent 1063c93c3f
commit 223b745d17
2 changed files with 3 additions and 7 deletions

View file

@ -18,8 +18,7 @@ public final class TarmogoyfToken extends TokenImpl {
private static final DynamicValue powerValue = CardTypesInGraveyardCount.ALL;
public TarmogoyfToken() {
super("Tarmogoyf Token",
"Tarmogoyfs 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);
// Tarmogoyfs 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)));
}