mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +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 {
|
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));
|
||||||
|
|
|
@ -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));
|
||||||
|
|
|
@ -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));
|
||||||
|
|
|
@ -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));
|
||||||
|
|
|
@ -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);
|
||||||
|
|
|
@ -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());
|
||||||
|
|
Loading…
Reference in a new issue