[SPM] update News Helicopter and Spider-Girl to use HumanCitizenToken

This commit is contained in:
jmlundeen 2025-09-07 19:36:25 -05:00
parent 5f22d4e5cd
commit c7a79197e5
2 changed files with 4 additions and 4 deletions

View file

@ -8,7 +8,7 @@ import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.game.permanent.token.CitizenGreenWhiteToken;
import mage.game.permanent.token.HumanCitizenToken;
import java.util.UUID;
@ -28,7 +28,7 @@ public final class NewsHelicopter extends CardImpl {
this.addAbility(FlyingAbility.getInstance());
// When this creature enters, create a 1/1 green and white Human Citizen creature token.
this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new CitizenGreenWhiteToken())));
this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new HumanCitizenToken())));
}
private NewsHelicopter(final NewsHelicopter card) {

View file

@ -14,7 +14,7 @@ import mage.constants.CardType;
import mage.constants.Duration;
import mage.constants.SubType;
import mage.constants.SuperType;
import mage.game.permanent.token.CitizenGreenWhiteToken;
import mage.game.permanent.token.HumanCitizenToken;
import java.util.UUID;
@ -40,7 +40,7 @@ public final class SpiderGirlLegacyHero extends CardImpl {
)));
// When Spider-Girl leaves the battlefield, create a 1/1 green and white Human Citizen creature token.
this.addAbility(new LeavesBattlefieldTriggeredAbility(new CreateTokenEffect(new CitizenGreenWhiteToken())));
this.addAbility(new LeavesBattlefieldTriggeredAbility(new CreateTokenEffect(new HumanCitizenToken())));
}
private SpiderGirlLegacyHero(final SpiderGirlLegacyHero card) {