mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
* Siren Reaver - Fixed that it doesn't always cost reduce (fixes #4914).
This commit is contained in:
parent
b7eaba72b2
commit
e153c3adbf
1 changed files with 2 additions and 1 deletions
|
@ -40,6 +40,7 @@ import mage.constants.AbilityWord;
|
|||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.Zone;
|
||||
import mage.watchers.common.PlayerAttackedWatcher;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -59,7 +60,7 @@ public class SirenReaver extends CardImpl {
|
|||
Ability ability = new SimpleStaticAbility(Zone.STACK, new SpellCostReductionSourceEffect(1, RaidCondition.instance));
|
||||
ability.setAbilityWord(AbilityWord.RAID);
|
||||
ability.setRuleAtTheTop(true);
|
||||
this.addAbility(ability);
|
||||
this.addAbility(ability, new PlayerAttackedWatcher());
|
||||
|
||||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
|
Loading…
Reference in a new issue