mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 11:32:00 -08: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;
|
package mage.game.permanent.token;
|
||||||
|
|
||||||
import mage.MageInt;
|
import mage.MageInt;
|
||||||
|
import mage.abilities.mana.GreenManaAbility;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
|
|
||||||
|
|
@ -20,6 +21,9 @@ public final class ForestDryadToken extends TokenImpl {
|
||||||
power = new MageInt(1);
|
power = new MageInt(1);
|
||||||
toughness = 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");
|
availableImageSetCodes = Arrays.asList("BRO");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue