mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
* War-Wing Siren - Add missing Flying ability.
This commit is contained in:
parent
db242b7682
commit
87a3c46925
1 changed files with 3 additions and 0 deletions
|
@ -30,6 +30,7 @@ package mage.sets.journeyintonyx;
|
|||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.effects.common.counter.AddCountersSourceEffect;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.abilities.keyword.HeroicAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
|
@ -52,6 +53,8 @@ public class WarWingSiren extends CardImpl<WarWingSiren> {
|
|||
this.power = new MageInt(1);
|
||||
this.toughness = new MageInt(3);
|
||||
|
||||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
// 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)));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue