From 1fde651a39fea844db657cc3dd7c7005b8c8b155 Mon Sep 17 00:00:00 2001
From: LevelX2 <ludwig.hirth@online.de>
Date: Sun, 20 Apr 2014 16:03:47 +0200
Subject: [PATCH] * War-Wing Siren - Fixed wrong casting costs and ability.

---
 .../sets/journeyintonyx/WarWingSiren.java     | 23 ++++++++-----------
 1 file changed, 10 insertions(+), 13 deletions(-)

diff --git a/Mage.Sets/src/mage/sets/journeyintonyx/WarWingSiren.java b/Mage.Sets/src/mage/sets/journeyintonyx/WarWingSiren.java
index 6f3458d5f4..6a58ee2667 100644
--- a/Mage.Sets/src/mage/sets/journeyintonyx/WarWingSiren.java
+++ b/Mage.Sets/src/mage/sets/journeyintonyx/WarWingSiren.java
@@ -29,14 +29,12 @@ package mage.sets.journeyintonyx;
 
 import java.util.UUID;
 import mage.MageInt;
-import mage.abilities.Ability;
-import mage.abilities.abilityword.ConstellationAbility;
-import mage.abilities.effects.common.combat.CantBeBlockedTargetEffect;
+import mage.abilities.effects.common.counter.AddCountersSourceEffect;
+import mage.abilities.keyword.HeroicAbility;
 import mage.cards.CardImpl;
 import mage.constants.CardType;
-import mage.constants.Duration;
 import mage.constants.Rarity;
-import mage.target.common.TargetCreaturePermanent;
+import mage.counters.CounterType;
 
 /**
  *
@@ -45,18 +43,17 @@ import mage.target.common.TargetCreaturePermanent;
 public class WarWingSiren extends CardImpl<WarWingSiren> {
 
     public WarWingSiren(UUID ownerId) {
-        super(ownerId, 57, "War-Wing Siren", Rarity.COMMON, new CardType[]{CardType.ENCHANTMENT, CardType.CREATURE}, "{3}{U}{U}");
+        super(ownerId, 57, "War-Wing Siren", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{2}{U}");
         this.expansionSetCode = "JOU";
-        this.subtype.add("Nymph");
+        this.subtype.add("Siren");
+        this.subtype.add("Soldier");
 
         this.color.setBlue(true);
-        this.power = new MageInt(4);
-        this.toughness = new MageInt(4);
+        this.power = new MageInt(1);
+        this.toughness = new MageInt(3);
 
-        // Constellation — Whenever Whitewater Naiads or another enchantment enters the battlefield under your control, target creature can't be blocked this turn.
-        Ability ability = new ConstellationAbility(new CantBeBlockedTargetEffect(Duration.EndOfTurn), false);
-        ability.addTarget(new TargetCreaturePermanent(true));
-        this.addAbility(ability);
+        // Heroic — Whenever you cast a spell that targets War-Wing Siren, put a +1/+1 counter on War-Wing Siren.
+        this.addAbility(new HeroicAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance(), false)));
     }
 
     public WarWingSiren(final WarWingSiren card) {