Removed duplicate minotaur token class. Closes #8947

This commit is contained in:
PurpleCrowbar 2022-06-07 01:58:39 +01:00
parent 16bb0ebfc1
commit e418ab04be
4 changed files with 17 additions and 37 deletions

View file

@ -1,34 +0,0 @@
package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
import mage.ObjectColor;
import mage.abilities.keyword.HasteAbility;
/**
*
* @author spjspj
*/
public final class FlurryOfHornsMinotaurToken extends TokenImpl {
public FlurryOfHornsMinotaurToken() {
super("Minotaur Token", "2/3 red Minotaur creature tokens with haste");
this.setOriginalExpansionSetCode("JOU");
cardType.add(CardType.CREATURE);
color.setColor(ObjectColor.RED);
subtype.add(SubType.MINOTAUR);
power = new MageInt(2);
toughness = new MageInt(3);
addAbility(HasteAbility.getInstance());
}
public FlurryOfHornsMinotaurToken(final FlurryOfHornsMinotaurToken token) {
super(token);
}
public FlurryOfHornsMinotaurToken copy() {
return new FlurryOfHornsMinotaurToken(this);
}
}

View file

@ -2,14 +2,26 @@ package mage.game.permanent.token;
import mage.MageInt;
import mage.ObjectColor;
import mage.abilities.keyword.HasteAbility;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.Arrays;
/**
* @author TheElk801
*/
public final class MinotaurToken extends TokenImpl {
public MinotaurToken(boolean withHaste) {
this();
if (withHaste) {
addAbility(HasteAbility.getInstance());
this.description = "2/3 red Minotaur creature tokens with haste";
}
}
public MinotaurToken() {
super("Minotaur Token", "2/3 red Minotaur creature token");
cardType.add(CardType.CREATURE);
@ -17,6 +29,8 @@ public final class MinotaurToken extends TokenImpl {
subtype.add(SubType.MINOTAUR);
power = new MageInt(2);
toughness = new MageInt(3);
availableImageSetCodes = Arrays.asList("JOU");
}
private MinotaurToken(final MinotaurToken token) {