diff --git a/Mage.Sets/src/mage/cards/m/MariTheKillingQuill.java b/Mage.Sets/src/mage/cards/m/MariTheKillingQuill.java index 37cd13285ba..93b113fcb3f 100644 --- a/Mage.Sets/src/mage/cards/m/MariTheKillingQuill.java +++ b/Mage.Sets/src/mage/cards/m/MariTheKillingQuill.java @@ -69,8 +69,8 @@ public class MariTheKillingQuill extends CardImpl { // NOTE: Optional part is handled inside the effect Ability dealsDamageAbility = new DealsCombatDamageToAPlayerTriggeredAbility(new MariTheKillingQuillDealsDamageEffect(), false, true); Effect drawAndTreasureEffect = new GainAbilityControlledEffect(dealsDamageAbility, Duration.WhileOnBattlefield, filter); - drawAndTreasureEffect.setText( - "\"Whenever this creature deals combat damage to a player, you may remove a hit counter from a card that player owns in exile. " + + drawAndTreasureEffect.setText("\"Whenever this creature deals combat damage to a player, " + + "you may remove a hit counter from a card that player owns in exile. " + "If you do, draw a card and create two Treasure tokens.\""); drawAndTreasureEffect.concatBy("and"); @@ -93,6 +93,8 @@ class MariTheKillingQuillDealsDamageEffect extends OneShotEffect { MariTheKillingQuillDealsDamageEffect() { super(Outcome.Benefit); + staticText = "you may remove a hit counter from a card that player owns in exile. " + + "If you do, draw a card and create two Treasure tokens."; } private MariTheKillingQuillDealsDamageEffect(final MariTheKillingQuillDealsDamageEffect effect) {