mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Fix some typos and copy-paste errors
This commit is contained in:
parent
e139e4524f
commit
91aae33db6
6 changed files with 6 additions and 6 deletions
|
@ -51,7 +51,7 @@ import mage.filter.predicate.mageobject.ColorPredicate;
|
|||
*/
|
||||
public class KnightOfStromgald extends CardImpl {
|
||||
|
||||
private static final FilterCard filter = new FilterCard("White");
|
||||
private static final FilterCard filter = new FilterCard("white");
|
||||
|
||||
static {
|
||||
filter.add(new ColorPredicate(ObjectColor.WHITE));
|
||||
|
|
|
@ -51,7 +51,7 @@ import mage.filter.predicate.mageobject.ColorPredicate;
|
|||
*/
|
||||
public class OrderOfTheWhiteShield extends CardImpl {
|
||||
|
||||
private static final FilterCard filter = new FilterCard("Black");
|
||||
private static final FilterCard filter = new FilterCard("black");
|
||||
|
||||
static {
|
||||
filter.add(new ColorPredicate(ObjectColor.BLACK));
|
||||
|
|
|
@ -51,7 +51,7 @@ import mage.filter.predicate.mageobject.ColorPredicate;
|
|||
*/
|
||||
public class OrderOfLeitbur extends CardImpl {
|
||||
|
||||
private static final FilterCard filter = new FilterCard("Black");
|
||||
private static final FilterCard filter = new FilterCard("black");
|
||||
|
||||
static {
|
||||
filter.add(new ColorPredicate(ObjectColor.BLACK));
|
||||
|
|
|
@ -51,7 +51,7 @@ import mage.filter.predicate.mageobject.ColorPredicate;
|
|||
*/
|
||||
public class OrderOfTheEbonHand extends CardImpl {
|
||||
|
||||
private static final FilterCard filter = new FilterCard("White");
|
||||
private static final FilterCard filter = new FilterCard("white");
|
||||
|
||||
static {
|
||||
filter.add(new ColorPredicate(ObjectColor.WHITE));
|
||||
|
|
|
@ -75,7 +75,7 @@ public class OpalArchangel extends CardImpl {
|
|||
class OpalArchangelToken extends Token {
|
||||
|
||||
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);
|
||||
subtype.add("Angel");
|
||||
power = new MageInt(5);
|
||||
|
|
|
@ -76,7 +76,7 @@ class OpalGargoyleToken extends Token {
|
|||
public OpalGargoyleToken() {
|
||||
super("Gargoyle", "a 2/2 Gargoyle creature with flying");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add("Knight");
|
||||
subtype.add("Gargoyle");
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(2);
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
|
Loading…
Reference in a new issue