forked from External/mage
38 lines
964 B
Java
38 lines
964 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.MageInt;
|
|
import mage.abilities.mana.GreenManaAbility;
|
|
|
|
import java.util.Arrays;
|
|
|
|
/**
|
|
*
|
|
* @author spjspj
|
|
*/
|
|
public final class LlanowarElvesToken extends TokenImpl {
|
|
|
|
public LlanowarElvesToken() {
|
|
super("Llanowar Elves", "1/1 green Elf Druid creature token named Llanowar Elves. It has \"{T}: Add {G}.\"");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setGreen(true);
|
|
subtype.add(SubType.ELF);
|
|
subtype.add(SubType.DRUID);
|
|
power = new MageInt(1);
|
|
toughness = new MageInt(1);
|
|
|
|
// {T}: Add {G}.
|
|
this.addAbility(new GreenManaAbility());
|
|
|
|
availableImageSetCodes = Arrays.asList("TSR");
|
|
}
|
|
|
|
public LlanowarElvesToken(final LlanowarElvesToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public LlanowarElvesToken copy() {
|
|
return new LlanowarElvesToken(this);
|
|
}
|
|
}
|