Implemented Birthing Boughs

This commit is contained in:
Evan Kranzler 2019-05-31 21:31:36 -04:00
parent 86e6134be0
commit 9def59486e
3 changed files with 69 additions and 0 deletions

View file

@ -0,0 +1,29 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.ChangelingAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class ShapeshifterToken extends TokenImpl {
public ShapeshifterToken() {
super("Shapeshifter", "2/2 colorless Shapeshifter creature token with changeling");
cardType.add(CardType.CREATURE);
subtype.add(SubType.SHAPESHIFTER);
power = new MageInt(2);
toughness = new MageInt(2);
addAbility(ChangelingAbility.getInstance());
}
public ShapeshifterToken(final ShapeshifterToken token) {
super(token);
}
public ShapeshifterToken copy() {
return new ShapeshifterToken(this);
}
}