-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scoring #15
Comments
Scoring for Puyo Puyo is documented well at PuyoNexus. The score per chain depends on a few different factors:
The formula is: Score = (10 * puyosCleared) * (chainPower + colorBonus + groupBonus) Since the terminology between Oypu and PuyoNexus is different (chain in Oypu refers to a group of 4 or more pieces of the same type that are connected while I think PuyoNexus uses chain to refer to the layers of pieces being destroyed before the next piece starts), here's some more details. Score = (10 * totalPiecesClearedInLayer) * (chainPower * colorBonus * groupBonus) chainPower =
(Increases by 32 after the 3rd chain) colorBonus =
groupBonus =
|
Scoring wasn't fully implemented, so I'm leaving this open. |
A scoring system should be implemented to keep track of how the player is doing. This will additionally be useful when determining how to send "garbage" over the other players in multiplayer.
Scoring should be similar to Puyo Puyo, where continuous layers of chains are given higher rewards than a single layer.
Additional details will need to be researched.
The text was updated successfully, but these errors were encountered: