foul-magics/Mage/src/main/java/mage/game/permanent/token/VoiceOfTheWoodsElementalToken.java
2018-06-02 17:59:49 +02:00

35 lines
907 B
Java

package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
import mage.abilities.keyword.TrampleAbility;
/**
*
* @author spjspj
*/
public final class VoiceOfTheWoodsElementalToken extends TokenImpl {
public VoiceOfTheWoodsElementalToken() {
super("Elemental", "7/7 green Elemental creature token with trample");
this.setOriginalExpansionSetCode("EVG");
cardType.add(CardType.CREATURE);
subtype.add(SubType.ELEMENTAL);
color.setGreen(true);
power = new MageInt(7);
toughness = new MageInt(7);
addAbility(TrampleAbility.getInstance());
}
public VoiceOfTheWoodsElementalToken(final VoiceOfTheWoodsElementalToken token) {
super(token);
}
public VoiceOfTheWoodsElementalToken copy() {
return new VoiceOfTheWoodsElementalToken(this);
}
}