Commit 003ae1bc authored by POLYMER's avatar POLYMER

fix

parent 5cede304
...@@ -8,6 +8,7 @@ function s.initial_effect(c) ...@@ -8,6 +8,7 @@ function s.initial_effect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN) e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id) e1:SetCountLimit(1,id)
e1:SetTarget(s.target)
e1:SetOperation(s.activate) e1:SetOperation(s.activate)
c:RegisterEffect(e1) c:RegisterEffect(e1)
local e2=Effect.CreateEffect(c) local e2=Effect.CreateEffect(c)
......
...@@ -57,6 +57,7 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp) ...@@ -57,6 +57,7 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler() local c=e:GetHandler()
if c:IsRelateToEffect(e) then if c:IsRelateToEffect(e) then
Duel.SpecialSummon(c,SUMMON_TYPE_RITUAL,tp,tp,false,true,POS_FACEUP) Duel.SpecialSummon(c,SUMMON_TYPE_RITUAL,tp,tp,false,true,POS_FACEUP)
c:CompleteProcedure()
end end
local e1=Effect.CreateEffect(e:GetHandler()) local e1=Effect.CreateEffect(e:GetHandler())
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS) e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
......
...@@ -55,7 +55,7 @@ function s.rsop(e,tp,eg,ep,ev,re,r,rp) ...@@ -55,7 +55,7 @@ function s.rsop(e,tp,eg,ep,ev,re,r,rp)
if tc then if tc then
-- 特殊召唤 -- 特殊召唤
Duel.SpecialSummon(tc,SUMMON_TYPE_RITUAL,tp,tp,false,true,POS_FACEUP) Duel.SpecialSummon(tc,SUMMON_TYPE_RITUAL,tp,tp,false,true,POS_FACEUP)
tc:CompleteProcedure()
-- 赋予不成为效果对象的抗性 -- 赋予不成为效果对象的抗性
local e1=Effect.CreateEffect(e:GetHandler()) local e1=Effect.CreateEffect(e:GetHandler())
e1:SetType(EFFECT_TYPE_SINGLE) e1:SetType(EFFECT_TYPE_SINGLE)
......
...@@ -53,6 +53,7 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp) ...@@ -53,6 +53,7 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
local tc=g2:GetFirst() local tc=g2:GetFirst()
-- 当作仪式召唤特殊召唤 -- 当作仪式召唤特殊召唤
Duel.SpecialSummon(tc,SUMMON_TYPE_RITUAL,tp,tp,false,true,POS_FACEUP) Duel.SpecialSummon(tc,SUMMON_TYPE_RITUAL,tp,tp,false,true,POS_FACEUP)
tc:CompleteProcedure()
end end
end end
end end
......
...@@ -72,9 +72,8 @@ function c82228010.disop(e,tp,eg,ep,ev,re,r,rp) ...@@ -72,9 +72,8 @@ function c82228010.disop(e,tp,eg,ep,ev,re,r,rp)
end end
function c82228010.dacon(e,tp,eg,ep,ev,re,r,rp) function c82228010.dacon(e,tp,eg,ep,ev,re,r,rp)
return tp~=Duel.GetTurnPlayer() return Duel.GetAttacker():GetControler()~=tp
end end
function c82228010.daop(e,tp,eg,ep,ev,re,r,rp) function c82228010.daop(e,tp,eg,ep,ev,re,r,rp)
Duel.NegateAttack() Duel.NegateAttack()
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