This commit is contained in:
Kim Ravn Hansen
2025-09-14 13:04:48 +02:00
parent 8c196bb6a1
commit ed91a7f2f7
43 changed files with 2279 additions and 1727 deletions

View File

@@ -47,3 +47,64 @@ Any chats via the spell from then on is encrypted with the "group chat key".
All parties throw away the group chat key when the spell ends.
Each group chat has a name.
```
____ _
| __ ) _ _ __ _ __ _ ___ | |__ _ _ __ _ __ _ ___
| _ \| | | |/ _` |/ _` |/ _ \ | '_ \| | | |/ _` |/ _` |/ _ \
| |_) | |_| | (_| | (_| | __/ | |_) | |_| | (_| | (_| | __/
|____/ \__, |\__, |\__, |\___| |_.__/ \__, |\__, |\__, |\___|
|___/ |___/ |___/ |___/ |___/ |___/
```
# CONSTRUCTION / BUILDING
- You can build a house / mansion / castle / wizard tower / underdark / cave / wattever.
- You can invite other players oveer for a tjat.
- You can build portals to other dimensions (instances),
and you can allow other players to try it out.
```
____ __ __ _
| _ \ _ _ _ __ __ _ ___ ___ _ __ | \/ | ___ __| | ___ ___
| | | | | | | '_ \ / _` |/ _ \/ _ \| '_ \ | |\/| |/ _ \ / _` |/ _ \/ __|
| |_| | |_| | | | | (_| | __/ (_) | | | | | | | | (_) | (_| | __/\__ \
|____/ \__,_|_| |_|\__, |\___|\___/|_| |_| |_| |_|\___/ \__,_|\___||___/
|___/
```
- `Caves`
- GameMode = _Spelunking_: Sir Whalemeat the Thurd is Spelunking in the Caves of Purh.
- Played like `Rogue`
- Procedurally (pre-)generated caves (Game of Life? automata?)
- Turn based: you take one action, and everything else gets one `tick`.
- 1 Location == 1 cave
- `Donjons`
- GameMode = _Crawling_: Lady Gurthie Firefoot is Crawling the Donjons of Speematoforr.
- Played like `Knights of Pen and Paper`
- Procedurally (pre-)generated dungeons
- Very simple square dungeon layout (like KoPaP).
- Every time you enter a non-explored space, you roll a die, and see what happens.
- Combat is like `Dark Queen of Krynn`
- 1 Location == 1 donjon room/area
- BSP (binary space partition) https://www.youtube.com/watch?v=TlLIOgWYVpI&t=374s
- `Overland`
- GameMode = _Traveling_: Swift Dangledonk the Slow is Traveling the Marshes of Moohfaahsaah
- Travel is like `Rogue`
- Combat is like `Dark Queen of Krynn`
- Static terrain.
- Random encounters.
- Each encounter has a randomly generated mini map (which is just monsters and a few obstacles)
- 1 Location == 1 area / screen
- `Settlements`
- GameMode = _Sojourning_: Swingleding the Mage is Sojourning in the City of Hovedstad.
- may be played like MUDs (`go west`, `go to town square`, etc.).
- Static (mostly)
- Combat is like `Dark Queen of Krynn`
- 1 Location == 1 area (an inn, etc.)
- `Dwelling`
- GameMode = _Hanging Out_: Wendlegloom Uklimuck is Hanging Out in The House of the Sitting Sun.
- Homes that players can own or build.
- Like `Rogue` but with tweaks such as detailed descriptions
of the cool stuff the players have done with the room.