mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
[NEO] Implemented Sokenzan Smelter
This commit is contained in:
parent
8e029d5261
commit
577da37f6e
3 changed files with 86 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue