mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 12:02:01 -08:00
[MOC] fixed Saint Traft and Rem Karolus (miss watcher)
This commit is contained in:
parent
2e8f24edb3
commit
c400df36a3
1 changed files with 2 additions and 1 deletions
|
|
@ -19,6 +19,7 @@ import mage.filter.predicate.mageobject.AbilityPredicate;
|
||||||
import mage.game.permanent.token.AngelToken;
|
import mage.game.permanent.token.AngelToken;
|
||||||
import mage.game.permanent.token.RedHumanToken;
|
import mage.game.permanent.token.RedHumanToken;
|
||||||
import mage.game.permanent.token.SpiritBlueToken;
|
import mage.game.permanent.token.SpiritBlueToken;
|
||||||
|
import mage.watchers.common.AbilityResolvedWatcher;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
|
|
@ -52,7 +53,7 @@ public final class SaintTraftAndRemKarolus extends CardImpl {
|
||||||
ability.addEffect(new IfAbilityHasResolvedXTimesEffect(
|
ability.addEffect(new IfAbilityHasResolvedXTimesEffect(
|
||||||
Outcome.PutCreatureInPlay, 3, new CreateTokenEffect(new AngelToken())
|
Outcome.PutCreatureInPlay, 3, new CreateTokenEffect(new AngelToken())
|
||||||
).setText("If it's the third time, create a 4/4 white Angel creature token with flying"));
|
).setText("If it's the third time, create a 4/4 white Angel creature token with flying"));
|
||||||
this.addAbility(ability);
|
this.addAbility(ability, new AbilityResolvedWatcher());
|
||||||
|
|
||||||
// Whenever you cast a spell that has convoke, untap Saint Traft and Rem Karolus.
|
// Whenever you cast a spell that has convoke, untap Saint Traft and Rem Karolus.
|
||||||
this.addAbility(new SpellCastControllerTriggeredAbility(new UntapSourceEffect(), filter, false));
|
this.addAbility(new SpellCastControllerTriggeredAbility(new UntapSourceEffect(), filter, false));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue