--Created and coded by Rising Phoenix function c100000754.initial_effect(c) local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_EQUIP_LIMIT) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE) e1:SetValue(c100000754.eqlimit) c:RegisterEffect(e1) --atk/def local e3=Effect.CreateEffect(c) e3:SetType(EFFECT_TYPE_EQUIP) e3:SetCode(EFFECT_UPDATE_ATTACK) e3:SetValue(500) c:RegisterEffect(e3) --spsummon local e4=Effect.CreateEffect(c) e4:SetDescription(aux.Stringid(100000754,0)) e4:SetCategory(CATEGORY_SPECIAL_SUMMON) e4:SetProperty(EFFECT_FLAG_NO_TURN_RESET) e4:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_IGNITION) e4:SetRange(LOCATION_SZONE) e4:SetCountLimit(1) e4:SetCondition(c100000754.spcon) e4:SetTarget(c100000754.sptg) e4:SetOperation(c100000754.spop) c:RegisterEffect(e4) --Activate local e5=Effect.CreateEffect(c) e5:SetCategory(CATEGORY_EQUIP) e5:SetType(EFFECT_TYPE_ACTIVATE) e5:SetCode(EVENT_FREE_CHAIN) e5:SetProperty(EFFECT_FLAG_CARD_TARGET) e5:SetTarget(c100000754.target) e5:SetOperation(c100000754.operation) c:RegisterEffect(e5) end function c100000754.filter(c) return c:IsFaceup() and c:IsSetCard(0x75D) and c:IsType(TYPE_MONSTER) end function c100000754.target(e,tp,eg,ep,ev,re,r,rp,chk,chkc) if chkc then return chkc:GetLocation()==LOCATION_MZONE and c100000754.filter(chkc) end if chk==0 then return Duel.IsExistingTarget(c100000754.filter,tp,LOCATION_MZONE,0,1,nil) end Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_EQUIP) Duel.SelectTarget(tp,c100000754.filter,tp,LOCATION_MZONE,0,1,1,nil) Duel.SetOperationInfo(0,CATEGORY_EQUIP,e:GetHandler(),1,0,0) end function c100000754.operation(e,tp,eg,ep,ev,re,r,rp) local c=e:GetHandler() local tc=Duel.GetFirstTarget() if c:IsRelateToEffect(e) and tc:IsRelateToEffect(e) and tc:IsFaceup() then Duel.Equip(tp,c,tc) end end function c100000754.eqlimit(e,c) return c:IsSetCard(0x75D) and c:IsType(TYPE_MONSTER) end function c100000754.spcon(e,tp,eg,ep,ev,re,r,rp) local ec=e:GetHandler():GetEquipTarget() return ec end function c100000754.spfilter(c,e,tp) return c:IsCode(100000914) and c:IsCanBeSpecialSummoned(e,0,tp,false,false) end function c100000754.sptg(e,tp,eg,ep,ev,re,r,rp,chk) if chk==0 then return Duel.GetLocationCount(tp,LOCATION_MZONE)>0 and Duel.IsExistingMatchingCard(c100000754.spfilter,tp,LOCATION_HAND+LOCATION_DECK,0,1,nil,e,tp) end Duel.SetOperationInfo(0,CATEGORY_SPECIAL_SUMMON,nil,1,tp,LOCATION_HAND+LOCATION_DECK) Duel.SetOperationInfo(0,CATEGORY_EQUIP,e:GetHandler(),1,0,0) end function c100000754.spop(e,tp,eg,ep,ev,re,r,rp) local c=e:GetHandler() if not c:IsRelateToEffect(e) then return end if Duel.GetLocationCount(tp,LOCATION_MZONE)<=0 then return end Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_SPSUMMON) local g=Duel.SelectMatchingCard(tp,c100000754.spfilter,tp,LOCATION_HAND+LOCATION_DECK,0,1,1,nil,e,tp) if g:GetCount()>0 then local tc=g:GetFirst() if Duel.SpecialSummonStep(tc,0,tp,tp,false,false,POS_FACEUP)~=0 then Duel.Equip(tp,c,tc) Duel.SpecialSummonComplete() end end end