From 22da1413ac5595b429adc8018fa13f4fdf3de054 Mon Sep 17 00:00:00 2001 From: Jeff Date: Thu, 7 Feb 2019 15:06:06 -0600 Subject: [PATCH] - Fixed Polluted Bonds text. --- Mage.Sets/src/mage/cards/p/PollutedBonds.java | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/Mage.Sets/src/mage/cards/p/PollutedBonds.java b/Mage.Sets/src/mage/cards/p/PollutedBonds.java index a6dc88dff1..1ceb68a6e1 100644 --- a/Mage.Sets/src/mage/cards/p/PollutedBonds.java +++ b/Mage.Sets/src/mage/cards/p/PollutedBonds.java @@ -33,12 +33,14 @@ public final class PollutedBonds extends CardImpl { super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{3}{B}{B}"); // Whenever a land enters the battlefield under an opponent's control, that player loses 2 life and you gain 2 life. - Effect effect = new LoseLifeTargetEffect(2); - effect.setText("that player loses 2 life"); - Ability ability = new EntersBattlefieldAllTriggeredAbility(Zone.BATTLEFIELD, effect, filter, false, SetTargetPointer.PLAYER, ""); - effect = new GainLifeEffect(2); - effect.setText("and you gain 2 life"); - ability.addEffect(effect); + Ability ability = new EntersBattlefieldAllTriggeredAbility( + Zone.BATTLEFIELD, + new LoseLifeTargetEffect(2), + filter, + false, + SetTargetPointer.PLAYER, + "Whenever a land enters the battlefield under an opponent's control, that player loses 2 life and you gain 2 life."); + ability.addEffect(new GainLifeEffect(2)); this.addAbility(ability); }