Commit 94c48a4c authored by gg123gg's avatar gg123gg Committed by GitHub

Update c12036000.lua

parent 04404be5
...@@ -130,7 +130,13 @@ function cm.setop(e,tp,eg,ep,ev,re,r,rp) ...@@ -130,7 +130,13 @@ function cm.setop(e,tp,eg,ep,ev,re,r,rp)
local rc=re:GetHandler() local rc=re:GetHandler()
if rc:IsRelateToEffect(e) and rc:IsCanTurnSet() then if rc:IsRelateToEffect(e) and rc:IsCanTurnSet() then
Duel.BreakEffect() Duel.BreakEffect()
local e1=Effect.CreateEffect(e:GetHandler())
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_CANNOT_TRIGGER)
e1:SetReset(RESET_EVENT+RESETS_STANDARD)
e1:SetValue(1)
rc:RegisterEffect(e1)
Duel.ChangePosition(rc,POS_FACEDOWN) Duel.ChangePosition(rc,POS_FACEDOWN)
Duel.RaiseEvent(rc,EVENT_SSET,e,REASON_EFFECT,tp,tp,0) Duel.RaiseEvent(rc,EVENT_SSET,e,REASON_EFFECT,tp,tp,0)
end end
end end
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment