diff --git a/Mage.Sets/src/mage/cards/t/TwilekSeductess.java b/Mage.Sets/src/mage/cards/t/TwilekSeductess.java
index 527792ea10..3ff8ee3d69 100644
--- a/Mage.Sets/src/mage/cards/t/TwilekSeductess.java
+++ b/Mage.Sets/src/mage/cards/t/TwilekSeductess.java
@@ -41,13 +41,13 @@ import mage.constants.CardType;
public class TwilekSeductess extends CardImpl {
public TwilekSeductess(UUID ownerId, CardSetInfo setInfo) {
- super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{G}");
+ super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{G}");
this.subtype.add("Twi'lek");
this.power = new MageInt(2);
this.toughness = new MageInt(2);
// Whenever Twi'lek Seductess attacks, you may have target creature defending player controls untap and block it if able.
- this.addAbility(new ProvokeAbility());
+ this.addAbility(new ProvokeAbility("Whenever {this} attacks, you may have target creature defending player controls untap and block it if able."));
}
diff --git a/Mage/src/main/java/mage/abilities/keyword/ProvokeAbility.java b/Mage/src/main/java/mage/abilities/keyword/ProvokeAbility.java
index 9c63832c61..746984def6 100644
--- a/Mage/src/main/java/mage/abilities/keyword/ProvokeAbility.java
+++ b/Mage/src/main/java/mage/abilities/keyword/ProvokeAbility.java
@@ -53,7 +53,11 @@ import mage.target.common.TargetCreaturePermanent;
public class ProvokeAbility extends AttacksTriggeredAbility {
public ProvokeAbility() {
- super(new UntapTargetEffect(), true, "Provoke (Whenever this attacks, you may have target creature defending player controls untap and block it if able.)");
+ this("Provoke (Whenever this attacks, you may have target creature defending player controls untap and block it if able.)");
+ }
+
+ public ProvokeAbility(String text) {
+ super(new UntapTargetEffect(), true, text);
this.addEffect(new ProvokeRequirementEffect());
}