[DRC] Implement On Wings of Gold.

This commit is contained in:
Grath 2025-01-24 14:23:10 -05:00
parent 86df1d198b
commit 9172a9eba8
3 changed files with 90 additions and 0 deletions

View file

@ -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);
}
}