mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
[CON] Remove a duplicate token
This commit is contained in:
parent
813e1816ea
commit
baece6e241
4 changed files with 9 additions and 41 deletions
|
|
@ -21,7 +21,7 @@ public final class ElementalTokenWithHaste extends TokenImpl {
|
|||
toughness = new MageInt(1);
|
||||
this.addAbility(HasteAbility.getInstance());
|
||||
|
||||
availableImageSetCodes = Arrays.asList("C20", "PMEI", "OGW", "SOK", "MRD");
|
||||
availableImageSetCodes = Arrays.asList("C20", "PMEI", "OGW", "SOK", "MRD", "CON");
|
||||
}
|
||||
|
||||
public ElementalTokenWithHaste(final ElementalTokenWithHaste token) {
|
||||
|
|
|
|||
|
|
@ -1,30 +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 RakkaMarElementalToken extends TokenImpl {
|
||||
|
||||
public RakkaMarElementalToken() {
|
||||
super("Elemental", "3/1 red Elemental creature token with haste");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setRed(true);
|
||||
subtype.add(SubType.ELEMENTAL);
|
||||
power = new MageInt(3);
|
||||
toughness = new MageInt(1);
|
||||
addAbility(HasteAbility.getInstance());
|
||||
}
|
||||
|
||||
public RakkaMarElementalToken(final RakkaMarElementalToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public RakkaMarElementalToken copy() {
|
||||
return new RakkaMarElementalToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue