forked from External/mage
35 lines
927 B
Java
35 lines
927 B
Java
|
|
package mage.game.permanent.token;
|
|
|
|
import mage.abilities.costs.mana.ManaCostsImpl;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.CumulativeUpkeepAbility;
|
|
import mage.abilities.keyword.FlyingAbility;
|
|
|
|
/**
|
|
*
|
|
* @author L_J
|
|
*/
|
|
public final class SplinterToken extends TokenImpl {
|
|
|
|
public SplinterToken() {
|
|
super("Splinter", "1/1 green Splinter creature token");
|
|
cardType.add(CardType.CREATURE);
|
|
subtype.add(SubType.SPLINTER);
|
|
color.setGreen(true);
|
|
power = new MageInt(1);
|
|
toughness = new MageInt(1);
|
|
this.addAbility(FlyingAbility.getInstance());
|
|
this.addAbility(new CumulativeUpkeepAbility(new ManaCostsImpl("{G}")));
|
|
}
|
|
|
|
public SplinterToken(final SplinterToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public SplinterToken copy() {
|
|
return new SplinterToken(this);
|
|
}
|
|
}
|