--王女の試練 function c72709014.initial_effect(c) aux.AddCodeList(c,81383947,46128076) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_EQUIP) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_CONTINUOUS_TARGET) e1:SetTarget(c72709014.target) e1:SetOperation(c72709014.operation) c:RegisterEffect(e1) --Atk up local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_EQUIP) e2:SetCode(EFFECT_UPDATE_ATTACK) e2:SetValue(800) c:RegisterEffect(e2) --Equip limit local e3=Effect.CreateEffect(c) e3:SetType(EFFECT_TYPE_SINGLE) e3:SetCode(EFFECT_EQUIP_LIMIT) e3:SetProperty(EFFECT_FLAG_CANNOT_DISABLE) e3:SetValue(c72709014.eqlimit) c:RegisterEffect(e3) --equip local e4=Effect.CreateEffect(c) e4:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS) e4:SetProperty(EFFECT_FLAG_CANNOT_DISABLE) e4:SetCode(EVENT_BATTLE_DESTROYING) e4:SetRange(LOCATION_SZONE) e4:SetOperation(c72709014.regop) c:RegisterEffect(e4) local e5=Effect.CreateEffect(c) e5:SetDescription(aux.Stringid(72709014,0)) e5:SetType(EFFECT_TYPE_IGNITION) e5:SetCategory(CATEGORY_SPECIAL_SUMMON) e5:SetRange(LOCATION_SZONE) e5:SetCondition(c72709014.spcon) e5:SetCost(c72709014.spcost) e5:SetTarget(c72709014.sptg) e5:SetOperation(c72709014.spop) c:RegisterEffect(e5) end function c72709014.eqlimit(e,c) return c:IsCode(81383947,46128076) end function c72709014.filter(c) return c:IsFaceup() and c:IsCode(81383947,46128076) end function c72709014.target(e,tp,eg,ep,ev,re,r,rp,chk,chkc) if chkc then return chkc:IsLocation(LOCATION_MZONE) and c72709014.filter(chkc) end if chk==0 then return Duel.IsExistingTarget(c72709014.filter,tp,LOCATION_MZONE,LOCATION_MZONE,1,nil) end Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_EQUIP) Duel.SelectTarget(tp,c72709014.filter,tp,LOCATION_MZONE,LOCATION_MZONE,1,1,nil) Duel.SetOperationInfo(0,CATEGORY_EQUIP,e:GetHandler(),1,0,0) end function c72709014.operation(e,tp,eg,ep,ev,re,r,rp) local tc=Duel.GetFirstTarget() if e:GetHandler():IsRelateToEffect(e) and tc:IsRelateToEffect(e) and tc:IsFaceup() then Duel.Equip(tp,e:GetHandler(),tc) end end function c72709014.regfilter(c,ec) return c==ec and c:GetBattleTarget():IsLevelAbove(5) end function c72709014.regop(e,tp,eg,ep,ev,re,r,rp) if eg:IsExists(c72709014.regfilter,1,nil,e:GetHandler():GetEquipTarget()) then e:GetHandler():RegisterFlagEffect(72709014,RESET_EVENT+RESETS_STANDARD+RESET_PHASE+PHASE_END,0,1) end end function c72709014.spcon(e,tp,eg,ep,ev,re,r,rp) return e:GetHandler():GetFlagEffect(72709014)~=0 end function c72709014.spcost(e,tp,eg,ep,ev,re,r,rp,chk) local ec=e:GetHandler():GetEquipTarget() if chk==0 then return ec:IsReleasable() end e:SetLabel(ec:GetCode()) Duel.Release(ec,REASON_COST) end function c72709014.spfilter(c,e,tp,code) return ((code==81383947 and c:IsCode(75917088)) or (code==46128076 and c:IsCode(2316186))) and c:IsCanBeSpecialSummoned(e,0,tp,true,false) end function c72709014.sptg(e,tp,eg,ep,ev,re,r,rp,chk) if chk==0 then return Duel.GetLocationCount(tp,LOCATION_MZONE)>-1 and Duel.IsExistingMatchingCard(c72709014.spfilter,tp,LOCATION_HAND+LOCATION_DECK,0,1,nil,e,tp,e:GetHandler():GetEquipTarget():GetCode()) end Duel.SetOperationInfo(0,CATEGORY_SPECIAL_SUMMON,nil,1,tp,LOCATION_HAND+LOCATION_DECK) end function c72709014.spop(e,tp,eg,ep,ev,re,r,rp) if Duel.GetLocationCount(tp,LOCATION_MZONE)<=0 then return end Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_SPSUMMON) local g=Duel.SelectMatchingCard(tp,c72709014.spfilter,tp,LOCATION_HAND+LOCATION_DECK,0,1,1,nil,e,tp,e:GetLabel()) if g:GetCount()~=0 then Duel.SpecialSummon(g,0,tp,tp,true,false,POS_FACEUP) g:GetFirst():CompleteProcedure() end end