MennoScholten / RTS2_20220524

1 stars 1 forks source link

Add scoreboard score calculation #8

Closed martinreinok closed 1 year ago

martinreinok commented 1 year ago

This could be fun if it was score which is a function of time, so when player(s) is(are) able to multitask and place Tetrominos very fast, they can get a multiplier.

Other than that, basic tetris score; single line double line triple line quadruple line

MennoScholten commented 1 year ago

Implemented a solution sort of similar to original tetris. By taking a shortcut and using the equation prevScore + 6^amountoflinescleared it will create a score which is similar to the original function in the sense that the score is increasing a lot when a lot of lines are cleared at once.