mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
[BRO] Fix Forest Dryad tokens not tapping for mana
This commit is contained in:
parent
6f1d9fce9c
commit
4264d7fa11
1 changed files with 4 additions and 0 deletions
|
@ -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");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue