mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
fix #13785 (Ballad of the Black Flag)
This commit is contained in:
parent
3bf580233c
commit
2ef4f33f78
1 changed files with 3 additions and 1 deletions
|
|
@ -6,6 +6,7 @@ import mage.abilities.effects.common.cost.SpellsCostReductionControllerEffect;
|
|||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.SagaChapter;
|
||||
import mage.constants.SubType;
|
||||
import mage.filter.FilterCard;
|
||||
|
|
@ -40,7 +41,8 @@ public final class BalladOfTheBlackFlag extends CardImpl {
|
|||
// IV - Historic spells you cast this turn cost {2} less to cast.
|
||||
sagaAbility.addChapterEffect(
|
||||
this, SagaChapter.CHAPTER_IV,
|
||||
new SpellsCostReductionControllerEffect(filter, 2)
|
||||
new SpellsCostReductionControllerEffect(filter, 2).setDuration(Duration.EndOfTurn)
|
||||
.setText("historic spells you cast this turn cost {2} less to cast")
|
||||
);
|
||||
|
||||
this.addAbility(sagaAbility);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue