From 120b8213c488b5e08c2dda275a5df085e0804b57 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Wed, 7 Feb 2018 14:46:08 +0100 Subject: [PATCH] * Protean Raider - Fixed that its enter the battlefield ability was wrongly implemented as a triggered ability. --- Mage.Sets/src/mage/cards/p/ProteanRaider.java | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/Mage.Sets/src/mage/cards/p/ProteanRaider.java b/Mage.Sets/src/mage/cards/p/ProteanRaider.java index c15f237d43..1949db295e 100644 --- a/Mage.Sets/src/mage/cards/p/ProteanRaider.java +++ b/Mage.Sets/src/mage/cards/p/ProteanRaider.java @@ -28,12 +28,10 @@ package mage.cards.p; import java.util.UUID; - import mage.MageInt; import mage.abilities.Ability; -import mage.abilities.common.EntersBattlefieldTriggeredAbility; +import mage.abilities.common.EntersBattlefieldAbility; import mage.abilities.condition.common.RaidCondition; -import mage.abilities.decorator.ConditionalTriggeredAbility; import mage.abilities.effects.common.CopyPermanentEffect; import mage.cards.CardImpl; import mage.cards.CardSetInfo; @@ -55,10 +53,8 @@ public class ProteanRaider extends CardImpl { this.toughness = new MageInt(2); // Raid - If you attacked with a creature this turn, you may have Protean Raider enter the battlefield as a copy of any creature on the battlefield. - Ability ability = new ConditionalTriggeredAbility( - new EntersBattlefieldTriggeredAbility(new CopyPermanentEffect(), true), - RaidCondition.instance, - "Raid — If you attacked with a creature this turn, you may have {this} enter the battlefield as a copy of any creature on the battlefield."); + Ability ability = new EntersBattlefieldAbility(new CopyPermanentEffect(), true, RaidCondition.instance, + "Raid — If you attacked with a creature this turn, you may have {this} enter the battlefield as a copy of any creature on the battlefield.", ""); this.addAbility(ability, new PlayerAttackedWatcher()); } @@ -70,4 +66,4 @@ public class ProteanRaider extends CardImpl { public ProteanRaider copy() { return new ProteanRaider(this); } -} \ No newline at end of file +}