--Hellstrain Needle function c212023.initial_effect(c) --special summon local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_SPSUMMON_PROC) e1:SetProperty(EFFECT_FLAG_UNCOPYABLE) e1:SetRange(LOCATION_HAND) e1:SetCondition(c212023.spcon) c:RegisterEffect(e1) --damage local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(212023,0)) e2:SetCategory(CATEGORY_DAMAGE) e2:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e2:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_DELAY) e2:SetCode(EVENT_SPSUMMON_SUCCESS) e2:SetCountLimit(1,212023) e2:SetTarget(c212023.damtg) e2:SetOperation(c212023.damop) c:RegisterEffect(e2) --atkup local e3=Effect.CreateEffect(c) e3:SetType(EFFECT_TYPE_SINGLE) e3:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e3:SetRange(LOCATION_MZONE) e3:SetCode(EFFECT_UPDATE_ATTACK) e3:SetValue(c212023.atkval) c:RegisterEffect(e3) --atk local e4=Effect.CreateEffect(c) e4:SetType(EFFECT_TYPE_FIELD) e4:SetRange(LOCATION_MZONE) e4:SetTargetRange(LOCATION_MZONE,0) e4:SetCode(EFFECT_UPDATE_ATTACK) e4:SetTarget(aux.TargetBoolFunction(Card.IsSetCard,0x22f)) e4:SetValue(200) c:RegisterEffect(e4) end function c212023.filter(c) return c:IsFaceup() and c:IsSetCard(0x22f) end function c212023.spcon(e,c) if c==nil then return true end return Duel.GetLocationCount(c:GetControler(),LOCATION_MZONE)>0 and Duel.IsExistingMatchingCard(c212023.filter,c:GetControler(),LOCATION_MZONE,0,1,nil) end function c212023.damfilter(c) return c:IsFaceup() and c:IsSetCard(0x22f) end function c212023.damtg(e,tp,eg,ep,ev,re,r,rp,chk) if chk==0 then return Duel.IsExistingMatchingCard(c212023.damfilter,tp,LOCATION_MZONE,0,1,nil) end local g=Duel.GetMatchingGroup(c212023.damfilter,tp,LOCATION_MZONE,0,nil) local dam=g:GetClassCount(Card.GetCode)*300 Duel.SetOperationInfo(0,CATEGORY_DAMAGE,nil,0,1-tp,dam) end function c212023.damop(e,tp,eg,ep,ev,re,r,rp) local g=Duel.GetMatchingGroup(c212023.damfilter,tp,LOCATION_MZONE,0,nil) local dam=g:GetClassCount(Card.GetCode)*300 Duel.Damage(1-tp,dam,REASON_EFFECT) end function c212023.atkfilter(c) return c:IsFaceup() and c:IsSetCard(0x22f) end function c212023.atkval(e,c) return Duel.GetMatchingGroupCount(c212023.atkfilter,c:GetControler(),LOCATION_MZONE,0,nil)*200 end