mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
* Dulcet Sirens - Added the missing tap cost.
This commit is contained in:
parent
fe25b8c38b
commit
f8c478aa76
1 changed files with 2 additions and 0 deletions
|
@ -31,6 +31,7 @@ import java.util.UUID;
|
|||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.costs.common.TapSourceCost;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.effects.RequirementEffect;
|
||||
import mage.abilities.keyword.MorphAbility;
|
||||
|
@ -61,6 +62,7 @@ public class DulcetSirens extends CardImpl {
|
|||
|
||||
// {U}, {T}: Target creature attacks target opponent this turn if able.
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DulcetSirensForceAttackEffect(Duration.EndOfTurn), new ManaCostsImpl("{U}"));
|
||||
ability.addCost(new TapSourceCost());
|
||||
ability.addTarget(new TargetCreaturePermanent());
|
||||
ability.addTarget(new TargetOpponent());
|
||||
this.addAbility(ability);
|
||||
|
|
Loading…
Reference in a new issue