local function getHoleCount(P) local hole=0 for x=1,10 do for y=1,98 do if not P:solid(x,y)then hole=hole+1 end end end return hole end return{ color=COLOR.magenta, env={ 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,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]