This is my game entry for the js13kGames compo 2019 - https://js13kgames.com/games/repeewsenim/index.html
Repeewsenim is derived from the classic game of Minesweeper. The twist here is that you need to play it backwards, in reverse. You know where the bombs are, and need to put correct numbers on the tiles.
You need to play Minesweeper backwards. You know where the bombs and you need to put correct number on each tile.
A grid will show up with bombs placed in random cells. Your task is to assign correct number to each cell which does not have a bomb.
A cell's number is the count of bombs that are placed around it i.e. the (at most) eight cells surrounding it. So if there is just one bomb around a cell, its number should be 1 and so on...If there is no bomb around a cell, it should be left empty.
Click any cell to cycle between values 0 to 8. Left click increments by 1 and right click decrements by 1.
This game is screen-reader compatible.
Navigate through cells with Tab or Arrow keys. Press Space or Enter key to cycle between values 0 to 8 or simply press the numeric key to assign value directly.
- The game is made with web technologies: HTML, CSS and JavaScript.
- It is completely DOM based. Uses no Canvas!
- Being DOM based, the game inherently screen-reader compatible!
- The zipped size of the game is less than 13KB, of course :)
Open-source under The MIT license. Copyright 2019 Kushagra Gour.