61 lines
1018 B
Markdown
61 lines
1018 B
Markdown
# Gaem
|
|
|
|
Weapons:
|
|
* Laser mask
|
|
* Bomb mask
|
|
* Pistol mask
|
|
|
|
Enemies:
|
|
* Singular pawns that keep distance
|
|
* Cluster of many enemies
|
|
* Snake-like row of enemies
|
|
|
|
Upgrades:
|
|
* Increase move speed
|
|
* Increase attack speed
|
|
* Increase attack power
|
|
* Reduce cooldown
|
|
* Reduce switch cooldown
|
|
|
|
Strech goals:
|
|
* Intro / tutorial
|
|
* Sword weapon to deflect bullets
|
|
* Enemy that shoots bulelts back
|
|
* Interactions between weapons.
|
|
* Shoot bomb with laser for bigger explosion
|
|
* Shoot bomb with pistol to move it or make it stronger
|
|
* Shoot pistol with laser for explosin of many small bullets
|
|
|
|
## Schedule
|
|
|
|
Total time:24h
|
|
|
|
* (12h) Gameplay
|
|
* (6h) Weapons
|
|
* (2h) Pistol
|
|
* (2h) Bomb
|
|
* (2h) Laser
|
|
* (6h) Enemies
|
|
* (2h) Pawn
|
|
* (2h) Cluster
|
|
* (2h) Snake
|
|
* (6h) Art & Audio
|
|
* (6h) Polish
|
|
|
|
## Run
|
|
|
|
Linux and Windows:
|
|
```sh
|
|
zig build run
|
|
```
|
|
|
|
Web:
|
|
```sh
|
|
zig build -Dtarget=wasm32-emscripten run
|
|
```
|
|
|
|
Cross-compile for Windows from Linux:
|
|
```sh
|
|
zig build -Dtarget=x86_64-windows
|
|
```
|