WebView version https://github.com/floatrx/electron-webview
-
Grid: The game starts on a dynamic grid consisting of numbers from 1 to 9.
-
Number Selection: The user must choose two numbers according to the game rules.
-
Adjacent Numbers:
- The user can only select adjacent numbers either vertically or horizontally.
- Adjacent numbers are those with no unresolved cells between them.
- The user can also select consecutive numbers in a row (e.g., the last number in the 1st row and the first number in the next row).
-
Ignoring Resolved Cells: All resolved cells are ignored when checking for adjacency.
-
Selecting Identical Numbers: The user can select two identical numbers to earn 2 points.
-
Selecting Numbers Summing to 10: The user can select two numbers whose sum equals 10 to earn 10 points.
- Booster Counter K:
For each successful selection, the game adds a booster counter K, which multiplies the points.
- The counter can reach up to x100.
- The counter resets to 1 after 5 seconds of inactivity.
- Shuffle Function: The user can use the "shuffle" function, which regenerates all cell values, increasing the chances of winning.
- Final Score: At the end of the game, the user sees their final score.