mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 11:32:00 -08:00
* Selkie Hedge-Mage - Fixed that the triggered abilities did not work.
This commit is contained in:
parent
14d79588e6
commit
57e69a0fcc
1 changed files with 9 additions and 10 deletions
|
|
@ -44,12 +44,11 @@ import mage.filter.common.FilterLandPermanent;
|
|||
import mage.filter.predicate.mageobject.SubtypePredicate;
|
||||
import mage.filter.predicate.permanent.TappedPredicate;
|
||||
import mage.target.TargetPermanent;
|
||||
import mage.target.common.TargetArtifactPermanent;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author jeffwadsworth
|
||||
|
||||
*
|
||||
*/
|
||||
public class SelkieHedgeMage extends CardImpl {
|
||||
|
||||
|
|
@ -58,13 +57,13 @@ public class SelkieHedgeMage extends CardImpl {
|
|||
private static final FilterCreaturePermanent filter3 = new FilterCreaturePermanent("tapped creature");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Forests"));
|
||||
filter2.add(new SubtypePredicate("Islands"));
|
||||
filter.add(new SubtypePredicate("Forest"));
|
||||
filter2.add(new SubtypePredicate("Island"));
|
||||
filter3.add(new TappedPredicate());
|
||||
}
|
||||
|
||||
private String rule1 = "When {this} enters the battlefield, if you control two or more Forests, you may gain 3 life.";
|
||||
private String rule2 = "When {this} enters the battlefield, if you control two or more Islands, you may return target tapped creature to its owner's hand.";
|
||||
private final String rule1 = "When {this} enters the battlefield, if you control two or more Forests, you may gain 3 life.";
|
||||
private final String rule2 = "When {this} enters the battlefield, if you control two or more Islands, you may return target tapped creature to its owner's hand.";
|
||||
|
||||
public SelkieHedgeMage(UUID ownerId) {
|
||||
super(ownerId, 158, "Selkie Hedge-Mage", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{2}{G/U}");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue