foul-magics/Mage/src/main/java/mage/game/permanent/token/LlanowarElvesToken.java
2021-03-09 20:01:32 -05:00

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);
}
}