Commit b3bd0261 authored by nanahira's avatar nanahira

filelist

parent 5cb931a5
--小小的捉弄 --小小的捉弄
function c12005022.initial_effect(c) function c12005022.initial_effect(c)
--Activate --Activate
local e1=Effect.CreateEffect(c) local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING) e1:SetCode(EVENT_CHAINING)
e1:SetCondition(c12005022.condition) e1:SetCondition(c12005022.condition)
e1:SetTarget(c12005022.target) e1:SetTarget(c12005022.target)
e1:SetOperation(c12005022.activate) e1:SetOperation(c12005022.activate)
c:RegisterEffect(e1) c:RegisterEffect(e1)
--asdasdasd --asdasdasd
local e2=Effect.CreateEffect(c) local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(12005022,0)) e2:SetDescription(aux.Stringid(12005022,0))
e2:SetCategory(CATEGORY_TODECK+CATEGORY_DRAW) e2:SetCategory(CATEGORY_TODECK+CATEGORY_DRAW)
e2:SetType(EFFECT_TYPE_IGNITION) e2:SetType(EFFECT_TYPE_IGNITION)
e2:SetProperty(EFFECT_FLAG_CARD_TARGET) e2:SetProperty(EFFECT_FLAG_CARD_TARGET)
e2:SetRange(LOCATION_GRAVE) e2:SetRange(LOCATION_GRAVE)
e2:SetTarget(c12005022.tdtg) e2:SetTarget(c12005022.tdtg)
e2:SetOperation(c12005022.tdop) e2:SetOperation(c12005022.tdop)
c:RegisterEffect(e2) c:RegisterEffect(e2)
end end
function c12005022.spfilter(c,e,tp) function c12005022.spfilter(c,e,tp)
return c:IsSetCard(0xfbb) and c:IsCanBeSpecialSummoned(e,0,tp,false,false) return c:IsSetCard(0xfbb) and c:IsCanBeSpecialSummoned(e,0,tp,false,false)
end end
function c12005022.cfilter(c) function c12005022.cfilter(c)
return c:IsType(TYPE_COUNTER) and c:IsAbleToDeck() return c:IsType(TYPE_COUNTER) and c:IsAbleToDeck()
end end
function c12005022.tdtg(e,tp,eg,ep,ev,re,r,rp,chk,chkc) function c12005022.tdtg(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
local c=e:GetHandler() local c=e:GetHandler()
if chkc then return chkc:IsLocation(LOCATION_GRAVE) and chkc:IsControler(tp) and c12005022.cfilter(chkc) and chkc~=c end if chkc then return chkc:IsLocation(LOCATION_GRAVE) and chkc:IsControler(tp) and c12005022.cfilter(chkc) and chkc~=c end
if chk==0 then return Duel.IsPlayerCanDraw(tp,1) if chk==0 then return Duel.IsPlayerCanDraw(tp,1)
and Duel.IsExistingTarget(c12005022.cfilter,tp,LOCATION_GRAVE,0,2,c) and c:IsAbleToDeck() end and Duel.IsExistingTarget(c12005022.cfilter,tp,LOCATION_GRAVE,0,2,c) and c:IsAbleToDeck() end
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_TODECK) Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_TODECK)
local g=Duel.SelectTarget(tp,c12005022.cfilter,tp,LOCATION_GRAVE,0,2,2,c) local g=Duel.SelectTarget(tp,c12005022.cfilter,tp,LOCATION_GRAVE,0,2,2,c)
local rg=g:Clone() local rg=g:Clone()
rg:AddCard(c) rg:AddCard(c)
Duel.SetOperationInfo(0,CATEGORY_TODECK,rg,rg:GetCount(),0,0) Duel.SetOperationInfo(0,CATEGORY_TODECK,rg,rg:GetCount(),0,0)
Duel.SetOperationInfo(0,CATEGORY_DRAW,nil,0,tp,1) Duel.SetOperationInfo(0,CATEGORY_DRAW,nil,0,tp,1)
end end
function c12005022.tdop(e,tp,eg,ep,ev,re,r,rp) function c12005022.tdop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler() local c=e:GetHandler()
if not c:IsAbleToDeck() or not c:IsRelateToEffect(e) then return end if not c:IsAbleToDeck() or not c:IsRelateToEffect(e) then return end
local tg=Duel.GetChainInfo(0,CHAININFO_TARGET_CARDS) local tg=Duel.GetChainInfo(0,CHAININFO_TARGET_CARDS)
local sg=tg:Filter(Card.IsRelateToEffect,nil,e) local sg=tg:Filter(Card.IsRelateToEffect,nil,e)
sg:AddCard(c) sg:AddCard(c)
if Duel.SendtoDeck(sg,nil,2,REASON_EFFECT)>1 then if Duel.SendtoDeck(sg,nil,2,REASON_EFFECT)>1 then
local og=Duel.GetOperatedGroup() local og=Duel.GetOperatedGroup()
if og:IsExists(Card.IsLocation,1,nil,LOCATION_DECK) then if og:IsExists(Card.IsLocation,1,nil,LOCATION_DECK) then
Duel.ShuffleDeck(tp) Duel.ShuffleDeck(tp)
end end
Duel.Draw(tp,1,REASON_EFFECT) Duel.Draw(tp,1,REASON_EFFECT)
end end
end end
function c12005022.condition(e,tp,eg,ep,ev,re,r,rp) function c12005022.condition(e,tp,eg,ep,ev,re,r,rp)
if re:IsHasCategory(CATEGORY_DRAW+CATEGORY_TOHAND) then return Duel.IsPlayerCanDraw(tp,1) end if re:IsHasCategory(CATEGORY_DRAW+CATEGORY_TOHAND) then return Duel.IsPlayerCanDraw(tp,1) end
if re:IsHasCategory(CATEGORY_DISABLE+CATEGORY_NEGATE+CATEGORY_DISABLE_SUMMON) then return Duel.IsChainNegatable(ev) end if re:IsHasCategory(CATEGORY_DISABLE+CATEGORY_NEGATE+CATEGORY_DISABLE_SUMMON) then return Duel.IsChainNegatable(ev) end
return true return true
end end
function c12005022.target(e,tp,eg,ep,ev,re,r,rp,chk) function c12005022.target(e,tp,eg,ep,ev,re,r,rp,chk)
local c=e:GetHandler() local c=e:GetHandler()
if chk==0 then return true end if chk==0 then return true end
Duel.SetTargetPlayer(1-tp) Duel.SetTargetPlayer(1-tp)
Duel.SetTargetParam(100) Duel.SetTargetParam(100)
Duel.SetOperationInfo(0,CATEGORY_DAMAGE,nil,0,1-tp,100) Duel.SetOperationInfo(0,CATEGORY_DAMAGE,nil,0,1-tp,100)
local ex=Duel.GetOperationInfo(ev,CATEGORY_REMOVE) local ex=Duel.GetOperationInfo(ev,CATEGORY_REMOVE)
if re:IsHasCategory(CATEGORY_SPECIAL_SUMMON) then if re:IsHasCategory(CATEGORY_SPECIAL_SUMMON) then
e:SetCategory(CATEGORY_SPECIAL_SUMMON) e:SetCategory(CATEGORY_SPECIAL_SUMMON)
Duel.SetOperationInfo(0,CATEGORY_SPECIAL_SUMMON,nil,1,tp,LOCATION_HAND) Duel.SetOperationInfo(0,CATEGORY_SPECIAL_SUMMON,nil,1,tp,LOCATION_HAND)
Duel.SetOperationInfo(0,CATEGORY_TODECK,c,1,0,0) Duel.SetOperationInfo(0,CATEGORY_TODECK,c,1,0,0)
end end
if re:IsHasCategory(CATEGORY_DRAW+CATEGORY_TOHAND) then if re:IsHasCategory(CATEGORY_DRAW+CATEGORY_TOHAND) then
e:SetCategory(CATEGORY_DRAW) e:SetCategory(CATEGORY_DRAW)
Duel.SetOperationInfo(0,CATEGORY_DRAW,nil,0,tp,1) Duel.SetOperationInfo(0,CATEGORY_DRAW,nil,0,tp,1)
end end
if re:IsHasCategory(CATEGORY_DESTROY+CATEGORY_REMOVE) or ex then if re:IsHasCategory(CATEGORY_DESTROY+CATEGORY_REMOVE) or ex then
e:SetCategory(CATEGORY_DESTROY) e:SetCategory(CATEGORY_DESTROY)
Duel.SetOperationInfo(0,CATEGORY_TOGRAVE,nil,1,0,LOCATION_ONFIELD) Duel.SetOperationInfo(0,CATEGORY_TOGRAVE,nil,1,0,LOCATION_ONFIELD)
end end
if re:IsHasCategory(CATEGORY_DISABLE+CATEGORY_NEGATE+CATEGORY_DISABLE_SUMMON) then if re:IsHasCategory(CATEGORY_DISABLE+CATEGORY_NEGATE+CATEGORY_DISABLE_SUMMON) then
e:SetCategory(CATEGORY_DISABLE+CATEGORY_NEGATE+CATEGORY_DISABLE_SUMMON) e:SetCategory(CATEGORY_DISABLE+CATEGORY_NEGATE+CATEGORY_DISABLE_SUMMON)
Duel.SetOperationInfo(0,CATEGORY_NEGATE,eg,1,0,0) Duel.SetOperationInfo(0,CATEGORY_NEGATE,eg,1,0,0)
end end
end end
function c12005022.activate(e,tp,eg,ep,ev,re,r,rp) function c12005022.activate(e,tp,eg,ep,ev,re,r,rp)
local c,rc=e:GetHandler(),re:GetHandler() local c,rc=e:GetHandler(),re:GetHandler()
if Duel.Damage(1-tp,100,REASON_EFFECT)<=0 then return end if Duel.Damage(1-tp,100,REASON_EFFECT)<=0 then return end
local b1=c:IsAbleToDeck() and Duel.IsExistingMatchingCard(c12005022.spfilter,tp,LOCATION_HAND,0,1,nil,e,tp) and re:IsHasCategory(CATEGORY_SPECIAL_SUMMON) local b1=c:IsAbleToDeck() and Duel.IsExistingMatchingCard(c12005022.spfilter,tp,LOCATION_HAND,0,1,nil,e,tp) and re:IsHasCategory(CATEGORY_SPECIAL_SUMMON)
local b2=re:IsHasCategory(CATEGORY_DRAW+CATEGORY_TOHAND) local b2=re:IsHasCategory(CATEGORY_DRAW+CATEGORY_TOHAND)
local b3=(re:IsHasCategory(CATEGORY_DESTROY+CATEGORY_REMOVE) or ex) and Duel.IsExistingMatchingCard(Card.IsAbleToGrave,tp,LOCATION_ONFIELD,LOCATION_ONFIELD,1,nil) local b3=(re:IsHasCategory(CATEGORY_DESTROY+CATEGORY_REMOVE) or ex) and Duel.IsExistingMatchingCard(Card.IsAbleToGrave,tp,LOCATION_ONFIELD,LOCATION_ONFIELD,1,nil)
local b4=re:IsHasCategory(CATEGORY_DISABLE+CATEGORY_NEGATE+CATEGORY_DISABLE_SUMMON) local b4=re:IsHasCategory(CATEGORY_DISABLE+CATEGORY_NEGATE+CATEGORY_DISABLE_SUMMON)
if not (b1 or b2 or b3 or b4) then return end if not (b1 or b2 or b3 or b4) then return end
Duel.BreakEffect() Duel.BreakEffect()
if b1 and Duel.SelectYesNo(tp,aux.Stringid(12005022,1)) then if b1 and Duel.SelectYesNo(tp,aux.Stringid(12005022,1)) then
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_SPSUMMON) Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_SPSUMMON)
local sg=Duel.SelectMatchingCard(tp,c12005022.spfilter,tp,LOCATION_HAND,0,1,1,nil,e,tp) local sg=Duel.SelectMatchingCard(tp,c12005022.spfilter,tp,LOCATION_HAND,0,1,1,nil,e,tp)
if Duel.SpecialSummon(sg,0,tp,tp,false,false)~=0 and c:IsRelateToEffect(e) then if Duel.SpecialSummon(sg,0,tp,tp,false,false)~=0 and c:IsRelateToEffect(e) then
c:CancelToGrave(true) c:CancelToGrave(true)
Duel.SendtoDeck(c,nil,0,REASON_EFFECT) Duel.SendtoDeck(c,nil,0,REASON_EFFECT)
end end
end end
if b2 then if b2 then
Duel.Draw(tp,1,REASON_EFFECT) Duel.Draw(tp,1,REASON_EFFECT)
end end
if b3 and Duel.SelectYesNo(tp,aux.Stringid(12005022,3)) then if b3 and Duel.SelectYesNo(tp,aux.Stringid(12005022,3)) then
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_TOGRAVE) Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_TOGRAVE)
local tg=Duel.SelectMatchingCard(tp,Card.IsAbleToGrave,tp,LOCATION_ONFIELD,LOCATION_ONFIELD,1,1,nil) local tg=Duel.SelectMatchingCard(tp,Card.IsAbleToGrave,tp,LOCATION_ONFIELD,LOCATION_ONFIELD,1,1,nil)
Duel.HintSelection(tg) Duel.HintSelection(tg)
Duel.SendtoGrave(tg,REASON_EFFECT) Duel.SendtoGrave(tg,REASON_EFFECT)
end end
if b4 then if b4 then
Duel.NegateActivation(ev) Duel.NegateActivation(ev)
end end
end end
\ No newline at end of file
...@@ -8,7 +8,7 @@ deck/2019.6.8_new_card5.ydk 3552c713927f7c4e38e0c883210d63bd ...@@ -8,7 +8,7 @@ deck/2019.6.8_new_card5.ydk 3552c713927f7c4e38e0c883210d63bd
deck/2019.6.8_new_card6.ydk cb6d0fa9ffd37fa9be52ba48b41b0992 deck/2019.6.8_new_card6.ydk cb6d0fa9ffd37fa9be52ba48b41b0992
deck/2019.6.8_new_card7.ydk 5511a5f23236c723140693cf3cd0cf01 deck/2019.6.8_new_card7.ydk 5511a5f23236c723140693cf3cd0cf01
expansions/222DIY.cdb 132556413be916987b6c265036b2ef7f expansions/222DIY.cdb 132556413be916987b6c265036b2ef7f
expansions/lflist.conf c22ed3227318837fb8346f6e4f080a54 expansions/lflist.conf d1f6021f145c7983145756d021a11798
expansions/strings.conf ffdc5173327cd91803c7345f5d1c62fc expansions/strings.conf ffdc5173327cd91803c7345f5d1c62fc
expansions/pics/08209710.jpg ed0e60085631bfa641ffeebd6abbd910 expansions/pics/08209710.jpg ed0e60085631bfa641ffeebd6abbd910
expansions/pics/1000360.jpg d1aa6f44fcd413402141a6bf4b886c2a expansions/pics/1000360.jpg d1aa6f44fcd413402141a6bf4b886c2a
...@@ -7741,7 +7741,7 @@ expansions/script/c10173099.lua c9327d2a4a66dc2349660ffbd72c8347 ...@@ -7741,7 +7741,7 @@ expansions/script/c10173099.lua c9327d2a4a66dc2349660ffbd72c8347
expansions/script/c10174001.lua 51ad99b5e0111f355fbfc3ade8f464bf expansions/script/c10174001.lua 51ad99b5e0111f355fbfc3ade8f464bf
expansions/script/c10174002.lua febf82914b30e763e2fea2c928d5bdbf expansions/script/c10174002.lua febf82914b30e763e2fea2c928d5bdbf
expansions/script/c10174004.lua b8364801cfe9d9c2a452c85c0ede8ae9 expansions/script/c10174004.lua b8364801cfe9d9c2a452c85c0ede8ae9
expansions/script/c10199990.lua b081579811ce0302bc751a4ca2d6c456 expansions/script/c10199990.lua f29798144dc14e9c83d457ec4fb6a69b
expansions/script/c107898100.lua 1510da323415386487f514596753a1e5 expansions/script/c107898100.lua 1510da323415386487f514596753a1e5
expansions/script/c107898101.lua dfd427de6a8571227e5778865cf9f482 expansions/script/c107898101.lua dfd427de6a8571227e5778865cf9f482
expansions/script/c107898102.lua 0171c0acd6f6bb1b82197c1744e3a7c9 expansions/script/c107898102.lua 0171c0acd6f6bb1b82197c1744e3a7c9
...@@ -8286,7 +8286,7 @@ expansions/script/c12005015.lua 0588d7883750dab11dbb7f0ce79febfc ...@@ -8286,7 +8286,7 @@ expansions/script/c12005015.lua 0588d7883750dab11dbb7f0ce79febfc
expansions/script/c12005016.lua 925e1c67d9937b963012deb8c457b01c expansions/script/c12005016.lua 925e1c67d9937b963012deb8c457b01c
expansions/script/c12005020.lua 2b8a11f9ad4079c3233af7e16e9e6a02 expansions/script/c12005020.lua 2b8a11f9ad4079c3233af7e16e9e6a02
expansions/script/c12005021.lua 0e61d2e049f04c3a42a5b29f3606e6fb expansions/script/c12005021.lua 0e61d2e049f04c3a42a5b29f3606e6fb
expansions/script/c12005022.lua 3d9f22f9630289f17cea523d47f48866 expansions/script/c12005022.lua 40fea33411a0e1fcec42c8e21b48005b
expansions/script/c12006001.lua 4ebfcfeec6625bf6c760cbf3ee767917 expansions/script/c12006001.lua 4ebfcfeec6625bf6c760cbf3ee767917
expansions/script/c12006002.lua 57b987f100c827b660c3895434729332 expansions/script/c12006002.lua 57b987f100c827b660c3895434729332
expansions/script/c12006004.lua eddcbbed2bf4f34a61eb98cd116e4de7 expansions/script/c12006004.lua eddcbbed2bf4f34a61eb98cd116e4de7
...@@ -8294,7 +8294,7 @@ expansions/script/c12006005.lua 9b2329ea63f8674d2b5458865a3453b9 ...@@ -8294,7 +8294,7 @@ expansions/script/c12006005.lua 9b2329ea63f8674d2b5458865a3453b9
expansions/script/c12006006.lua c194d6b149a351669b7e74f5f948967c expansions/script/c12006006.lua c194d6b149a351669b7e74f5f948967c
expansions/script/c12006008.lua 850f771d383ca55fc335b3077a2b7b67 expansions/script/c12006008.lua 850f771d383ca55fc335b3077a2b7b67
expansions/script/c12006009.lua 09f73dea255756228ee9ea806834127d expansions/script/c12006009.lua 09f73dea255756228ee9ea806834127d
expansions/script/c12006010.lua fe9ab0d4cc6b609b67a8a88261eaec90 expansions/script/c12006010.lua 3eb9d21c2811ff7e150a5b5f89e8ee44
expansions/script/c12006011.lua 76aac3b1716770de582b8f98f26c7bb0 expansions/script/c12006011.lua 76aac3b1716770de582b8f98f26c7bb0
expansions/script/c12006012.lua 5f980b755767be1c5466f71b06ceff3c expansions/script/c12006012.lua 5f980b755767be1c5466f71b06ceff3c
expansions/script/c12006013.lua 7d266f48892e6c1e9e98e125edf5eebd expansions/script/c12006013.lua 7d266f48892e6c1e9e98e125edf5eebd
...@@ -8333,7 +8333,7 @@ expansions/script/c12008014.lua ff5db26d4049bec1920f0f98cb62a076 ...@@ -8333,7 +8333,7 @@ expansions/script/c12008014.lua ff5db26d4049bec1920f0f98cb62a076
expansions/script/c12008015.lua ef614b6f9e906052f41c9e5cdda9b270 expansions/script/c12008015.lua ef614b6f9e906052f41c9e5cdda9b270
expansions/script/c12008016.lua 8cb0f976a476d464cfc5657921f19434 expansions/script/c12008016.lua 8cb0f976a476d464cfc5657921f19434
expansions/script/c12008017.lua 7b53f7c070f5713a60770d30d13979a1 expansions/script/c12008017.lua 7b53f7c070f5713a60770d30d13979a1
expansions/script/c12008018.lua 83deee4706fc9b819328c3f02cdd04a0 expansions/script/c12008018.lua 790916063225723c8f49d29ba47f866a
expansions/script/c12008019.lua 2b498674d518c852ea9e77d6eaf632b1 expansions/script/c12008019.lua 2b498674d518c852ea9e77d6eaf632b1
expansions/script/c12008020.lua 519756088ea49fe34b19cf778615eab5 expansions/script/c12008020.lua 519756088ea49fe34b19cf778615eab5
expansions/script/c12008021.lua d7030b4e369b1af3320e0bafe3bec060 expansions/script/c12008021.lua d7030b4e369b1af3320e0bafe3bec060
...@@ -9126,7 +9126,7 @@ expansions/script/c17061163.lua 2f036b52818d7405393dc68c86039435 ...@@ -9126,7 +9126,7 @@ expansions/script/c17061163.lua 2f036b52818d7405393dc68c86039435
expansions/script/c17061165.lua 8a526d3db8fcf62010ce2dc25cc8440d expansions/script/c17061165.lua 8a526d3db8fcf62010ce2dc25cc8440d
expansions/script/c17061166.lua 8403fc8fd0b2fa8c3c0149526f27a0bc expansions/script/c17061166.lua 8403fc8fd0b2fa8c3c0149526f27a0bc
expansions/script/c17061171.lua 0492e0846e68e53bbd995dfa98ed918d expansions/script/c17061171.lua 0492e0846e68e53bbd995dfa98ed918d
expansions/script/c17061201.lua 7252033d4e1f5ab5d8d34108fdfe9d46 expansions/script/c17061201.lua d5eac5295cc49ae720bcef9756fd40bc
expansions/script/c17082101.lua 483d3fd68b93aaa04160023795db6171 expansions/script/c17082101.lua 483d3fd68b93aaa04160023795db6171
expansions/script/c17082102.lua 711f2d86aa7c2261c9b6bfa3a7b4c588 expansions/script/c17082102.lua 711f2d86aa7c2261c9b6bfa3a7b4c588
expansions/script/c17082104.lua 9478af3e8fec444d9f2020718fbde650 expansions/script/c17082104.lua 9478af3e8fec444d9f2020718fbde650
...@@ -11903,7 +11903,7 @@ expansions/script/c65010009.lua 55430495bf2d215998725dc59505e31e ...@@ -11903,7 +11903,7 @@ expansions/script/c65010009.lua 55430495bf2d215998725dc59505e31e
expansions/script/c65010010.lua 4892db6d2d50e50a22df6f74b32fae37 expansions/script/c65010010.lua 4892db6d2d50e50a22df6f74b32fae37
expansions/script/c65010011.lua c19083336189f486cacbbbd3072533fa expansions/script/c65010011.lua c19083336189f486cacbbbd3072533fa
expansions/script/c65010012.lua 50e98719483744f34634475e404507ca expansions/script/c65010012.lua 50e98719483744f34634475e404507ca
expansions/script/c65010013.lua 3437fa63a665a6a6b293b625a8b7b74a expansions/script/c65010013.lua 6bcf68e661527def0af458bbb6c47551
expansions/script/c65010014.lua 502069cbc73e0336d6e82915f9105f8d expansions/script/c65010014.lua 502069cbc73e0336d6e82915f9105f8d
expansions/script/c65010015.lua 1e7974e83c44a6eac0c87302e939addf expansions/script/c65010015.lua 1e7974e83c44a6eac0c87302e939addf
expansions/script/c65010017.lua 57421d4f6ab0e7928fba3f6efd931ee3 expansions/script/c65010017.lua 57421d4f6ab0e7928fba3f6efd931ee3
...@@ -14619,10 +14619,10 @@ sound/custom/攻击.wav 94506ccac1227331d68f6bf13c098f23 ...@@ -14619,10 +14619,10 @@ sound/custom/攻击.wav 94506ccac1227331d68f6bf13c098f23
sound/custom/灵摆.wav 32bc7ff32036c6aa60c0d3849ac86117 sound/custom/灵摆.wav 32bc7ff32036c6aa60c0d3849ac86117
sound/custom/离场.wav b84ae1ea50b97dca2478cbd94d80f993 sound/custom/离场.wav b84ae1ea50b97dca2478cbd94d80f993
update/delete.txt bcae307f6039207f11b4daa83f17c0ec update/delete.txt bcae307f6039207f11b4daa83f17c0ec
update/filelist.txt 9f76c6194334ef2cb13f8036eca3a930 update/filelist.txt 84c1e233b2ddc74c493267264cccc57f
update/rename.txt c4625b442bf8f5c2e7ce4deb512d4671 update/rename.txt c4625b442bf8f5c2e7ce4deb512d4671
update/update-push.bat 686b01a51bba916202d61d951cd7fe3e update/update-push.bat 686b01a51bba916202d61d951cd7fe3e
update/update-push.sh d018a223f65feef3467b22e252468f53 update/update-push.sh d018a223f65feef3467b22e252468f53
update/update-server.sh 6f1cdc3e06ec58b37b14b5d9d167263c update/update-server.sh 6f1cdc3e06ec58b37b14b5d9d167263c
update/update-without-sound.bat 1c2cfda2a0501642c8bceae026a73d5b update/update-without-sound.bat 1c2cfda2a0501642c8bceae026a73d5b
update/version.txt 4649120e7a06f6486e59fcc6e226785a update/version.txt 0abc91b3c496c65184bdd0bc764ed30f
2019/6/9 12:49:35 2019/6/9 13:34:10
\ No newline at end of file \ 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