mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
Fixed Dragon Egg tests
This commit is contained in:
parent
3f73cf4121
commit
fb36f329f9
2 changed files with 2 additions and 1 deletions
|
@ -19,7 +19,7 @@ public final class DragonEgg extends CardImpl {
|
||||||
|
|
||||||
public DragonEgg(UUID ownerId, CardSetInfo setInfo) {
|
public DragonEgg(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{R}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{R}");
|
||||||
this.subtype.add(SubType.DRAGON);//, SubType.EGG); uncomment when MTGJSON is updated with M19
|
this.subtype.add(SubType.DRAGON, SubType.EGG);
|
||||||
|
|
||||||
this.power = new MageInt(0);
|
this.power = new MageInt(0);
|
||||||
this.toughness = new MageInt(2);
|
this.toughness = new MageInt(2);
|
||||||
|
|
|
@ -72,6 +72,7 @@ public class VerifyCardDataTest {
|
||||||
|
|
||||||
// subtype
|
// subtype
|
||||||
skipListCreate("SUBTYPE");
|
skipListCreate("SUBTYPE");
|
||||||
|
skipListAddName("SUBTYPE", "Dragon Egg"); // uncomment when MTGJSON is updated with M19
|
||||||
|
|
||||||
// number
|
// number
|
||||||
skipListCreate("NUMBER");
|
skipListCreate("NUMBER");
|
||||||
|
|
Loading…
Reference in a new issue