[CON] Remove a duplicate token

This commit is contained in:
Alex W. Jackson 2022-03-07 14:59:01 -05:00
parent 813e1816ea
commit baece6e241
4 changed files with 9 additions and 41 deletions

View file

@ -21,7 +21,7 @@ public final class ElementalTokenWithHaste extends TokenImpl {
toughness = new MageInt(1);
this.addAbility(HasteAbility.getInstance());
availableImageSetCodes = Arrays.asList("C20", "PMEI", "OGW", "SOK", "MRD");
availableImageSetCodes = Arrays.asList("C20", "PMEI", "OGW", "SOK", "MRD", "CON");
}
public ElementalTokenWithHaste(final ElementalTokenWithHaste token) {

View file

@ -1,30 +0,0 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.HasteAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author spjspj
*/
public final class RakkaMarElementalToken extends TokenImpl {
public RakkaMarElementalToken() {
super("Elemental", "3/1 red Elemental creature token with haste");
cardType.add(CardType.CREATURE);
color.setRed(true);
subtype.add(SubType.ELEMENTAL);
power = new MageInt(3);
toughness = new MageInt(1);
addAbility(HasteAbility.getInstance());
}
public RakkaMarElementalToken(final RakkaMarElementalToken token) {
super(token);
}
public RakkaMarElementalToken copy() {
return new RakkaMarElementalToken(this);
}
}