Commit f9cae4d8 authored by 未闻皂名's avatar 未闻皂名

2023/1/27 新增:传说之原蛋,更新翻译,修正翻开卡组的bug

parent a07e8819
Pipeline #19805 passed with stages
in 5 minutes and 13 seconds
No preview for this file type
No preview for this file type
......@@ -280,7 +280,7 @@ function RushDuel.RevealDeckTopAndSelect(player, count, hint, filter, min, max)
local g = Duel.GetDecktopGroup(player, count)
if g:GetCount() > 0 then
Duel.Hint(HINT_SELECTMSG, player, hint)
local sg = g:FilterSelect(player, filter, 1, 1, nil)
local sg = g:FilterSelect(player, filter, min, max, nil)
g:Sub(sg)
return sg, g
else
......@@ -288,13 +288,13 @@ function RushDuel.RevealDeckTopAndSelect(player, count, hint, filter, min, max)
end
end
-- 操作: 翻开卡组并可以选择卡
function RushDuel.RevealDeckTopAndCanSelect(player, count, desc, hint, filter, min, max)
function RushDuel.RevealDeckTopAndCanSelect(player, count, desc, hint, filter, min, max, ...)
Duel.ConfirmDecktop(player, count)
local g = Duel.GetDecktopGroup(player, count)
if g:GetCount() > 0 then
if g:IsExists(filter, 1, nil) and Duel.SelectYesNo(player, desc) then
if g:IsExists(filter, min, nil, ...) and Duel.SelectYesNo(player, desc) then
Duel.Hint(HINT_SELECTMSG, player, hint)
local sg = g:FilterSelect(player, filter, 1, 1, nil)
local sg = g:FilterSelect(player, filter, min, max, nil, ...)
g:Sub(sg)
return sg, g
else
......
local m=120170000
local cm=_G["c"..m]
cm.name="破坏剑士"
cm.name="破坏剑士"
function cm.initial_effect(c)
--Atk Up
local e1=Effect.CreateEffect(c)
......
......@@ -15,7 +15,8 @@ function cm.initial_effect(c)
end
--Special Summon
function cm.spfilter(c,e,tp)
return c:IsLevel(5) and c:IsRace(RACE_MACHINE) and RD.IsCanBeSpecialSummoned(c,e,tp,POS_FACEUP)
return c:IsLevel(5) and c:IsRace(RACE_MACHINE)
and Duel.GetMZoneCount(tp)>0 and RD.IsCanBeSpecialSummoned(c,e,tp,POS_FACEUP)
end
function cm.condition(e,tp,eg,ep,ev,re,r,rp)
return Duel.GetFieldGroupCount(tp,LOCATION_MZONE,0)<=1
......@@ -25,18 +26,13 @@ function cm.target(e,tp,eg,ep,ev,re,r,rp,chk)
end
function cm.operation(e,tp,eg,ep,ev,re,r,rp)
if Duel.GetFieldGroupCount(tp,LOCATION_DECK,0)<3 then return end
Duel.ConfirmDecktop(tp,3)
local g=Duel.GetDecktopGroup(tp,3)
if g:GetCount()>0 then
if Duel.GetMZoneCount(tp)>0 and g:IsExists(cm.spfilter,1,nil,e,tp)
and Duel.SelectYesNo(tp,aux.Stringid(m,1)) then
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_SPSUMMON)
local sg=g:FilterSelect(tp,cm.spfilter,1,1,nil,e,tp)
g:Sub(sg)
Duel.DisableShuffleCheck()
Duel.SpecialSummon(sg,0,tp,tp,false,false,POS_FACEUP)
end
local ct=g:GetCount()
local sg,g=RD.RevealDeckTopAndCanSelect(tp,3,aux.Stringid(m,1),HINTMSG_SPSUMMON,cm.spfilter,1,1,e,tp)
if sg:GetCount()>0 then
Duel.DisableShuffleCheck()
Duel.SpecialSummon(sg,0,tp,tp,false,false,POS_FACEUP)
end
local ct=g:GetCount()
if ct>0 then
Duel.SortDecktop(tp,tp,ct)
RD.SendDeckTopToBottom(tp,ct)
end
......
local m=120238007
local list={120170000}
local cm=_G["c"..m]
cm.name="传说之战士-破坏之剑士"
cm.name="传说的战士-破坏剑士"
function cm.initial_effect(c)
--Change Code
aux.EnableChangeCode(c,list[1],LOCATION_GRAVE)
......
local m=120238013
local cm=_G["c"..m]
cm.name="传说之原蛋"
function cm.initial_effect(c)
--Special Summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(m,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCondition(cm.condition)
e1:SetTarget(cm.target)
e1:SetOperation(cm.operation)
c:RegisterEffect(e1)
end
--Special Summon
function cm.spfilter(c,e,tp)
return RD.IsLegend(c) and c:IsType(TYPE_NORMAL) and c:IsRace(RACE_DRAGON)
and Duel.GetMZoneCount(tp)>0 and RD.IsCanBeSpecialSummoned(c,e,tp,POS_FACEUP)
end
function cm.condition(e,tp,eg,ep,ev,re,r,rp)
return RD.IsSummonTurn(e:GetHandler())
end
function cm.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.GetFieldGroupCount(tp,LOCATION_DECK,0)>3 end
end
function cm.operation(e,tp,eg,ep,ev,re,r,rp)
if Duel.GetFieldGroupCount(tp,LOCATION_DECK,0)<4 then return end
local sg,g=RD.RevealDeckTopAndCanSelect(tp,4,aux.Stringid(m,1),HINTMSG_SPSUMMON,cm.spfilter,1,1,e,tp)
if sg:GetCount()>0 then
Duel.SpecialSummon(sg,0,tp,tp,false,false,POS_FACEUP)
end
Duel.ShuffleDeck(tp)
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