[M14] Remove a duplicate token

This commit is contained in:
Alex W. Jackson 2022-01-30 19:28:48 -05:00
parent b688828f22
commit 2b7a67d6e6
2 changed files with 2 additions and 35 deletions

View file

@ -1,33 +0,0 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.util.RandomUtil;
/**
*
* @author spjspj
*/
public final class MoltenBirthElementalToken extends TokenImpl {
public MoltenBirthElementalToken() {
super("Elemental", "1/1 red Elemental creature");
this.setOriginalExpansionSetCode("M14");
this.setTokenType(RandomUtil.nextInt(2) + 1);
cardType.add(CardType.CREATURE);
color.setRed(true);
subtype.add(SubType.ELEMENTAL);
power = new MageInt(1);
toughness = new MageInt(1);
}
public MoltenBirthElementalToken(final MoltenBirthElementalToken token) {
super(token);
}
public MoltenBirthElementalToken copy() {
return new MoltenBirthElementalToken(this);
}
}