mirror of
https://github.com/correl/mage.git
synced 2024-11-16 03:00:12 +00:00
Removed private keyword from BirdToken of Scion of Vitu Ghazi.
This commit is contained in:
parent
97505873aa
commit
3619707e65
1 changed files with 13 additions and 12 deletions
|
@ -78,16 +78,17 @@ public class ScionOfVituGhazi extends CardImpl<ScionOfVituGhazi> {
|
||||||
return new ScionOfVituGhazi(this);
|
return new ScionOfVituGhazi(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
private class BirdToken extends Token {
|
|
||||||
|
|
||||||
public BirdToken() {
|
|
||||||
super("Bird", "1/1 white Bird creature token with flying");
|
|
||||||
cardType.add(CardType.CREATURE);
|
|
||||||
color.setWhite(true);
|
|
||||||
subtype.add("Bird");
|
|
||||||
power = new MageInt(1);
|
|
||||||
toughness = new MageInt(1);
|
|
||||||
addAbility(FlyingAbility.getInstance());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
class BirdToken extends Token {
|
||||||
|
public BirdToken() {
|
||||||
|
super("Bird", "1/1 white Bird creature token with flying");
|
||||||
|
cardType.add(CardType.CREATURE);
|
||||||
|
color.setWhite(true);
|
||||||
|
subtype.add("Bird");
|
||||||
|
power = new MageInt(1);
|
||||||
|
toughness = new MageInt(1);
|
||||||
|
addAbility(FlyingAbility.getInstance());
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue