--霓火城市 function c33700120.initial_effect(c) c:EnableCounterPermit(0x5) --activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_COUNTER) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetOperation(c33700120.activate) c:RegisterEffect(e1) --counter local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS) e2:SetCode(EVENT_TO_HAND) e2:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_DELAY) e2:SetRange(LOCATION_FZONE) e2:SetCondition(c33700120.ctcon) e2:SetOperation(c33700120.ctop) c:RegisterEffect(e2) -- local e3=Effect.CreateEffect(c) e3:SetDescription(aux.Stringid(33700120,0)) e3:SetType(EFFECT_TYPE_QUICK_O) e3:SetCode(EVENT_CHAINING) e3:SetRange(LOCATION_FZONE) e3:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_DAMAGE_CAL) e3:SetCondition(c33700120.condition) e3:SetCost(c33700120.cost) e3:SetOperation(c33700120.operation) c:RegisterEffect(e3) -- local e4=Effect.CreateEffect(c) e4:SetCategory(CATEGORY_COUNTER) e4:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e4:SetCode(EVENT_TO_GRAVE) e4:SetTarget(c33700120.tg) e4:SetOperation(c33700120.op) c:RegisterEffect(e4) end function c33700120.filter(c) return c:GetCounter(0x5)>0 end function c33700120.activate(e,tp,eg,ep,ev,re,r,rp) if not e:GetHandler():IsRelateToEffect(e) then return end local g=Duel.GetMatchingGroup(c33700120.filter,tp,LOCATION_ONFIELD,LOCATION_ONFIELD,nil) if g:GetCount()>0 then local ct local tg=g:GetFirst() while tg do if not tg:IsImmuneToEffect(e) then ct=ct+tg:GetCounter(0x5) Duel.RemoveCounter(tg,tp,0x5,tg:GetCounter(0x5),REASON_EFFECT) end tg=g:GetNext() end e:GetHandler():AddCounter(0x5,ct) end end function c33700120.cfilter(c,tp) return c:IsControler(tp) and c:IsPreviousLocation(LOCATION_DECK) end function c33700120.ctcon(e,tp,eg,ep,ev,re,r,rp) return eg:IsExists(c33700120.cfilter,1,nil,1-tp) end function c33700120.ctop(e,tp,eg,ep,ev,re,r,rp) e:GetHandler():AddCounter(0x5,1) end function c33700120.condition(e,tp,eg,ep,ev,re,r,rp) return ep==tp and re:IsActiveType(TYPE_MONSTER) and re:GetHandler():IsSetCard(0x443) and re:GetHandler():IsLocation(LOCATION_MZONE) end function c33700120.cost(e,tp,eg,ep,ev,re,r,rp,chk) if chk==0 then return e:GetHandler():GetCounter(0x5)>0 end e:GetHandler():RemoveCounter(tp,0x5,1,REASON_COST) end function c33700120.activate(e,tp,eg,ep,ev,re,r,rp) if not e:GetHandler():IsRelateToEffect(e) then return end local g=re:GetHandler() local e3=Effect.CreateEffect(e:GetHandler()) e3:SetType(EFFECT_TYPE_SINGLE) e3:SetCode(EFFECT_CANNOT_DISEFFECT) e3:SetValue(1) e3:SetReset(RESET_EVENT+RESET_CHAIN) g:RegisterEffect(e3) --cannot disable local e4=Effect.CreateEffect(e:GetHandler()) e4:SetType(EFFECT_TYPE_SINGLE) e4:SetCode(EFFECT_CANNOT_DISABLE) e4:SetReset(RESET_EVENT+RESET_CHAIN) g:RegisterEffect(e4) end function c33700120.addfilter(c) return c:IsFaceup() and c:IsSetCard(0x443) end function c33700120.tg(e,tp,eg,ep,ev,re,r,rp,chk) if chk==0 then return Duel.IsExistingMatchingCard(c33700120.addfilter,tp,LOCATION_MZONE,0,1,nil) and e:GetHandler():GetCounter(0x5)>0 end end function c33700120.op(e,tp,eg,ep,ev,re,r,rp) local g=Duel.SelectMatchingCard(tp,c33700120.addfilter,tp,LOCATION_MZONE,0,1,1,nil) if g:GetCount()>0 then g:GetFirst():AddCounter(0x5,e:GetHandler():GetCounter(0x5)) end end