You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When an XYZ monster is destroyed, its XYZ materials are sent to grave with the monster at same time, so it shouldn't meet the condition of Blue-Eyes Jet Dragon :
You can Special Summon this card from your GY (if it was there when the card was destroyed)
Now in YGOPro, if the XYZ monster is destroyed by effect, EVENT_DESTROYED will be triggered in send_to of the XYZ monster, before send_to(&overlays, ... is called, so it won't cause any problem.
But if the XYZ monster is destroyed by battle, EVENT_DESTROYED will be triggered after the XYZ monster is sent to grave fully (the destroyed event is skipped in send_to), so Blue-Eyes Jet Dragon will receive the event in grave.
I think we can add Card.GetPreviousOverlayGroupOnField to check this (not eg:IsContains(c) and not eg:IsContains(GetPreviousOverlayGroupOnField contains c))
When an XYZ monster is destroyed, its XYZ materials are sent to grave with the monster at same time, so it shouldn't meet the condition of Blue-Eyes Jet Dragon :
Now in YGOPro, if the XYZ monster is destroyed by effect,
EVENT_DESTROYED
will be triggered insend_to
of the XYZ monster, beforesend_to(&overlays, ...
is called, so it won't cause any problem.But if the XYZ monster is destroyed by battle,
EVENT_DESTROYED
will be triggered after the XYZ monster is sent to grave fully (the destroyed event is skipped insend_to
), so Blue-Eyes Jet Dragon will receive the event in grave.I think we can add
Card.GetPreviousOverlayGroupOnField
to check this (not eg:IsContains(c) and not eg:IsContains(GetPreviousOverlayGroupOnField contains c)
)The text was updated successfully, but these errors were encountered: