Fix creature type typos

- Ravenous Baboons just became a Monkey recently
- Apparently there's more than one Sea King
This commit is contained in:
Neil Gentleman 2016-10-15 09:51:32 -07:00
parent 391bf4bfc3
commit f5fb2c0b19
6 changed files with 7 additions and 6 deletions

View file

@ -49,7 +49,7 @@ public class AetherTheorist extends CardImpl {
public AetherTheorist(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{U}");
this.subtype.add("Vedelkan");
this.subtype.add("Vedalken");
this.subtype.add("Rogue");
this.power = new MageInt(1);
this.toughness = new MageInt(3);

View file

@ -54,7 +54,7 @@ public class PadeemConsulOfInnovation extends CardImpl {
public PadeemConsulOfInnovation(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{U}");
this.supertype.add("Legendary");
this.subtype.add("Veldalken");
this.subtype.add("Vedalken");
this.subtype.add("Artificer");
this.power = new MageInt(1);
this.toughness = new MageInt(4);

View file

@ -56,6 +56,7 @@ public class QuicksmithGenius extends CardImpl {
public QuicksmithGenius(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{R}");
this.subtype.add("Human");
this.subtype.add("Artificer");
this.power = new MageInt(3);
this.toughness = new MageInt(2);

View file

@ -45,7 +45,7 @@ public class RavenousBaboons extends CardImpl {
public RavenousBaboons(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{R}");
this.subtype.add("Ape");
this.subtype.add("Monkey");
this.power = new MageInt(2);
this.toughness = new MageInt(2);

View file

@ -42,8 +42,8 @@ public class VedalkenBlademaster extends CardImpl {
public VedalkenBlademaster(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{U}");
this.subtype.add("Vedaklen");
this.subtype.add("Solider");
this.subtype.add("Vedalken");
this.subtype.add("Soldier");
this.power = new MageInt(2);
this.toughness = new MageInt(3);

View file

@ -193,7 +193,7 @@ public class Legends extends ExpansionSet {
cards.add(new SetCardInfo("Ring of Immortals", 238, Rarity.RARE, mage.cards.r.RingOfImmortals.class));
cards.add(new SetCardInfo("Riven Turnbull", 294, Rarity.UNCOMMON, mage.cards.r.RivenTurnbull.class));
cards.add(new SetCardInfo("Rubinia Soulsinger", 296, Rarity.RARE, mage.cards.r.RubiniaSoulsinger.class));
cards.add(new SetCardInfo("Sea King's Blessing", 75, Rarity.UNCOMMON, mage.cards.s.SeaKingsBlessing.class));
cards.add(new SetCardInfo("Sea Kings' Blessing", 75, Rarity.UNCOMMON, mage.cards.s.SeaKingsBlessing.class));
cards.add(new SetCardInfo("Segovian Leviathan", 76, Rarity.UNCOMMON, mage.cards.s.SegovianLeviathan.class));
cards.add(new SetCardInfo("Sentinel", 239, Rarity.RARE, mage.cards.s.Sentinel.class));
cards.add(new SetCardInfo("Serpent Generator", 240, Rarity.RARE, mage.cards.s.SerpentGenerator.class));