mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
Implemented Atla Palani, Nest Tender
This commit is contained in:
parent
c75a689efd
commit
7bf03781aa
3 changed files with 139 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue