Removed duplicate haste elemental token class

This commit is contained in:
PurpleCrowbar 2022-06-08 00:42:41 +01:00
parent b853633190
commit 8407e23d3f
5 changed files with 14 additions and 43 deletions

View file

@ -6,13 +6,15 @@ import mage.abilities.keyword.HasteAbility;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.Arrays;
/**
*
* @author spjspj
*/
public final class ElementalMasteryElementalToken extends TokenImpl {
public final class Elemental11HasteToken extends TokenImpl {
public ElementalMasteryElementalToken() {
public Elemental11HasteToken() {
super("Elemental Token", "1/1 red Elemental creature token with haste");
cardType.add(CardType.CREATURE);
subtype.add(SubType.ELEMENTAL);
@ -20,6 +22,8 @@ public final class ElementalMasteryElementalToken extends TokenImpl {
power = new MageInt(1);
toughness = new MageInt(1);
addAbility(HasteAbility.getInstance());
availableImageSetCodes = Arrays.asList("SHM");
}
@Override
@ -31,11 +35,11 @@ public final class ElementalMasteryElementalToken extends TokenImpl {
}
}
public ElementalMasteryElementalToken(final ElementalMasteryElementalToken token) {
public Elemental11HasteToken(final Elemental11HasteToken token) {
super(token);
}
public ElementalMasteryElementalToken copy() {
return new ElementalMasteryElementalToken(this);
public Elemental11HasteToken copy() {
return new Elemental11HasteToken(this);
}
}

View file

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