Nes tetris has a system where your level will determine your score and the speed of the game
The scoring increases linearly with your level:
Code:
Level Frames per Gridcell
00 48
01 43
02 38
03 33
04 28
05 23
06 18
07 13
08 8
09 6
10–12 5
13–15 4
16–18 3
19–28 2
29+ 1
Code:
Level single double triple tetris
0 40 100 300 1200
1 80 200 600 2400
2 120 300 900 3600
9 400 1000 3000 12000
n 40(n+1) 100(n+1) 300(n+1) 1200(n+1)