mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 13:19:18 -08:00
[TDM] Implement Temur Monument
This commit is contained in:
parent
2e3e39e8d5
commit
d9ea84d747
3 changed files with 93 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 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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue