mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
WeirdToken2 -> WeirdXXToken
This commit is contained in:
parent
2e52038811
commit
abe36d1692
3 changed files with 9 additions and 9 deletions
|
|
@ -10,7 +10,7 @@ import mage.constants.Outcome;
|
|||
import mage.constants.Zone;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.token.WeirdToken2;
|
||||
import mage.game.permanent.token.WeirdXXToken;
|
||||
import mage.players.Player;
|
||||
import mage.target.TargetCard;
|
||||
import mage.target.common.TargetCardInYourGraveyard;
|
||||
|
|
@ -65,7 +65,7 @@ class ExperimentalOverloadEffect extends OneShotEffect {
|
|||
return false;
|
||||
}
|
||||
int spellCount = player.getGraveyard().count(StaticFilters.FILTER_CARD_INSTANT_OR_SORCERY, game);
|
||||
new WeirdToken2(spellCount).putOntoBattlefield(1, game, source, source.getControllerId());
|
||||
new WeirdXXToken(spellCount).putOntoBattlefield(1, game, source, source.getControllerId());
|
||||
if (spellCount < 1) {
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,13 +7,13 @@ import mage.constants.SubType;
|
|||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class WeirdToken2 extends TokenImpl {
|
||||
public final class WeirdXXToken extends TokenImpl {
|
||||
|
||||
public WeirdToken2() {
|
||||
public WeirdXXToken() {
|
||||
this(0);
|
||||
}
|
||||
|
||||
public WeirdToken2(int xValue) {
|
||||
public WeirdXXToken(int xValue) {
|
||||
super("Weird Token", "X/X blue and red Weird creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlue(true);
|
||||
|
|
@ -23,11 +23,11 @@ public final class WeirdToken2 extends TokenImpl {
|
|||
toughness = new MageInt(xValue);
|
||||
}
|
||||
|
||||
private WeirdToken2(final WeirdToken2 token) {
|
||||
private WeirdXXToken(final WeirdXXToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public WeirdToken2 copy() {
|
||||
return new WeirdToken2(this);
|
||||
public WeirdXXToken copy() {
|
||||
return new WeirdXXToken(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -1223,7 +1223,7 @@
|
|||
|TOK:M21|Saproling||SaprolingToken|
|
||||
|TOK:M21|Soldier||SoldierToken|
|
||||
|TOK:M21|Treasure||TreasureToken|
|
||||
|TOK:M21|Weird||WeirdToken2|
|
||||
|TOK:M21|Weird||WeirdXXToken|
|
||||
|TOK:M21|Zombie||ZombieToken|
|
||||
|
||||
# ZNR
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue