https://github.com/opixelum/doomdepths-c
Simple doomdepths-like game in C.
https://github.com/opixelum/doomdepths-c
c cmake doomdepths game
Last synced: about 1 month ago
JSON representation
Simple doomdepths-like game in C.
- Host: GitHub
- URL: https://github.com/opixelum/doomdepths-c
- Owner: opixelum
- License: unlicense
- Created: 2023-09-23T08:35:12.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-11-15T03:23:46.000Z (over 2 years ago)
- Last Synced: 2025-03-04T09:14:00.115Z (over 1 year ago)
- Topics: c, cmake, doomdepths, game
- Language: C
- Homepage:
- Size: 107 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Doomdepths C
Simple doomdepths-like game in C.
## Contributing
See [CONTRIBUTING.md](CONTRIBUTING.md).
## Level system
- Starting level: **1** with **0** xp (1000 xp to level up to level 2));
- Maximum level: 100;
- Level formula: `xp_level_n = xp_level_(n-1) + xp_level_(n-1) * 0.1`;
- When level up, every stat is increased by **10%**;
- When killing a monster, the player receives **10%** of the monster's xp;