mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
* Elusive Spellfist - Fixed that the can't be block effect did not end on turns end.
This commit is contained in:
parent
5af6b6ca7a
commit
d80ba99af9
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ public class ElusiveSpellfist extends CardImpl {
|
|||
|
||||
// Whenever you cast a noncreature spell, Elusive Spellfist gets +1/+0 until end of turn and can't be blocked this turn.
|
||||
Ability ability = new SpellCastControllerTriggeredAbility(new BoostSourceEffect(1,0,Duration.EndOfTurn), filterNonCreature, false);
|
||||
Effect effect = new CantBeBlockedSourceEffect();
|
||||
Effect effect = new CantBeBlockedSourceEffect(Duration.EndOfTurn);
|
||||
effect.setText("and can't be blocked this turn");
|
||||
ability.addEffect(effect);
|
||||
this.addAbility(ability);
|
||||
|
|
Loading…
Reference in a new issue