Update creature types

This commit is contained in:
Noah Gleason 2018-07-06 19:25:51 -04:00
parent 30246732b8
commit 3b663e19b5
No known key found for this signature in database
GPG key ID: EC030EC6B0650A40
6 changed files with 7 additions and 6 deletions

View file

@ -25,7 +25,7 @@ public final class Electryte extends CardImpl {
public Electryte(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{R}{R}");
this.subtype.add(SubType.BEAST);
this.subtype.add(SubType.BEAST, SubType.TRILOBITE);
this.power = new MageInt(3);
this.toughness = new MageInt(3);

View file

@ -29,7 +29,7 @@ public final class LudevicsTestSubject extends CardImpl {
public LudevicsTestSubject(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{U}");
this.subtype.add(SubType.LIZARD);
this.subtype.add(SubType.LIZARD, SubType.EGG);
this.power = new MageInt(0);
this.toughness = new MageInt(3);

View file

@ -27,7 +27,7 @@ public final class ProwlingPangolin extends CardImpl {
public ProwlingPangolin(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{B}{B}");
this.subtype.add(SubType.BEAST);
this.subtype.add(SubType.BEAST, SubType.PANGOLIN);
this.power = new MageInt(6);
this.toughness = new MageInt(5);

View file

@ -22,7 +22,7 @@ public final class RocEgg extends CardImpl {
public RocEgg(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{W}");
this.subtype.add(SubType.BIRD);
this.subtype.add(SubType.BIRD, SubType.EGG);
this.power = new MageInt(0);
this.toughness = new MageInt(3);

View file

@ -23,7 +23,8 @@ public final class RukhEgg extends CardImpl {
public RukhEgg(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{R}");
this.subtype.add(SubType.BIRD);
this.subtype.add(SubType.BIRD, SubType.EGG);
this.power = new MageInt(0);
this.toughness = new MageInt(3);

View file

@ -29,7 +29,7 @@ public final class SummonersEgg extends CardImpl {
public SummonersEgg(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{4}");
this.subtype.add(SubType.CONSTRUCT);
this.subtype.add(SubType.EGG);
this.power = new MageInt(0);
this.toughness = new MageInt(4);