slowe wrote:I thought about this a little the other day, and the obstacle I ran into was ensuring that only the next instant/sorcery you play (this turn) triggers the copying. I feel like you'd need a custom duration parameter. Is there a way to handle that duration?
My thought was to use the Remembered list to keep a trigger from going off twice in one turn.
Activate -2 ability sequence would be
1)Animate or Effect to add trigger so trigger goes away at end of turn. Trigger uses CheckSvar on the amount in Remembered as part of the triggering logic.
2)
Clear Remember list
1st time trigger, use RememberTgts to put something in the list during resolve.
2nd time trigger, Remembered$Amount is not equal 0, so it doesn't fire.
The flaw in my logic is that not every Sorcery or Instant will have a target that will add to list with RememberTgts, e.g.
Wrath of God. CopySpell doesn't have a Remember key. I could add one to make it work, but if Hellfish has another way I'd like to learn.