[LCI] Implement Palani's Hatcher

This commit is contained in:
Susucre 2023-10-27 18:15:02 +02:00
parent c6441b31a5
commit c1e6748470
3 changed files with 105 additions and 0 deletions

View file

@ -0,0 +1,29 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author Susucr
*/
public final class DinosaurEggToken extends TokenImpl {
public DinosaurEggToken() {
super("Dinosaur Egg Token", "0/1 green Dinosaur Egg creature token");
cardType.add(CardType.CREATURE);
subtype.add(SubType.DINOSAUR);
subtype.add(SubType.EGG);
color.setGreen(true);
power = new MageInt(0);
toughness = new MageInt(1);
}
private DinosaurEggToken(final DinosaurEggToken token) {
super(token);
}
public DinosaurEggToken copy() {
return new DinosaurEggToken(this);
}
}