mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
Update creature types
This commit is contained in:
parent
30246732b8
commit
3b663e19b5
6 changed files with 7 additions and 6 deletions
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue