mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
RedElementalWithTrampleAndHaste -> RedElementalTrampleHasteToken
This commit is contained in:
parent
9fed66761e
commit
cb34755c0c
4 changed files with 10 additions and 10 deletions
|
|
@ -17,7 +17,7 @@ import mage.filter.predicate.Predicate;
|
|||
import mage.filter.predicate.Predicates;
|
||||
import mage.filter.predicate.mageobject.CardIdPredicate;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.token.RedElementalWithTrampleAndHaste;
|
||||
import mage.game.permanent.token.RedElementalTrampleHasteToken;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
|
@ -68,7 +68,7 @@ class ElementalAppealEffect extends OneShotEffect {
|
|||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
CreateTokenEffect effect = new CreateTokenEffect(new RedElementalWithTrampleAndHaste());
|
||||
CreateTokenEffect effect = new CreateTokenEffect(new RedElementalTrampleHasteToken());
|
||||
if (effect.apply(game, source)) {
|
||||
effect.exileTokensCreatedAtNextEndStep(game, source);
|
||||
if (KickedCondition.ONCE.apply(game, source)) {
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ import mage.constants.CardType;
|
|||
import mage.constants.Outcome;
|
||||
import mage.counters.CounterType;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.token.RedElementalWithTrampleAndHaste;
|
||||
import mage.game.permanent.token.RedElementalTrampleHasteToken;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
|
@ -68,7 +68,7 @@ class ZektarShrineExpeditionEffect extends OneShotEffect {
|
|||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
CreateTokenEffect effect = new CreateTokenEffect(new RedElementalWithTrampleAndHaste());
|
||||
CreateTokenEffect effect = new CreateTokenEffect(new RedElementalTrampleHasteToken());
|
||||
if (effect.apply(game, source)) {
|
||||
effect.exileTokensCreatedAtNextEndStep(game, source);
|
||||
return true;
|
||||
|
|
|
|||
|
|
@ -10,9 +10,9 @@ import mage.util.RandomUtil;
|
|||
/**
|
||||
* @author spjspj
|
||||
*/
|
||||
public final class RedElementalWithTrampleAndHaste extends TokenImpl {
|
||||
public final class RedElementalTrampleHasteToken extends TokenImpl {
|
||||
|
||||
public RedElementalWithTrampleAndHaste() {
|
||||
public RedElementalTrampleHasteToken() {
|
||||
super("Elemental Token", "7/1 red Elemental creature token with trample and haste");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setRed(true);
|
||||
|
|
@ -23,11 +23,11 @@ public final class RedElementalWithTrampleAndHaste extends TokenImpl {
|
|||
addAbility(HasteAbility.getInstance());
|
||||
}
|
||||
|
||||
protected RedElementalWithTrampleAndHaste(final RedElementalWithTrampleAndHaste token) {
|
||||
protected RedElementalTrampleHasteToken(final RedElementalTrampleHasteToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public RedElementalWithTrampleAndHaste copy() {
|
||||
return new RedElementalWithTrampleAndHaste(this);
|
||||
public RedElementalTrampleHasteToken copy() {
|
||||
return new RedElementalTrampleHasteToken(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -1034,7 +1034,7 @@
|
|||
|TOK:ZEN|Angel||AngelToken|
|
||||
|TOK:ZEN|Beast||Beast44Token|
|
||||
|TOK:ZEN|Bird||BirdToken|
|
||||
|TOK:ZEN|Elemental||RedElementalWithTrampleAndHaste|
|
||||
|TOK:ZEN|Elemental||RedElementalTrampleHasteToken|
|
||||
|TOK:ZEN|Illusion||IllusionToken|
|
||||
|TOK:ZEN|Kor Soldier||KorSoldierToken|
|
||||
|TOK:ZEN|Merfolk||MerfolkToken|
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue