--虚毒概念 唯物主义 if not pcall(function() require("expansions/script/c33700701") end) then require("script/c33700701") end local m=33700712 local cm=_G["c"..m] function cm.initial_effect(c) rsve.FusionMaterialFunction(c,5) local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(m,0)) e1:SetCategory(CATEGORY_TOEXTRA+CATEGORY_DRAW) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_TO_GRAVE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DELAY) e1:SetTarget(cm.drtg) e1:SetOperation(cm.drop) c:RegisterEffect(e1) --draw local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(m,0)) e2:SetCategory(CATEGORY_DRAW) e2:SetType(EFFECT_TYPE_IGNITION) e2:SetRange(LOCATION_SZONE) e2:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e2:SetCondition(cm.drcon2) e2:SetCountLimit(1) e2:SetCost(cm.drcost2) e2:SetTarget(cm.drtg2) e2:SetOperation(cm.drop2) c:RegisterEffect(e2) -- local e3=Effect.CreateEffect(c) e3:SetDescription(aux.Stringid(m,0)) e3:SetCategory(CATEGORY_DRAW) e3:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_F) e3:SetCode(EVENT_ATTACK_ANNOUNCE) e3:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e3:SetRange(LOCATION_SZONE) e3:SetCondition(cm.drcon3) e3:SetTarget(cm.drtg2) e3:SetOperation(cm.drop2) c:RegisterEffect(e3) end function cm.drcon3(e) local bc=e:GetHandler():GetEquipTarget() return bc and bc:IsSetCard(0x144b) and Duel.GetAttacker()==bc end function cm.drcon2(e) return e:GetHandler():IsType(TYPE_CONTINUOUS) end function cm.drcost2(e,tp,eg,ep,ev,re,r,rp,chk) if chk==0 then return Duel.IsCanRemoveCounter(tp,1,1,0x144b,2,REASON_COST) end Duel.RemoveCounter(tp,1,1,0x144b,2,REASON_COST) end function cm.drtg2(e,tp,eg,ep,ev,re,r,rp,chk) if chk==0 then return Duel.IsPlayerCanDraw(tp,1) end Duel.SetTargetPlayer(tp) Duel.SetTargetParam(1) Duel.SetOperationInfo(0,CATEGORY_DRAW,nil,0,tp,1) end function cm.drop2(e,tp,eg,ep,ev,re,r,rp) local p,d=Duel.GetChainInfo(0,CHAININFO_TARGET_PLAYER,CHAININFO_TARGET_PARAM) Duel.Draw(p,d,REASON_EFFECT) end function cm.drfilter(c,e) return c:IsSetCard(0x144b) and c:IsType(TYPE_FUSION) and c:IsAbleToExtra() and c:IsCanBeEffectTarget(e) end function cm.drtg(e,tp,eg,ep,ev,re,r,rp,chk,chkc) if chkc then return false end local g=Duel.GetMatchingGroup(cm.drfilter,tp,LOCATION_GRAVE,0,e:GetHandler(),e) if chk==0 then return Duel.IsPlayerCanDraw(tp,1) and g:GetClassCount(Card.GetCode)>1 end local sg=Group.CreateGroup() for i=1,2 do Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_TODECK) local g1=g:Select(tp,1,1,nil) g:Remove(Card.IsCode,nil,g1:GetFirst():GetCode()) sg:Merge(g1) end Duel.SetTargetCard(sg) Duel.SetOperationInfo(0,CATEGORY_TOEXTRA,g,2,0,0) Duel.SetOperationInfo(0,CATEGORY_DRAW,nil,0,tp,1) end function cm.drop(e,tp,eg,ep,ev,re,r,rp) local tg=Duel.GetChainInfo(0,CHAININFO_TARGET_CARDS):Filter(Card.IsRelateToEffect,nil,e) if not tg or tg:GetCount()<=0 or Duel.SendtoDeck(tg,nil,2,REASON_EFFECT)<=0 then return end Duel.Draw(tp,1,REASON_EFFECT) end