mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
[KHM] Implemented Maskwood Nexus
This commit is contained in:
parent
e7a557f287
commit
065dc3da0e
3 changed files with 179 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue