[AFR] Implemented Drizzt Do'Urden

This commit is contained in:
Evan Kranzler 2021-06-17 08:17:26 -04:00
parent c2c3f6497b
commit 546173ee45
3 changed files with 141 additions and 0 deletions

View file

@ -0,0 +1,32 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.TrampleAbility;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.constants.SuperType;
/**
* @author TheElk801
*/
public final class GuenhwyvarToken extends TokenImpl {
public GuenhwyvarToken() {
super("Guenhwyvar", "Guenhwyvar, a legendary 4/1 green Cat creature token with trample");
supertype.add(SuperType.LEGENDARY);
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.CAT);
power = new MageInt(4);
toughness = new MageInt(1);
addAbility(TrampleAbility.getInstance());
}
private GuenhwyvarToken(final GuenhwyvarToken token) {
super(token);
}
public GuenhwyvarToken copy() {
return new GuenhwyvarToken(this);
}
}