mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 20:32:06 -08:00
[DRC] Implement On Wings of Gold.
This commit is contained in:
parent
86df1d198b
commit
9172a9eba8
3 changed files with 90 additions and 0 deletions
|
|
@ -0,0 +1,29 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author BetaSteward_at_googlemail.com
|
||||
*/
|
||||
public final class ZombieWhiteToken extends TokenImpl {
|
||||
|
||||
public ZombieWhiteToken() {
|
||||
super("Zombie Token", "1/1 white Zombie creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
subtype.add(SubType.ZOMBIE);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
}
|
||||
|
||||
private ZombieWhiteToken(final ZombieWhiteToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ZombieWhiteToken copy() {
|
||||
return new ZombieWhiteToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue