Commit e9e396de authored by 八宫一月's avatar 八宫一月 Committed by GitHub

Update c52575195.lua (#2244)

parent d0ecedb0
...@@ -14,8 +14,8 @@ function c52575195.initial_effect(c) ...@@ -14,8 +14,8 @@ function c52575195.initial_effect(c)
local e2=Effect.CreateEffect(c) local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(52575195,0)) e2:SetDescription(aux.Stringid(52575195,0))
e2:SetCategory(CATEGORY_REMOVE+CATEGORY_SPECIAL_SUMMON) e2:SetCategory(CATEGORY_REMOVE+CATEGORY_SPECIAL_SUMMON)
e2:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O) e2:SetType(EFFECT_TYPE_QUICK_O)
e2:SetCode(EVENT_ATTACK_ANNOUNCE) e2:SetCode(EVENT_BE_BATTLE_TARGET)
e2:SetRange(LOCATION_HAND) e2:SetRange(LOCATION_HAND)
e2:SetCondition(c52575195.tgcon2) e2:SetCondition(c52575195.tgcon2)
e2:SetTarget(c52575195.tgtg) e2:SetTarget(c52575195.tgtg)
...@@ -40,6 +40,7 @@ end ...@@ -40,6 +40,7 @@ end
function c52575195.tgtg(e,tp,eg,ep,ev,re,r,rp,chk) function c52575195.tgtg(e,tp,eg,ep,ev,re,r,rp,chk)
local tc=e:GetLabelObject() local tc=e:GetLabelObject()
if chk==0 then return tc:IsAbleToRemove() and Duel.GetLocationCount(tp,LOCATION_MZONE)>=0 if chk==0 then return tc:IsAbleToRemove() and Duel.GetLocationCount(tp,LOCATION_MZONE)>=0
and not e:GetHandler():IsStatus(STATUS_CHAINING)
and e:GetHandler():IsCanBeSpecialSummoned(e,0,tp,false,false) end and e:GetHandler():IsCanBeSpecialSummoned(e,0,tp,false,false) end
Duel.SetTargetCard(tc) Duel.SetTargetCard(tc)
Duel.SetOperationInfo(0,CATEGORY_REMOVE,tc,1,0,0) Duel.SetOperationInfo(0,CATEGORY_REMOVE,tc,1,0,0)
......
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