mirror of
https://github.com/correl/mage.git
synced 2025-01-13 19:11:33 +00:00
[SOI] Text fixes
This commit is contained in:
parent
b9ac785807
commit
7db20ecc72
4 changed files with 9 additions and 8 deletions
|
@ -1,4 +1,3 @@
|
|||
|
||||
package mage.cards.e;
|
||||
|
||||
import java.util.UUID;
|
||||
|
@ -7,7 +6,7 @@ import mage.cards.CardImpl;
|
|||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.filter.common.FilterCreaturePermanent;
|
||||
import mage.filter.StaticFilters;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -19,7 +18,7 @@ public final class EtherealGuidance extends CardImpl {
|
|||
super(ownerId,setInfo,new CardType[]{CardType.SORCERY},"{2}{W}");
|
||||
|
||||
// Creatures you control get +2/+1 until end of turn.
|
||||
this.getSpellAbility().addEffect(new BoostControlledEffect(2, 1, Duration.EndOfTurn, new FilterCreaturePermanent()));
|
||||
this.getSpellAbility().addEffect(new BoostControlledEffect(2, 1, Duration.EndOfTurn, StaticFilters.FILTER_PERMANENT_CREATURES));
|
||||
}
|
||||
|
||||
private EtherealGuidance(final EtherealGuidance card) {
|
||||
|
|
|
@ -32,7 +32,7 @@ public final class HermitOfTheNatterknolls extends CardImpl {
|
|||
|
||||
// Whenever an opponent casts a spell during your turn, draw a card.
|
||||
this.addAbility(new ConditionalTriggeredAbility(
|
||||
new SpellCastOpponentTriggeredAbility(new DrawCardSourceControllerEffect(1), StaticFilters.FILTER_SPELL_A, true),
|
||||
new SpellCastOpponentTriggeredAbility(new DrawCardSourceControllerEffect(1), StaticFilters.FILTER_SPELL_A, false),
|
||||
MyTurnCondition.instance,
|
||||
"Whenever an opponent casts a spell during your turn, draw a card."
|
||||
).addHint(MyTurnHint.instance));
|
||||
|
|
|
@ -31,7 +31,7 @@ public final class LoneWolfOfTheNatterknolls extends CardImpl {
|
|||
|
||||
// Whenever an opponent cast a spell during your turn, draw two cards.
|
||||
this.addAbility(new ConditionalTriggeredAbility(
|
||||
new SpellCastOpponentTriggeredAbility(new DrawCardSourceControllerEffect(2), StaticFilters.FILTER_SPELL_A, true),
|
||||
new SpellCastOpponentTriggeredAbility(new DrawCardSourceControllerEffect(2), StaticFilters.FILTER_SPELL_A, false),
|
||||
MyTurnCondition.instance,
|
||||
"Whenever an opponent casts a spell during your turn, draw two cards."
|
||||
).addHint(MyTurnHint.instance));
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
package mage.cards.p;
|
||||
|
||||
import java.util.UUID;
|
||||
|
@ -12,7 +11,7 @@ import mage.cards.CardImpl;
|
|||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.filter.common.FilterLandCard;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.game.permanent.token.WolfToken;
|
||||
|
||||
/**
|
||||
|
@ -32,7 +31,10 @@ public final class PackGuardian extends CardImpl {
|
|||
this.addAbility(FlashAbility.getInstance());
|
||||
|
||||
// When Pack Guardian enters the battlefield, you may discard a land card. If you do, create a 2/2 green Wolf creature token.
|
||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new DoIfCostPaid(new CreateTokenEffect(new WolfToken()), new DiscardCardCost(new FilterLandCard()))));
|
||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new DoIfCostPaid(
|
||||
new CreateTokenEffect(new WolfToken()),
|
||||
new DiscardCardCost(StaticFilters.FILTER_CARD_LAND_A)
|
||||
)));
|
||||
}
|
||||
|
||||
private PackGuardian(final PackGuardian card) {
|
||||
|
|
Loading…
Reference in a new issue