ZombieToken2 -> ZombieStarToken

This commit is contained in:
Muz Ali 2026-01-25 20:17:02 -06:00
parent ac0e513423
commit 0dfbd0b172
3 changed files with 10 additions and 10 deletions

View file

@ -18,7 +18,7 @@ import mage.constants.SubType;
import mage.constants.Zone;
import mage.filter.StaticFilters;
import mage.game.Game;
import mage.game.permanent.token.ZombieToken2;
import mage.game.permanent.token.ZombieStarToken;
import mage.players.Player;
import mage.target.common.TargetCardInYourGraveyard;
@ -85,7 +85,7 @@ class SoulSeparatorEffect extends OneShotEffect {
boolean result = false;
if (game.getState().getZone(creatureCard.getId()) == Zone.GRAVEYARD) {
result = controller.moveCardToExileWithInfo(creatureCard, null, "", source, game, Zone.GRAVEYARD, true);
ZombieToken2 token = new ZombieToken2(creatureCard.getPower().getValue(), creatureCard.getToughness().getValue());
ZombieStarToken token = new ZombieStarToken(creatureCard.getPower().getValue(), creatureCard.getToughness().getValue());
token.putOntoBattlefield(1, game, source, source.getControllerId());
}
return result;

View file

@ -7,13 +7,13 @@ import mage.constants.SubType;
/**
* @author escplan9 (Derek Monturo - dmontur1 at gmail dot com)
*/
public final class ZombieToken2 extends TokenImpl {
public final class ZombieStarToken extends TokenImpl {
public ZombieToken2() {
public ZombieStarToken() {
this(0, 0);
}
public ZombieToken2(int zPower, int zToughness) {
public ZombieStarToken(int zPower, int zToughness) {
super("Zombie Token", String.valueOf(zPower) + '/' + String.valueOf(zToughness) + " black Zombie creature token");
cardType.add(CardType.CREATURE);
color.setBlack(true);
@ -22,11 +22,11 @@ public final class ZombieToken2 extends TokenImpl {
toughness = new MageInt(zToughness);
}
protected ZombieToken2(final ZombieToken2 token) {
protected ZombieStarToken(final ZombieStarToken token) {
super(token);
}
public ZombieToken2 copy() {
return new ZombieToken2(this);
public ZombieStarToken copy() {
return new ZombieStarToken(this);
}
}

View file

@ -610,7 +610,7 @@
|TOK:EMN|Zombie|1|ZombieToken|
|TOK:EMN|Zombie|2|ZombieToken|
|TOK:EMN|Zombie|3|ZombieToken|
|TOK:EMN|Zombie|4|ZombieToken2|
|TOK:EMN|Zombie|4|ZombieStarToken|
#TOK:EMN - Human Soldier, Spirit, Devil, Insect and Wolf tokens from SOI set
#|Generate|TOK:EMN|Devil||DevilToken|
#|Generate|TOK:EMN|Human Soldier||HumanSoldierToken|
@ -2701,7 +2701,7 @@
|TOK:INR|Vampire|2|VampireToken|
|TOK:INR|Wolf|1|WolfDeathtouchToken|
|TOK:INR|Wolf|2|WolfToken|
|TOK:INR|Zombie|1|ZombieToken2|
|TOK:INR|Zombie|1|ZombieStarToken|
|TOK:INR|Zombie|2|ZombieToken|
|TOK:INR|Zombie|3|ZombieDecayedToken|