Fix some typos and copy-paste errors

This commit is contained in:
LoneFox 2015-06-24 19:32:35 +03:00
parent e139e4524f
commit 91aae33db6
6 changed files with 6 additions and 6 deletions

View file

@ -51,7 +51,7 @@ import mage.filter.predicate.mageobject.ColorPredicate;
*/ */
public class KnightOfStromgald extends CardImpl { public class KnightOfStromgald extends CardImpl {
private static final FilterCard filter = new FilterCard("White"); private static final FilterCard filter = new FilterCard("white");
static { static {
filter.add(new ColorPredicate(ObjectColor.WHITE)); filter.add(new ColorPredicate(ObjectColor.WHITE));

View file

@ -51,7 +51,7 @@ import mage.filter.predicate.mageobject.ColorPredicate;
*/ */
public class OrderOfTheWhiteShield extends CardImpl { public class OrderOfTheWhiteShield extends CardImpl {
private static final FilterCard filter = new FilterCard("Black"); private static final FilterCard filter = new FilterCard("black");
static { static {
filter.add(new ColorPredicate(ObjectColor.BLACK)); filter.add(new ColorPredicate(ObjectColor.BLACK));

View file

@ -51,7 +51,7 @@ import mage.filter.predicate.mageobject.ColorPredicate;
*/ */
public class OrderOfLeitbur extends CardImpl { public class OrderOfLeitbur extends CardImpl {
private static final FilterCard filter = new FilterCard("Black"); private static final FilterCard filter = new FilterCard("black");
static { static {
filter.add(new ColorPredicate(ObjectColor.BLACK)); filter.add(new ColorPredicate(ObjectColor.BLACK));

View file

@ -51,7 +51,7 @@ import mage.filter.predicate.mageobject.ColorPredicate;
*/ */
public class OrderOfTheEbonHand extends CardImpl { public class OrderOfTheEbonHand extends CardImpl {
private static final FilterCard filter = new FilterCard("White"); private static final FilterCard filter = new FilterCard("white");
static { static {
filter.add(new ColorPredicate(ObjectColor.WHITE)); filter.add(new ColorPredicate(ObjectColor.WHITE));

View file

@ -75,7 +75,7 @@ public class OpalArchangel extends CardImpl {
class OpalArchangelToken extends Token { class OpalArchangelToken extends Token {
public OpalArchangelToken() { public OpalArchangelToken() {
super("Angel", "a 3/3 Angelt creature with flying and vigilance"); super("Angel", "a 3/3 Angel creature with flying and vigilance");
cardType.add(CardType.CREATURE); cardType.add(CardType.CREATURE);
subtype.add("Angel"); subtype.add("Angel");
power = new MageInt(5); power = new MageInt(5);

View file

@ -76,7 +76,7 @@ class OpalGargoyleToken extends Token {
public OpalGargoyleToken() { public OpalGargoyleToken() {
super("Gargoyle", "a 2/2 Gargoyle creature with flying"); super("Gargoyle", "a 2/2 Gargoyle creature with flying");
cardType.add(CardType.CREATURE); cardType.add(CardType.CREATURE);
subtype.add("Knight"); subtype.add("Gargoyle");
power = new MageInt(2); power = new MageInt(2);
toughness = new MageInt(2); toughness = new MageInt(2);
this.addAbility(FlyingAbility.getInstance()); this.addAbility(FlyingAbility.getInstance());