模式和语言文件移入parts文件夹

This commit is contained in:
MrZ626
2020-11-16 23:59:35 +08:00
parent a43a34fe10
commit 538960ac04
98 changed files with 14 additions and 14 deletions

19
parts/modes/infinite.lua Normal file
View File

@@ -0,0 +1,19 @@
local format=string.format
return{
color=COLOR.lGrey,
env={
drop=1e99,lock=1e99,
oncehold=false,
bg="glow",bgm="infinite",
},
load=function()
PLY.newPlayer(1,340,15)
end,
mesDisp=function(P)
setFont(45)
mStr(format("%.1f",P.stat.atk),69,260)
mStr(format("%.2f",P.stat.atk/P.stat.row),69,380)
mText(drawableText.atk,69,313)
mText(drawableText.eff,69,433)
end,
}