It's a snake game.
We were provided with Gluttonous, it is now Gluttonous++.
- Smooth snake connections and animation (borders and connections are clearly shown)
- Lots of different tile types!
- Wall tiles
- Empty space that doesn't allow strawberries to spawn
- Pressure plates: some activate when the snake is on them, the others deactivate
- Wrap walls: makes the snake go through it and come out of the closest opposite-facing wrap wall
- Padded walls: the snake doesn't die when it collides with it
- Clone plates: generates a copy of the snake with their natural orientation
- The clone follows the same movements as the original
- Has an option to generate a clone with different orientation (ie left->right)
- Level-based gameplay
- Level maker
- Hotkeys to allow easy edits
- Rectangular and flood select allows for easy manipulation of large areas
- Snake mode allows placment of a snake, and gives hints on where the next segment needs to be
- Texture packs, can be configured in
styles
- Python 3
- pygame
python3 main.py
pyinstaller -F -n BingQi_Ling --add-data "levels:levels" --add-data "sound:sound" --add-data "styles:styles" --add-data "snakeData:snakeData" main.py
python3 -m nuitka --onefile --include-data-dir=.=. main.py







