foul-magics/Mage/src/main/java/mage/game/permanent/token/SplinterToken.java
L_J d0fbe6d35c Implemented Alliances cards (#5470)
* Implemented Alliances cards (#84)

* Fixed Storm Elemental

* Fixed Sworn Defender
2018-12-27 22:53:10 -06:00

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);
}
}