mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
[M14] Remove a duplicate token
This commit is contained in:
parent
b688828f22
commit
2b7a67d6e6
2 changed files with 2 additions and 35 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue