forked from External/mage
[SPM] update News Helicopter and Spider-Girl to use HumanCitizenToken
This commit is contained in:
parent
5f22d4e5cd
commit
c7a79197e5
2 changed files with 4 additions and 4 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue