Implemented Atla Palani, Nest Tender

This commit is contained in:
Evan Kranzler 2019-08-09 21:41:46 -04:00
parent c75a689efd
commit 7bf03781aa
3 changed files with 139 additions and 0 deletions

View file

@ -0,0 +1,30 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.DefenderAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class AtlaPalaniToken extends TokenImpl {
public AtlaPalaniToken() {
super("Egg", "0/1 green Egg creature token with defender");
cardType.add(CardType.CREATURE);
subtype.add(SubType.EGG);
color.setGreen(true);
power = new MageInt(0);
toughness = new MageInt(1);
addAbility(DefenderAbility.getInstance());
}
private AtlaPalaniToken(final AtlaPalaniToken token) {
super(token);
}
public AtlaPalaniToken copy() {
return new AtlaPalaniToken(this);
}
}