[LCI] Implement Huatli, Poet of Unity (#11331)

This commit is contained in:
Susucre 2023-10-22 14:34:12 +02:00 committed by GitHub
parent 10867fa923
commit 1907f55583
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 189 additions and 0 deletions

View file

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