攻略
Combo
考据
好物分享
卡图故事
支缓
盘点整理
Duel Links
--レプティレス・エキドゥーナ function c8602351.initial_effect(c) --link summon c:EnableReviveLimit() aux.AddLinkProcedure(c,nil,2,2,c8602351.lcheck) --atk local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(8602351,0)) e1:SetCategory(CATEGORY_ATKCHANGE) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_SPSUMMON_SUCCESS) e1:SetProperty(EFFECT_FLAG_DELAY+EFFECT_FLAG_CARD_TARGET) e1:SetCountLimit(1,8602351) e1:SetCondition(c8602351.atkcon) e1:SetTarget(c8602351.atktg) e1:SetOperation(c8602351.atkop) c:RegisterEffect(e1) --search local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(8602351,1)) e2:SetCategory(CATEGORY_SEARCH+CATEGORY_TOHAND) e2:SetType(EFFECT_TYPE_IGNITION) e2:SetRange(LOCATION_MZONE) e2:SetCountLimit(1,8602352) e2:SetTarget(c8602351.thtg) e2:SetOperation(c8602351.thop) c:RegisterEffect(e2) end function c8602351.lcheck(g,lc) return g:IsExists(Card.IsLinkRace,1,nil,RACE_REPTILE) end function c8602351.atkcon(e,tp,eg,ep,ev,re,r,rp) return e:GetHandler():IsSummonType(SUMMON_TYPE_LINK) end function c8602351.atktg(e,tp,eg,ep,ev,re,r,rp,chk,chkc) if chkc then return chkc:IsLocation(LOCATION_MZONE) and chkc:IsControler(1-tp) and aux.nzatk(chkc) end if chk==0 then return Duel.IsExistingTarget(aux.nzatk,tp,0,LOCATION_MZONE,1,nil) end Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_FACEUP) Duel.SelectTarget(tp,aux.nzatk,tp,0,LOCATION_MZONE,1,1,nil) end function c8602351.atkop(e,tp,eg,ep,ev,re,r,rp) local tc=Duel.GetFirstTarget() if tc:IsRelateToEffect(e) and tc:IsFaceup() then local e1=Effect.CreateEffect(e:GetHandler()) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_SET_ATTACK_FINAL) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE) e1:SetValue(0) e1:SetReset(RESET_EVENT+RESETS_STANDARD) tc:RegisterEffect(e1) end end function c8602351.cfilter(c) return c:IsFaceup() and c:IsAttack(0) end function c8602351.thfilter(c) return c:IsRace(RACE_REPTILE) and c:IsAbleToHand() end function c8602351.thtg(e,tp,eg,ep,ev,re,r,rp,chk) local ct=Duel.GetMatchingGroupCount(c8602351.cfilter,tp,0,LOCATION_MZONE,nil) local g=Duel.GetMatchingGroup(c8602351.thfilter,tp,LOCATION_DECK,0,nil) if chk==0 then return ct>0 and g:GetCount()>0 end Duel.SetOperationInfo(0,CATEGORY_TOHAND,nil,1,tp,LOCATION_DECK) end function c8602351.thop(e,tp,eg,ep,ev,re,r,rp) local ct=Duel.GetMatchingGroupCount(c8602351.cfilter,tp,0,LOCATION_MZONE,nil) local g=Duel.GetMatchingGroup(c8602351.thfilter,tp,LOCATION_DECK,0,nil) if ct>0 and g:GetCount()>0 then Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_ATOHAND) local sg=g:SelectSubGroup(tp,aux.dncheck,false,1,ct) if sg:GetCount()>0 then Duel.SendtoHand(sg,nil,REASON_EFFECT) Duel.ConfirmCards(1-tp,sg) end end local e1=Effect.CreateEffect(e:GetHandler()) e1:SetType(EFFECT_TYPE_FIELD) e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e1:SetCode(EFFECT_CANNOT_SPECIAL_SUMMON) e1:SetTargetRange(1,0) e1:SetTarget(c8602351.splimit) e1:SetReset(RESET_PHASE+PHASE_END) Duel.RegisterEffect(e1,tp) end function c8602351.splimit(e,c) return not c:IsRace(RACE_REPTILE) and c:IsLocation(LOCATION_EXTRA) end