[BRO] Fix Forest Dryad tokens not tapping for mana

This commit is contained in:
PurpleCrowbar 2022-11-13 00:35:14 +00:00
parent 6f1d9fce9c
commit 4264d7fa11

View file

@ -1,6 +1,7 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.mana.GreenManaAbility;
import mage.constants.CardType;
import mage.constants.SubType;
@ -20,6 +21,9 @@ public final class ForestDryadToken extends TokenImpl {
power = new MageInt(1);
toughness = new MageInt(1);
// <i>(This creature is affected by summoning sickness, and it has {T}: Add {G}.)</i>
this.addAbility(new GreenManaAbility());
availableImageSetCodes = Arrays.asList("BRO");
}