Fatal Fissure needs manual targeting to earthbend#14798
Fatal Fissure needs manual targeting to earthbend#14798matoro wants to merge 1 commit intomagefree:masterfrom
Conversation
Unfortunately, `WhenTargetDiesDelayedTriggeredAbility` does not support any effects which require a separate target independent of the triggering target. So in order to choose a separate target at trigger time, we have to do it manually in a custom effect. The only other card I could find with a similar effect is [[Reincarnation]], so this is mostly copied from it. Fixes magefree#14765
|
Wouldn't it be better to add support for targeting? I haven't looked closely, but I'd suspect that |
If I'm understanding, that would be simply moving this code from the card into the ability, which I have been not been doing unless there are 2 or more cards that support the use case. Would you prefer that? |
|
First of all, closer review suggests to me that your code is wrong. You have target selection happening as the trigger resolves, it needs to happen when the trigger is placed on the stack.
It'd be more complex than that. It needs to be made generic, similar to |
I've been trying to follow how this would work for quite a while now but I'm not sure what you're getting at. |
Unfortunately,
WhenTargetDiesDelayedTriggeredAbilitydoes not support any effects which require a separate target independent of the triggering target. So in order to choose a separate target at trigger time, we have to do it manually in a custom effect.The only other card I could find with a similar effect is [[Reincarnation]], so this is mostly copied from it.
Fixes #14765