Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/niklasei/logic-puzzles-for-gamebox
Logic puzzles for GameBox
https://github.com/niklasei/logic-puzzles-for-gamebox
bukkit gamebox inventorygame spigot
Last synced: about 2 months ago
JSON representation
Logic puzzles for GameBox
- Host: GitHub
- URL: https://github.com/niklasei/logic-puzzles-for-gamebox
- Owner: NiklasEi
- Created: 2017-05-14T13:47:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-04-12T18:04:03.000Z (almost 5 years ago)
- Last Synced: 2024-12-09T17:45:02.150Z (about 2 months ago)
- Topics: bukkit, gamebox, inventorygame, spigot
- Language: Java
- Homepage:
- Size: 427 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.md
Awesome Lists containing this project
README
# Logic puzzles for GameBox
This is a minecraft plugin written with the Bukkti API. It adds logic puzzles as inventory games to the plugin [GameBox](https://www.spigotmc.org/resources/37273/).
## Games
- [Sudoku](src/main/java/me/nikl/logicpuzzles/sudoku)
- [Three in a row](src/main/java/me/nikl/logicpuzzles/threeinarow)### Sudoku
Rules:
1. All 9 3x3 grids have to contain every number from 1 to 9
2. All rows and columns have to contain every number from 1 to 9The game starts with some unchangeable numbers. Left click adds one to the current value, while right click decreases it by one.
![Fresh Sudoku puzzle](fresh_puzzle_sudoku.png "Fresh Sudoku puzzle")
![Partially solved Sudoku puzzle](partially_solved_puzzle_sudoku.png "Partially solved Sudoku puzzle")### ThreeInARow
Rules:
1. Every row and every column has to contain 3 blocks of each color (default: blue and white)
2. There can never be more then 2 blocks with the same color next to each other (vertically and horizontally)The game starts with some unchangeable blocks. By clicking the slots you can go through the possible colors.
![Fresh Three In A Row puzzle](fresh_puzzle_tiar.png "Fresh Three In A Row puzzle")
![Partially solved Three In A Row puzzle](partially_solved_puzzle_tiar.png "Partially solved Three In A Row puzzle")
![Solved Three In A Row puzzle](solved_puzzle_tiar.png "Solved Three In A Row puzzle")