mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
* Sporemound - Fixed tooltip text.
This commit is contained in:
parent
258245c4a2
commit
bb863d2cc8
1 changed files with 2 additions and 2 deletions
|
@ -35,7 +35,7 @@ import mage.abilities.effects.common.CreateTokenEffect;
|
|||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.filter.common.FilterControlledLandPermanent;
|
||||
import mage.filter.common.FilterLandPermanent;
|
||||
import mage.game.permanent.token.SaprolingToken;
|
||||
|
||||
/**
|
||||
|
@ -55,7 +55,7 @@ public class Sporemound extends CardImpl<Sporemound> {
|
|||
|
||||
// Whenever a land enters the battlefield under your control, put a 1/1 green Saproling creature token onto the battlefield.
|
||||
Effect effect = new CreateTokenEffect(new SaprolingToken());
|
||||
this.addAbility(new EntersBattlefieldControlledTriggeredAbility(effect, new FilterControlledLandPermanent("a land you control")));
|
||||
this.addAbility(new EntersBattlefieldControlledTriggeredAbility(effect, new FilterLandPermanent("a land")));
|
||||
}
|
||||
|
||||
public Sporemound(final Sporemound card) {
|
||||
|
|
Loading…
Reference in a new issue