[NEO] Implemented Sokenzan Smelter

This commit is contained in:
Evan Kranzler 2022-01-31 20:32:53 -05:00
parent 8e029d5261
commit 577da37f6e
3 changed files with 86 additions and 0 deletions

View file

@ -0,0 +1,31 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.HasteAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class ConstructRedToken extends TokenImpl {
public ConstructRedToken() {
super("Construct token", "3/1 red Construct artifact creature token with haste");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add(SubType.CONSTRUCT);
color.setRed(true);
power = new MageInt(3);
toughness = new MageInt(1);
addAbility(HasteAbility.getInstance());
}
public ConstructRedToken(final ConstructRedToken token) {
super(token);
}
public ConstructRedToken copy() {
return new ConstructRedToken(this);
}
}