Commit eb147299 authored by DailyShana's avatar DailyShana

update 硫酸のたまった落とし穴

remove special treatment
parent a290bcc4
...@@ -11,7 +11,7 @@ function c41356845.initial_effect(c) ...@@ -11,7 +11,7 @@ function c41356845.initial_effect(c)
c:RegisterEffect(e1) c:RegisterEffect(e1)
end end
function c41356845.filter(c) function c41356845.filter(c)
return c:IsFacedown() return c:IsPosition(POS_FACEDOWN_DEFENSE)
end end
function c41356845.target(e,tp,eg,ep,ev,re,r,rp,chk,chkc) function c41356845.target(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
if chkc then return chkc:IsLocation(LOCATION_MZONE) and c41356845.filter(chkc) end if chkc then return chkc:IsLocation(LOCATION_MZONE) and c41356845.filter(chkc) end
...@@ -22,8 +22,7 @@ function c41356845.target(e,tp,eg,ep,ev,re,r,rp,chk,chkc) ...@@ -22,8 +22,7 @@ function c41356845.target(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
end end
function c41356845.activate(e,tp,eg,ep,ev,re,r,rp) function c41356845.activate(e,tp,eg,ep,ev,re,r,rp)
local tc=Duel.GetFirstTarget() local tc=Duel.GetFirstTarget()
if tc:IsRelateToEffect(e) and tc:IsFacedown() then if tc:IsRelateToEffect(e) and Duel.ChangePosition(tc,POS_FACEUP_DEFENSE)~=0 then
Duel.ChangePosition(tc,0,POS_FACEUP_ATTACK,0,POS_FACEUP_DEFENSE,false,true)
if tc:IsDefenseBelow(2000) then if tc:IsDefenseBelow(2000) then
Duel.BreakEffect() Duel.BreakEffect()
Duel.Destroy(tc,REASON_EFFECT) Duel.Destroy(tc,REASON_EFFECT)
......
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