mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
[C21] Implemented Trudge Garden
This commit is contained in:
parent
cb4dd64037
commit
167d2579ac
3 changed files with 68 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 FungusBeastToken extends TokenImpl {
|
||||
|
||||
public FungusBeastToken() {
|
||||
super("Fungus Beast", "4/4 green Fungus Beast creature token with trample");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setGreen(true);
|
||||
subtype.add(SubType.FUNGUS);
|
||||
subtype.add(SubType.BEAST);
|
||||
power = new MageInt(4);
|
||||
toughness = new MageInt(4);
|
||||
addAbility(TrampleAbility.getInstance());
|
||||
}
|
||||
|
||||
private FungusBeastToken(final FungusBeastToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public FungusBeastToken copy() {
|
||||
return new FungusBeastToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue