[BRO] Implement Awaken the Woods

This commit is contained in:
Evan Kranzler 2022-11-03 09:08:41 -04:00
parent 894d012f94
commit eba3f8dbc0
3 changed files with 66 additions and 0 deletions

View file

@ -0,0 +1,33 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.Arrays;
/**
* @author TheElk801
*/
public final class ForestDryadToken extends TokenImpl {
public ForestDryadToken() {
super("Forest Dryad Token", "1/1 green Forest Dryad land creature token");
cardType.add(CardType.LAND);
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.FOREST, SubType.DRYAD);
power = new MageInt(1);
toughness = new MageInt(1);
availableImageSetCodes = Arrays.asList("BRO");
}
public ForestDryadToken(final ForestDryadToken token) {
super(token);
}
public ForestDryadToken copy() {
return new ForestDryadToken(this);
}
}