forked from External/mage
[LCI] Implement Huatli, Poet of Unity (#11331)
This commit is contained in:
parent
10867fa923
commit
1907f55583
4 changed files with 189 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue