mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
[RIX] Remove a duplicate token
This commit is contained in:
parent
87a999ca0e
commit
813e1816ea
3 changed files with 7 additions and 34 deletions
|
|
@ -20,7 +20,7 @@ public final class RedElementalToken extends TokenImpl {
|
|||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
|
||||
availableImageSetCodes = Arrays.asList("C13", "EMA", "M14", "SHM", "MH1", "M20");
|
||||
availableImageSetCodes = Arrays.asList("C13", "EMA", "M14", "SHM", "MH1", "M20", "RIX");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -35,6 +35,10 @@ public final class RedElementalToken extends TokenImpl {
|
|||
setTokenType(RandomUtil.nextInt(2) + 1);
|
||||
}
|
||||
|
||||
if (getOriginalExpansionSetCode() != null && getOriginalExpansionSetCode().equals("RIX")) {
|
||||
setTokenType(2);
|
||||
}
|
||||
|
||||
if (getOriginalExpansionSetCode() != null && getOriginalExpansionSetCode().equals("SHM")) {
|
||||
setTokenType(2);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,31 +0,0 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author LevelX2
|
||||
*/
|
||||
public final class TilonallisSummonerElementalToken extends TokenImpl {
|
||||
|
||||
public TilonallisSummonerElementalToken() {
|
||||
super("Elemental", "1/1 red Elemental creature tokens");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.ELEMENTAL);
|
||||
color.setRed(true);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
|
||||
setTokenType(2);
|
||||
}
|
||||
|
||||
public TilonallisSummonerElementalToken(final TilonallisSummonerElementalToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public TilonallisSummonerElementalToken copy() {
|
||||
return new TilonallisSummonerElementalToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue