mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 13:32:06 -08:00
[AFR] Implemented Drizzt Do'Urden
This commit is contained in:
parent
c2c3f6497b
commit
546173ee45
3 changed files with 141 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue