Commit 387d2d97 authored by Amiya's avatar Amiya

新卡

parent 5f0f3b08
Pipeline #42394 passed with stages
in 2 minutes and 36 seconds
No preview for this file type
--
local s,id,o=GetID()
function s.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,id+EFFECT_COUNT_CODE_OATH)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
end
function s.dfilter(c)
return c:GetTextAttack()>=0 and c:IsType(TYPE_MONSTER) and c:IsAbleToHand()
end
function s.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(s.dfilter,tp,LOCATION_DECK,0,1,nil) end
end
function s.activate(e,tp,eg,ep,ev,re,r,rp)
if not (Duel.IsExistingMatchingCard(s.dfilter,tp,LOCATION_DECK,0,1,nil)
and Duel.IsExistingMatchingCard(s.dfilter,tp,0,LOCATION_DECK,1,nil)) then
return
end
local res=true
local ct=3
while res and ct>0 do
if ct~=3 then Duel.BreakEffect() end
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_CONFIRM)
local g1=Duel.SelectMatchingCard(tp,s.dfilter,tp,LOCATION_DECK,0,1,1,nil)
local g2=Duel.SelectMatchingCard(1-tp,s.dfilter,tp,0,LOCATION_DECK,1,1,nil)
Duel.ConfirmCards(1-tp,g1)
Duel.ConfirmCards(tp,g2)
local tc1=g1:GetFirst()
local tc2=g2:GetFirst()
local e1=Effect.CreateEffect(e:GetHandler())
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCode(EFFECT_CANNOT_ACTIVATE)
e1:SetTargetRange(1,0)
e1:SetValue(s.aclimit)
e1:SetLabel(tc1:GetCode())
e1:SetReset(RESET_PHASE+PHASE_END)
Duel.RegisterEffect(e1,tp)
local e2=e1:Clone()
e2:SetTargetRange(0,1)
e2:SetLabel(tc2:GetCode())
Duel.RegisterEffect(e2,tp)
if tc1:GetAttack()>tc2:GetAttack() then
Duel.SendtoHand(tc1,nil,REASON_EFFECT)
Duel.ConfirmCards(1-tp,tc1)
Duel.Destroy(tc2,REASON_EFFECT)
Duel.Damage(1-tp,500,REASON_EFFECT)
elseif tc1:GetAttack()<tc2:GetAttack() then
Duel.SendtoHand(tc2,nil,REASON_EFFECT)
Duel.ConfirmCards(tp,tc2)
Duel.Destroy(tc1,REASON_EFFECT)
Duel.Damage(tp,500,REASON_EFFECT)
end
res=(Duel.IsExistingMatchingCard(s.dfilter,tp,LOCATION_DECK,0,1,nil)
and Duel.IsExistingMatchingCard(s.dfilter,tp,0,LOCATION_DECK,1,nil))
ct=ct-1
end
if ct~=3 then
Duel.ShuffleDeck(tp)
Duel.ShuffleDeck(1-tp)
end
end
function s.aclimit(e,re,tp)
return re:GetHandler():IsCode(e:GetLabel()) and re:IsActiveType(TYPE_MONSTER)
end
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment