mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
Fix You've Been Caught Stealing (#10388)
This commit is contained in:
parent
8a071bd1ad
commit
c12058744d
1 changed files with 2 additions and 1 deletions
|
@ -9,6 +9,7 @@ import mage.abilities.effects.common.combat.BlocksIfAbleAllEffect;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.Duration;
|
||||||
import mage.filter.StaticFilters;
|
import mage.filter.StaticFilters;
|
||||||
import mage.game.Game;
|
import mage.game.Game;
|
||||||
import mage.game.permanent.token.TreasureToken;
|
import mage.game.permanent.token.TreasureToken;
|
||||||
|
@ -26,7 +27,7 @@ public final class YouveBeenCaughtStealing extends CardImpl {
|
||||||
|
|
||||||
// Choose one —
|
// Choose one —
|
||||||
// • Threaten the Merchant — Each creature blocks this turn if able.
|
// • Threaten the Merchant — Each creature blocks this turn if able.
|
||||||
this.getSpellAbility().addEffect(new BlocksIfAbleAllEffect(StaticFilters.FILTER_PERMANENT_CREATURE)
|
this.getSpellAbility().addEffect(new BlocksIfAbleAllEffect(StaticFilters.FILTER_PERMANENT_CREATURE, Duration.EndOfTurn)
|
||||||
.setText("each creature blocks this turn if able"));
|
.setText("each creature blocks this turn if able"));
|
||||||
this.getSpellAbility().withFirstModeFlavorWord("Threaten the Merchant");
|
this.getSpellAbility().withFirstModeFlavorWord("Threaten the Merchant");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue