Cursed Recording - fixed that trigger is optional;

This commit is contained in:
Oleg Agafonov 2024-09-15 00:33:56 +04:00
parent dbcac49b4a
commit d2dc70555f

View file

@ -33,7 +33,7 @@ public final class CursedRecording extends CardImpl {
// Whenever you cast an instant or sorcery spell, put a time counter on Cursed Recording. Then if there are seven or more time counters on it, remove those counters and it deals 20 damage to you.
Ability ability = new SpellCastControllerTriggeredAbility(
new AddCountersSourceEffect(CounterType.TIME.createInstance()),
StaticFilters.FILTER_SPELL_AN_INSTANT_OR_SORCERY, true
StaticFilters.FILTER_SPELL_AN_INSTANT_OR_SORCERY, false
);
ability.addEffect(new ConditionalOneShotEffect(
new RemoveAllCountersSourceEffect(CounterType.TIME),