Commit c084c5c9 authored by POLYMER's avatar POLYMER

fix

parent 1b06f63f
......@@ -49,7 +49,6 @@ function s.target(e,tp,eg,ep,ev,re,r,rp,chk)
e:SetProperty(te:GetProperty())
local tg=te:GetTarget()
if tg then tg(e,tp,eg,ep,ev,re,r,rp,1) end
Duel.HintSelection(g)
Duel.ClearOperationInfo(0)
end
function s.activate(e,tp,eg,ep,ev,re,r,rp)
......@@ -57,6 +56,10 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
if not te then return end
local op=te:GetOperation()
if op then op(e,tp,eg,ep,ev,re,r,rp) end
local tc=Duel.GetFirstTarget()
if tc:IsRelateToEffect(e) then
Duel.SendtoHand(tc,nil,REASON_EFFECT)
end
end
--Release effect
......
......@@ -27,7 +27,7 @@ function c75081047.initial_effect(c)
e3:SetDescription(aux.Stringid(75081047,1))
e3:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e3:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e3:SetProperty(EFFECT_FLAG_DAMAGE_STEP)
e3:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_DELAY)
e3:SetCode(EVENT_SUMMON_SUCCESS)
e3:SetCondition(c75081047.descon)
e3:SetTarget(c75081047.target)
......
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