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,8 +78,10 @@ public class ScionOfVituGhazi extends CardImpl<ScionOfVituGhazi> {
|
|||
return new ScionOfVituGhazi(this);
|
||||
}
|
||||
|
||||
private class BirdToken extends Token {
|
||||
}
|
||||
|
||||
|
||||
class BirdToken extends Token {
|
||||
public BirdToken() {
|
||||
super("Bird", "1/1 white Bird creature token with flying");
|
||||
cardType.add(CardType.CREATURE);
|
||||
|
@ -89,5 +91,4 @@ public class ScionOfVituGhazi extends CardImpl<ScionOfVituGhazi> {
|
|||
toughness = new MageInt(1);
|
||||
addAbility(FlyingAbility.getInstance());
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue