Removed duplicate hellion token class

This commit is contained in:
PurpleCrowbar 2022-06-07 01:49:10 +01:00
parent 4dde9592c8
commit 16bb0ebfc1
4 changed files with 14 additions and 35 deletions

View file

@ -1,31 +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 HellionHasteToken extends TokenImpl {
public HellionHasteToken() {
super("Hellion Token", "4/4 red Hellion creature token with haste");
cardType.add(CardType.CREATURE);
color.setRed(true);
subtype.add(SubType.HELLION);
power = new MageInt(4);
toughness = new MageInt(4);
addAbility(HasteAbility.getInstance());
}
public HellionHasteToken(final HellionHasteToken token) {
super(token);
}
public HellionHasteToken copy() {
return new HellionHasteToken(this);
}
}

View file

@ -2,6 +2,7 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.HasteAbility;
import mage.constants.CardType;
import mage.constants.SubType;
@ -13,6 +14,15 @@ import java.util.Arrays;
*/
public final class HellionToken extends TokenImpl {
public HellionToken(boolean withHaste) {
this();
if (withHaste) {
addAbility(HasteAbility.getInstance());
this.description = "4/4 red Hellion creature token with haste";
}
}
public HellionToken() {
super("Hellion Token", "4/4 red Hellion creature token");
cardType.add(CardType.CREATURE);
@ -21,7 +31,7 @@ public final class HellionToken extends TokenImpl {
power = new MageInt(4);
toughness = new MageInt(4);
availableImageSetCodes = Arrays.asList("ROE", "DDP", "PCA");
availableImageSetCodes = Arrays.asList("ROE", "DDP", "M13", "PCA");
}
public HellionToken(final HellionToken token) {