mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
some text fixes
This commit is contained in:
parent
fe84702ff5
commit
410144eb52
10 changed files with 20 additions and 14 deletions
|
|
@ -56,7 +56,8 @@ class AgencyOutfitterEffect extends OneShotEffect {
|
|||
|
||||
AgencyOutfitterEffect() {
|
||||
super(Outcome.UnboostCreature);
|
||||
this.staticText = "you may search your graveyard, hand, and/or library for a card named Magnifying Glass and/or a card named Thinking Cap and put them onto the battlefield. If you search your library this way, shuffle.";
|
||||
this.staticText = "you may search your graveyard, hand and/or library for a card named Magnifying Glass" +
|
||||
" and/or a card named Thinking Cap and put them onto the battlefield. If you search your library this way, shuffle.";
|
||||
}
|
||||
|
||||
private AgencyOutfitterEffect(final AgencyOutfitterEffect effect) {
|
||||
|
|
|
|||
|
|
@ -43,7 +43,8 @@ public final class CorrosiveOoze extends CardImpl {
|
|||
this.toughness = new MageInt(2);
|
||||
|
||||
// Whenever Corrosive Ooze blocks or becomes blocked by an equipped creature, destroy all Equipment attached to that creature at end of combat.
|
||||
Effect effect = new CreateDelayedTriggeredAbilityEffect(new AtTheEndOfCombatDelayedTriggeredAbility(new CorrosiveOozeEffect()), true);
|
||||
Effect effect = new CreateDelayedTriggeredAbilityEffect(new AtTheEndOfCombatDelayedTriggeredAbility(new CorrosiveOozeEffect())
|
||||
.setTriggerPhrase(""), true);
|
||||
this.addAbility(new BlocksOrBlockedByCreatureSourceTriggeredAbility(effect, filter), new CorrosiveOozeCombatWatcher());
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -49,13 +49,13 @@ public final class DiscreetRetreat extends CardImpl {
|
|||
Ability ability = new EnchantAbility(auraTarget);
|
||||
this.addAbility(ability);
|
||||
|
||||
// Enchanted land has "{T}: Add two mana of any one color. Spend this mana only to cast outlaw spells or activate abilities from outlaw sources."
|
||||
// Enchanted land has "{T}: Add two mana of any one color. Spend this mana only to cast outlaw spells or activate abilities of outlaw sources."
|
||||
Ability gainedAbility = new ConditionalAnyColorManaAbility(
|
||||
new TapSourceCost(), 2, new DiscreetRetreatManaBuilder()
|
||||
);
|
||||
Effect effect = new GainAbilityAttachedEffect(gainedAbility, AttachmentType.AURA);
|
||||
effect.setText("Enchanted land has \"{T}: Add two mana of any one color. "
|
||||
+ "Spend this mana only to cast outlaw spells or activate abilities from outlaw sources.\"");
|
||||
+ "Spend this mana only to cast outlaw spells or activate abilities of outlaw sources.\"");
|
||||
this.addAbility(new SimpleStaticAbility(effect));
|
||||
|
||||
// Whenever you cast your first outlaw spell each turn, you draw a card and you lose 1 life.
|
||||
|
|
|
|||
|
|
@ -34,7 +34,9 @@ public final class FickleEfreet extends CardImpl {
|
|||
|
||||
// Whenever Fickle Efreet attacks or blocks, flip a coin at end of combat. If you lose the flip, an opponent gains control of Fickle Efreet.
|
||||
this.addAbility(new AttacksOrBlocksTriggeredAbility(new CreateDelayedTriggeredAbilityEffect(
|
||||
new AtTheEndOfCombatDelayedTriggeredAbility(new FickleEfreetChangeControlEffect()), true), false));
|
||||
new AtTheEndOfCombatDelayedTriggeredAbility(new FickleEfreetChangeControlEffect())
|
||||
.setTriggerPhrase(""), true), false)
|
||||
.setTriggerPhrase("Whenever {this} attacks or blocks, "));
|
||||
}
|
||||
|
||||
private FickleEfreet(final FickleEfreet card) {
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ public final class IncineratorOfTheGuilty extends CardImpl {
|
|||
|
||||
class IncineratorOfTheGuiltyEffect extends OneShotEffect {
|
||||
|
||||
private static final FilterPermanent filter = new FilterPermanent("creature and each planeswalker");
|
||||
private static final FilterPermanent filter = new FilterPermanent("creature and planeswalker");
|
||||
|
||||
static {
|
||||
filter.add(
|
||||
|
|
@ -69,7 +69,7 @@ class IncineratorOfTheGuiltyEffect extends OneShotEffect {
|
|||
IncineratorOfTheGuiltyEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "you may collect evidence X. When you do, {this} deals X damage " +
|
||||
"to each creature and each planeswalker that player controls.";
|
||||
"to each creature and planeswalker that player controls.";
|
||||
}
|
||||
|
||||
private IncineratorOfTheGuiltyEffect(final IncineratorOfTheGuiltyEffect effect) {
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ import mage.target.TargetPermanent;
|
|||
*/
|
||||
public final class KraulHarpooner extends CardImpl {
|
||||
|
||||
private static final FilterPermanent filter = new FilterCreaturePermanent("creature with flying you don't control");
|
||||
private static final FilterPermanent filter = new FilterCreaturePermanent("creature you don’t control with flying");
|
||||
|
||||
static {
|
||||
filter.add(TargetController.NOT_YOU.getControllerPredicate());
|
||||
|
|
@ -67,8 +67,8 @@ class KraulHarpoonerEffect extends OneShotEffect {
|
|||
|
||||
KraulHarpoonerEffect() {
|
||||
super(Outcome.Benefit);
|
||||
this.staticText = "choose up to one target creature with flying "
|
||||
+ "you don't control. {this} gets +X/+0 until end of turn, "
|
||||
this.staticText = "choose up to one target creature you don't control with flying." +
|
||||
" {this} gets +X/+0 until end of turn, "
|
||||
+ "where X is the number of creature cards in your graveyard, "
|
||||
+ "then you may have {this} fight that creature.";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ class MemoryVesselExileEffect extends OneShotEffect {
|
|||
MemoryVesselExileEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "each player exiles the top seven cards of their library. " +
|
||||
"Until your next turn, players may play cards they exiled from their library this way";
|
||||
"Until your next turn, players may play cards they exiled this way";
|
||||
}
|
||||
|
||||
private MemoryVesselExileEffect(final MemoryVesselExileEffect effect) {
|
||||
|
|
|
|||
|
|
@ -30,7 +30,8 @@ public final class RunawayCarriage extends CardImpl {
|
|||
|
||||
// When Runaway Carriage attacks or blocks, sacrifice it at end of combat.
|
||||
this.addAbility(new AttacksOrBlocksTriggeredAbility(new CreateDelayedTriggeredAbilityEffect(
|
||||
new AtTheEndOfCombatDelayedTriggeredAbility(new SacrificeSourceEffect())), false));
|
||||
new AtTheEndOfCombatDelayedTriggeredAbility(new SacrificeSourceEffect()
|
||||
.setText("sacrifice it at end of combat")).setTriggerPhrase("")), false));
|
||||
}
|
||||
|
||||
private RunawayCarriage(final RunawayCarriage card) {
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ public final class SalvationColossus extends CardImpl {
|
|||
// Whenever you attack, other creatures you control get +2/+2 and gain indestructible until end of turn.
|
||||
Ability ability = new AttacksWithCreaturesTriggeredAbility(new BoostControlledEffect(
|
||||
2, 2, Duration.EndOfTurn, true
|
||||
).setText("other creatures you control get +1/+1"), 1);
|
||||
).setText("other creatures you control get +2/+2"), 1);
|
||||
ability.addEffect(new GainAbilityControlledEffect(
|
||||
IndestructibleAbility.getInstance(), Duration.EndOfTurn,
|
||||
StaticFilters.FILTER_PERMANENT_CREATURE
|
||||
|
|
|
|||
|
|
@ -43,7 +43,8 @@ public final class TimeElemental extends CardImpl {
|
|||
this.toughness = new MageInt(2);
|
||||
|
||||
// When Time Elemental attacks or blocks, at end of combat, sacrifice it and it deals 5 damage to you.
|
||||
DelayedTriggeredAbility ability = new AtTheEndOfCombatDelayedTriggeredAbility(new SacrificeSourceEffect().setText("at end of combat, sacrifice it"));
|
||||
DelayedTriggeredAbility ability = new AtTheEndOfCombatDelayedTriggeredAbility(new SacrificeSourceEffect()
|
||||
.setText("at end of combat, sacrifice it")).setTriggerPhrase("");
|
||||
ability.addEffect(new DamageControllerEffect(5).setText("and it deals 5 damage to you"));
|
||||
this.addAbility(new AttacksOrBlocksTriggeredAbility(new CreateDelayedTriggeredAbilityEffect(ability, true), false));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue