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

35 lines
904 B
Java

package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
import mage.abilities.mana.GreenManaAbility;
/**
*
* @author spjspj
*/
public final class LlanowarElvesToken extends TokenImpl {
public LlanowarElvesToken() {
super("Llanowar Elves", "1/1 green Elf Druid creature token named Llanowar Elves with \"{T}: Add {G}.\"");
this.setOriginalExpansionSetCode("FUT");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.ELF);
subtype.add(SubType.DRUID);
power = new MageInt(1);
toughness = new MageInt(1);
this.addAbility(new GreenManaAbility());
}
public LlanowarElvesToken(final LlanowarElvesToken token) {
super(token);
}
public LlanowarElvesToken copy() {
return new LlanowarElvesToken(this);
}
}