mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
Implemented Birthing Boughs
This commit is contained in:
parent
86e6134be0
commit
9def59486e
3 changed files with 69 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue