--VOICEROID 俊子 if not pcall(function() require("expansions/script/c33700784") end) then require("script/c33700784") end local m=33700787 local cm=_G["c"..m] function cm.initial_effect(c) rsvo.LPLinkFunction(c) --rec local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(m,1)) e1:SetCategory(CATEGORY_RECOVER+CATEGORY_REMOVE) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_SPSUMMON_SUCCESS) e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DELAY) e1:SetTarget(cm.rectg) e1:SetCondition(cm.reccon) e1:SetOperation(cm.recop) c:RegisterEffect(e1) --damage local e3=Effect.CreateEffect(c) e3:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS) e3:SetRange(LOCATION_MZONE) e3:SetCode(EVENT_RECOVER) e3:SetCondition(cm.damcon) e3:SetOperation(cm.damop) c:RegisterEffect(e3) end function cm.damcon(e,tp,eg,ep,ev,re,r,rp) local g=e:GetHandler():GetMutualLinkedGroup() return g:IsExists(Card.IsCode,1,nil,m-1) end function cm.damop(e,tp,eg,ep,ev,re,r,rp) Duel.Hint(HINT_CARD,0,m) Duel.Damage(1-tp,ev/2,REASON_EFFECT) end function cm.filter(c) return c:GetDefense()>0 and c:IsAbleToRemove() end function cm.rectg(e,tp,eg,ep,ev,re,r,rp,chk,chkc) if chkc then return chkc:IsLocation(LOCATION_GRAVE) and chkc:IsControler(tp) and cm.filter(chkc) end if chk==0 then return Duel.IsExistingTarget(cm.filter,tp,LOCATION_GRAVE,0,1,nil) end Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_REMOVE) local g=Duel.SelectTarget(tp,cm.filter,tp,LOCATION_GRAVE,0,1,1,nil) Duel.SetOperationInfo(0,CATEGORY_REMOVE,g,1,0,0) Duel.SetOperationInfo(0,CATEGORY_RECOVER,nil,0,tp,g:GetFirst():GetDefense()) end function cm.recop(e,tp,eg,ep,ev,re,r,rp) local tc=Duel.GetFirstTarget() if tc:IsRelateToEffect(e) and Duel.Remove(tc,POS_FACEUP,REASON_EFFECT)>0 then Duel.Recover(tp,tc:GetDefense(),REASON_EFFECT) end end function cm.reccon(e,tp,eg,ep,ev,re,r,rp) local c=e:GetHandler() return c:IsSummonType(SUMMON_TYPE_LINK) end