Skip to content

Commit

Permalink
超音速ti加一个无hold提示/隐藏
Browse files Browse the repository at this point in the history
  • Loading branch information
MrZ626 committed Jul 1, 2024
1 parent e09e101 commit ae26c2e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
11 changes: 11 additions & 0 deletions assets/game/mode/brik/exterior/hypersonic.lua
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,17 @@ return {
return true
end
end,
afterLock=function(P)
if not P.modeData.subMode then return end
if P.modeData.subMode~='titanium' then return true end
if P.modeData.point>=200 then
if #P.holdQueue==0 then
table.insert(P.holdQueue,P:getBrik('I5'))
PROGRESS.setSecret('exterior_hypersonic_titanium_holdless')
end
return true
end
end,
gameOver=function(P,reason)
if reason=='AC' then
PROGRESS.setExteriorScore('hypersonic',P.modeData.subMode,(PROGRESS.getExteriorModeState('hypersonic')[P.modeData.subMode] or 0)+1)
Expand Down
1 change: 1 addition & 0 deletions assets/language/lang_en.lua
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ local L={
exterior_sprint_SZOpen="Really want to start with SZO?",
exterior_tspin_10TSS="What's this?",
exterior_tspin_10TST="EZ.",
exterior_hypersonic_titanium_holdless="You can hold",
interior_console="What's this?",
musicroom_recollection="Recollection is not a song",
},
Expand Down
1 change: 1 addition & 0 deletions assets/language/lang_zh.lua
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ local L={
exterior_sprint_SZOpen="真的要用SZO开局吗",
exterior_tspin_10TSS="这是什么?",
exterior_tspin_10TST="轻松。",
exterior_hypersonic_titanium_holdless="你可以暂存的",
interior_console="这是什么?",
musicroom_recollection="Recollection不是一首曲子",
},
Expand Down

0 comments on commit ae26c2e

Please sign in to comment.