[KHM] Implemented Maskwood Nexus

This commit is contained in:
Evan Kranzler 2021-01-10 21:33:14 -05:00
parent e7a557f287
commit 065dc3da0e
3 changed files with 179 additions and 0 deletions

View file

@ -0,0 +1,31 @@
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 ShapeshifterBlueToken extends TokenImpl {
public ShapeshifterBlueToken() {
super("Shapeshifter", "2/2 blue Shapeshifter creature token with changeling");
cardType.add(CardType.CREATURE);
subtype.add(SubType.SHAPESHIFTER);
color.setBlue(true);
power = new MageInt(2);
toughness = new MageInt(2);
setIsAllCreatureTypes(true);
addAbility(ChangelingAbility.getInstance());
}
private ShapeshifterBlueToken(final ShapeshifterBlueToken token) {
super(token);
}
public ShapeshifterBlueToken copy() {
return new ShapeshifterBlueToken(this);
}
}