mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 21:42:07 -08:00
[KHM] Implemented Waking the Trolls
This commit is contained in:
parent
7ef79d3138
commit
4b2b36cf7d
3 changed files with 139 additions and 0 deletions
|
|
@ -0,0 +1,31 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.TrampleAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class TrollWarriorToken extends TokenImpl {
|
||||
|
||||
public TrollWarriorToken() {
|
||||
super("Troll Warrior", "4/4 green Troll Warrior creature token with trample");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setGreen(true);
|
||||
subtype.add(SubType.TROLL);
|
||||
subtype.add(SubType.WARRIOR);
|
||||
power = new MageInt(4);
|
||||
toughness = new MageInt(4);
|
||||
addAbility(TrampleAbility.getInstance());
|
||||
}
|
||||
|
||||
private TrollWarriorToken(final TrollWarriorToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public TrollWarriorToken copy() {
|
||||
return new TrollWarriorToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue