mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 11:32:00 -08:00
fixed Mistform creature types and verify test for phyrexian mana
This commit is contained in:
parent
46d44f84e3
commit
89ee5eeeae
2 changed files with 2 additions and 2 deletions
|
|
@ -51,7 +51,7 @@ public class MistformUltimus extends CardImpl {
|
||||||
this.toughness = new MageInt(3);
|
this.toughness = new MageInt(3);
|
||||||
|
|
||||||
// Mistform Ultimus is every creature type.
|
// Mistform Ultimus is every creature type.
|
||||||
this.subtype.add(ChangelingAbility.ALL_CREATURE_TYPE); // "All Creature Type"
|
this.addAbility(ChangelingAbility.getInstance());
|
||||||
}
|
}
|
||||||
|
|
||||||
public MistformUltimus(final MistformUltimus card) {
|
public MistformUltimus(final MistformUltimus card) {
|
||||||
|
|
|
||||||
|
|
@ -211,7 +211,7 @@ public class VerifyCardDataTest {
|
||||||
cost = null;
|
cost = null;
|
||||||
}
|
}
|
||||||
if (cost != null) {
|
if (cost != null) {
|
||||||
cost = cost.replaceAll("P\\}", "/P}");
|
cost = cost.replaceAll("P\\}", "P}");
|
||||||
}
|
}
|
||||||
if (!Objects.equals(cost, expected)) {
|
if (!Objects.equals(cost, expected)) {
|
||||||
fail(card, "cost", cost + " != " + expected);
|
fail(card, "cost", cost + " != " + expected);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue