From cf5170170523d65d5ed0a2f3a59582f00e8cb3d4 Mon Sep 17 00:00:00 2001 From: Artemis Kearney Date: Mon, 15 May 2023 22:51:19 -0500 Subject: [PATCH] text: Runemarks grant abilities to enchanted creatures, not themselves (#10380) --- Mage.Sets/src/mage/cards/a/AbzanRunemark.java | 2 +- Mage.Sets/src/mage/cards/j/JeskaiRunemark.java | 2 +- Mage.Sets/src/mage/cards/m/MarduRunemark.java | 2 +- Mage.Sets/src/mage/cards/s/SultaiRunemark.java | 2 +- Mage.Sets/src/mage/cards/t/TemurRunemark.java | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Mage.Sets/src/mage/cards/a/AbzanRunemark.java b/Mage.Sets/src/mage/cards/a/AbzanRunemark.java index e9eba6d42a8..08c17792440 100644 --- a/Mage.Sets/src/mage/cards/a/AbzanRunemark.java +++ b/Mage.Sets/src/mage/cards/a/AbzanRunemark.java @@ -48,7 +48,7 @@ public final class AbzanRunemark extends CardImpl { // Enchanted creature has vigilance as long as you control a black or green permanent. this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new ConditionalContinuousEffect(new GainAbilityAttachedEffect(VigilanceAbility.getInstance(), AttachmentType.AURA), - new PermanentsOnTheBattlefieldCondition(filter), "{this} has vigilance as long as you control a black or green permanent"))); + new PermanentsOnTheBattlefieldCondition(filter), "Enchanted creature has vigilance as long as you control a black or green permanent"))); } private AbzanRunemark(final AbzanRunemark card) { diff --git a/Mage.Sets/src/mage/cards/j/JeskaiRunemark.java b/Mage.Sets/src/mage/cards/j/JeskaiRunemark.java index 953f11ba23d..18d2266a205 100644 --- a/Mage.Sets/src/mage/cards/j/JeskaiRunemark.java +++ b/Mage.Sets/src/mage/cards/j/JeskaiRunemark.java @@ -53,7 +53,7 @@ public final class JeskaiRunemark extends CardImpl { // Enchanted creature has flying as long as you control a red or white permanent. this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new ConditionalContinuousEffect(new GainAbilityAttachedEffect(FlyingAbility.getInstance(), AttachmentType.AURA), - new PermanentsOnTheBattlefieldCondition(filter), "{this} has flying as long as you control a red or white permanent"))); + new PermanentsOnTheBattlefieldCondition(filter), "Enchanted creature has flying as long as you control a red or white permanent"))); } private JeskaiRunemark(final JeskaiRunemark card) { diff --git a/Mage.Sets/src/mage/cards/m/MarduRunemark.java b/Mage.Sets/src/mage/cards/m/MarduRunemark.java index 55d21e07454..152abe3c1a3 100644 --- a/Mage.Sets/src/mage/cards/m/MarduRunemark.java +++ b/Mage.Sets/src/mage/cards/m/MarduRunemark.java @@ -53,7 +53,7 @@ public final class MarduRunemark extends CardImpl { // Enchanted creature has first strike as long as you control a white or black permanent. this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new ConditionalContinuousEffect(new GainAbilityAttachedEffect(FirstStrikeAbility.getInstance(), AttachmentType.AURA), - new PermanentsOnTheBattlefieldCondition(filter), "{this} has first strike as long as you control a white or black permanent"))); + new PermanentsOnTheBattlefieldCondition(filter), "Enchanted creature has first strike as long as you control a white or black permanent"))); } private MarduRunemark(final MarduRunemark card) { diff --git a/Mage.Sets/src/mage/cards/s/SultaiRunemark.java b/Mage.Sets/src/mage/cards/s/SultaiRunemark.java index c38b5928745..344f4b01cd8 100644 --- a/Mage.Sets/src/mage/cards/s/SultaiRunemark.java +++ b/Mage.Sets/src/mage/cards/s/SultaiRunemark.java @@ -53,7 +53,7 @@ public final class SultaiRunemark extends CardImpl { // Enchanted creature has deathtouch as long as you control a green or blue permanent. this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new ConditionalContinuousEffect(new GainAbilityAttachedEffect(DeathtouchAbility.getInstance(), AttachmentType.AURA), - new PermanentsOnTheBattlefieldCondition(filter), "{this} has deathtouch as long as you control a green or blue permanent"))); + new PermanentsOnTheBattlefieldCondition(filter), "Enchanted creature has deathtouch as long as you control a green or blue permanent"))); } private SultaiRunemark(final SultaiRunemark card) { diff --git a/Mage.Sets/src/mage/cards/t/TemurRunemark.java b/Mage.Sets/src/mage/cards/t/TemurRunemark.java index 6c203849a74..e9ae4697ff7 100644 --- a/Mage.Sets/src/mage/cards/t/TemurRunemark.java +++ b/Mage.Sets/src/mage/cards/t/TemurRunemark.java @@ -53,7 +53,7 @@ public final class TemurRunemark extends CardImpl { // Enchanted creature has trample as long as you control a blue or red permanent. this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new ConditionalContinuousEffect(new GainAbilityAttachedEffect(TrampleAbility.getInstance(), AttachmentType.AURA), - new PermanentsOnTheBattlefieldCondition(filter), "{this} has trample as long as you control a blue or red permanent"))); + new PermanentsOnTheBattlefieldCondition(filter), "Enchanted creature has trample as long as you control a blue or red permanent"))); } private TemurRunemark(final TemurRunemark card) {