再调整堆积模式:

三个难度都用100高度场地
第二个难度四/五连块2包:1包混合
第三个难度纯五连块
This commit is contained in:
MrZ626
2021-08-18 03:21:28 +08:00
parent addc68b5f1
commit 58881f8ef5
12 changed files with 43 additions and 43 deletions

View File

@@ -1,7 +1,7 @@
local function getHoleCount(P)
local hole=0
for x=1,10 do
for y=1,20 do
for y=1,100 do
if not P:solid(x,y)then
hole=hole+1
end
@@ -13,13 +13,13 @@ return{
color=COLOR.cyan,
env={
drop=60,lock=60,
freshLimit=15,
fieldH=20,
fieldH=100,
highCam=true,
fillClear=false,
seqData={1,2,3,4,5,6,7},
bg='blockrain',bgm='there',
},
mesDisp=function(P)PLY.draw.drawTargetLine(P,100)end,
score=function(P)return{getHoleCount(P),P.stat.time}end,
scoreDisp=function(D)return D[1].." Holes".." "..STRING.time(D[2])end,
comp=function(a,b)return a[1]<b[1]or a[1]==b[1]and a[2]<b[2]end,

View File

@@ -1,7 +1,7 @@
local function getHoleCount(P)
local hole=0
for x=1,10 do
for y=1,39 do
for y=1,98 do
if not P:solid(x,y)then
hole=hole+1
end
@@ -10,16 +10,16 @@ local function getHoleCount(P)
return hole
end
return{
color=COLOR.cyan,
color=COLOR.magenta,
env={
drop=60,lock=90,
freshLimit=15,
fieldH=40,
drop=60,lock=60,
fieldH=100,
highCam=true,
fillClear=false,
seqData={1,2,3,4,5,6,7,1,2,3,4,5,6,7,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25},
seqData={1,2,3,4,5,6,7,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25},
bg='blockrain',bgm='there',
},
mesDisp=function(P)PLY.draw.drawTargetLine(P,98)end,
score=function(P)return{getHoleCount(P),P.stat.time}end,
scoreDisp=function(D)return D[1].." Holes".." "..STRING.time(D[2])end,
comp=function(a,b)return a[1]<b[1]or a[1]==b[1]and a[2]<b[2]end,
@@ -27,9 +27,9 @@ return{
local H=getHoleCount(P)
return
H==0 and 5 or
H<=1 and 4 or
H<=3 and 3 or
H<=6 and 2 or
H<=2 and 4 or
H<=4 and 3 or
H<=7 and 2 or
H<=10 and 1 or
H<=20 and 0
end,

View File

@@ -1,7 +1,7 @@
local function getHoleCount(P)
local hole=0
for x=1,10 do
for y=1,98 do
for y=1,97 do
if not P:solid(x,y)then
hole=hole+1
end
@@ -10,16 +10,16 @@ local function getHoleCount(P)
return hole
end
return{
color=COLOR.cyan,
color=COLOR.yellow,
env={
drop=60,lock=120,
freshLimit=15,
drop=60,lock=60,
fieldH=100,
highCam=true,
fillClear=false,
seqData={1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25},
seqData={8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25},
bg='blockrain',bgm='there',
},
mesDisp=function(P)PLY.draw.drawTargetLine(P,97)end,
score=function(P)return{getHoleCount(P),P.stat.time}end,
scoreDisp=function(D)return D[1].." Holes".." "..STRING.time(D[2])end,
comp=function(a,b)return a[1]<b[1]or a[1]==b[1]and a[2]<b[2]end,