mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
Rename AnotherSpiritToken to Spirit33Token to be less ambiguous.
This commit is contained in:
parent
4941e2f193
commit
15032a2a3c
3 changed files with 8 additions and 8 deletions
|
|
@ -12,7 +12,7 @@ import mage.constants.CardType;
|
|||
import mage.constants.SubType;
|
||||
import mage.constants.SuperType;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.game.permanent.token.AnotherSpiritToken;
|
||||
import mage.game.permanent.token.Spirit33Token;
|
||||
|
||||
/**
|
||||
* @author Loki
|
||||
|
|
@ -29,7 +29,7 @@ public final class OyobiWhoSplitTheHeavens extends CardImpl {
|
|||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
// Whenever you cast a Spirit or Arcane spell, create a 3/3 white Spirit creature token with flying.
|
||||
this.addAbility(new SpellCastControllerTriggeredAbility(new CreateTokenEffect(new AnotherSpiritToken()), StaticFilters.FILTER_SPELL_SPIRIT_OR_ARCANE, false));
|
||||
this.addAbility(new SpellCastControllerTriggeredAbility(new CreateTokenEffect(new Spirit33Token()), StaticFilters.FILTER_SPELL_SPIRIT_OR_ARCANE, false));
|
||||
}
|
||||
|
||||
private OyobiWhoSplitTheHeavens(final OyobiWhoSplitTheHeavens card) {
|
||||
|
|
|
|||
|
|
@ -8,9 +8,9 @@ import mage.constants.SubType;
|
|||
/**
|
||||
* @author spjspj
|
||||
*/
|
||||
public final class AnotherSpiritToken extends TokenImpl {
|
||||
public final class Spirit33Token extends TokenImpl {
|
||||
|
||||
public AnotherSpiritToken() {
|
||||
public Spirit33Token() {
|
||||
super("Spirit Token", "3/3 white Spirit creature token with flying");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
|
|
@ -21,11 +21,11 @@ public final class AnotherSpiritToken extends TokenImpl {
|
|||
this.addAbility(FlyingAbility.getInstance());
|
||||
}
|
||||
|
||||
private AnotherSpiritToken(final AnotherSpiritToken token) {
|
||||
private Spirit33Token(final Spirit33Token token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public AnotherSpiritToken copy() {
|
||||
return new AnotherSpiritToken(this);
|
||||
public Spirit33Token copy() {
|
||||
return new Spirit33Token(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -1439,7 +1439,7 @@
|
|||
|Generate|TOK:VOC|Bat|||BatToken|
|
||||
|Generate|TOK:VOC|Clue|||ClueArtifactToken|
|
||||
|Generate|TOK:VOC|Spirit|1||SpiritToken|
|
||||
|Generate|TOK:VOC|Spirit|2||AnotherSpiritToken|
|
||||
|Generate|TOK:VOC|Spirit|2||Spirit33Token|
|
||||
|Generate|TOK:VOC|Thopter|||ThopterColorlessToken|
|
||||
|
||||
# VOW
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue