[TDM] Implement Temur Monument

This commit is contained in:
theelk801 2025-03-23 20:23:01 -04:00
parent 2e3e39e8d5
commit d9ea84d747
3 changed files with 93 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 TheElk801
*/
public final class Elephant55Token extends TokenImpl {
public Elephant55Token() {
super("Elephant Token", "5/5 green Elephant creature token");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.ELEPHANT);
power = new MageInt(5);
toughness = new MageInt(5);
}
private Elephant55Token(final Elephant55Token token) {
super(token);
}
public Elephant55Token copy() {
return new Elephant55Token(this);
}
}