mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
[ORI] Fixed Wild Instincts not applying the boost before the fight.
This commit is contained in:
parent
863df06069
commit
211bc20093
1 changed files with 4 additions and 2 deletions
|
@ -58,9 +58,11 @@ public class WildInstincts extends CardImpl {
|
|||
this.expansionSetCode = "ORI";
|
||||
|
||||
// Target creature you control gets +2/+2 until end of turn. It fights target creature an opponent controls.
|
||||
getSpellAbility().addEffect(new BoostTargetEffect(2, 2, Duration.EndOfTurn));
|
||||
Effect effect = new BoostTargetEffect(2, 2, Duration.EndOfTurn);
|
||||
effect.setApplyEffectsAfter();
|
||||
getSpellAbility().addEffect(effect);
|
||||
getSpellAbility().addTarget(new TargetControlledCreaturePermanent());
|
||||
Effect effect = new FightTargetsEffect();
|
||||
effect = new FightTargetsEffect();
|
||||
effect.setText("It fights target creature an opponent controls <i>(Each deals damage equal to its power to each other)</i>");
|
||||
getSpellAbility().addEffect(effect);
|
||||
getSpellAbility().addTarget(new TargetCreaturePermanent(filter));
|
||||
|
|
Loading…
Reference in a new issue