Loreinator / Shuffle-Move

Program to help choose moves in the Pokemon Shuffle puzzle game
GNU General Public License v3.0
95 stars 18 forks source link

Replace HP with Score #22

Closed kpwbo closed 9 years ago

kpwbo commented 9 years ago

I think the HP counter should be replaced with a Score counter. The two are basically a measure of the same thing when playing a stage (score = maxHP - remainingHP). However, unlike the remaining HP which has to be manually calculated by the user, the score can directly be read from the game. It is therefore easier for the user to adjust the score/HP by adjusting the score than by adjusting the HP.

[Screenshot from https://www.youtube.com/watch?v=wTLUw560PRs]

Loreinator commented 9 years ago

Maybe not replaced, but perhaps just supplemented by the addition of a score counter beside it, and they both modify the same internal 'score' count while the hp just displays stage health minus score (but not negative).

Loreinator commented 9 years ago

Slightly tweaked idea: Have HP as a simple label that is updated to maintain its validity, with the field that is currently for HP to be for "Score".

Loreinator commented 9 years ago

Issue resolved in development branch.