moss-n-puddles/typeclasses
2025-05-06 22:08:46 -07:00
..
__init__.py
accounts.py Character creation system 2025-05-01 10:20:49 -07:00
channels.py
characters.py Fix bug with character generation and the tutor bird 2025-05-06 22:08:46 -07:00
consumables.py Change text randomization from {{...}} to <<..>> 2025-04-17 20:39:40 -07:00
drinkables.py Character creation system 2025-05-01 10:20:49 -07:00
exits.py Create new dynamic say command 2025-04-25 16:00:39 -07:00
fishing.py Things can now reveal other things 2025-04-18 18:02:43 -07:00
lightables.py Adding a batchcommands file with descriptions 2025-02-12 22:37:19 -08:00
monsters.py
npcs.py Allow puppeting NPCs that stay put. 2025-05-03 21:20:18 -07:00
objects.py Magically create sticks for throwing to the BHB 2025-04-26 09:32:14 -07:00
pets.py Character creation system 2025-05-01 10:20:49 -07:00
puppets.py Allow puppeting NPCs that stay put. 2025-05-03 21:20:18 -07:00
readables.py Character creation system 2025-05-01 10:20:49 -07:00
README.md
rooms.py Character creation system 2025-05-01 10:20:49 -07:00
rooms_dark.py Adding a batchcommands file with descriptions 2025-02-12 22:37:19 -08:00
rooms_weather.py Character creation system 2025-05-01 10:20:49 -07:00
scripts.py Magically create sticks for throwing to the BHB 2025-04-26 09:32:14 -07:00
sittables.py Character creation system 2025-05-01 10:20:49 -07:00
things.py Character creation system 2025-05-01 10:20:49 -07:00
tutorial.py Character creation system 2025-05-01 10:20:49 -07:00

typeclasses/

This directory holds the modules for overloading all the typeclasses representing the game entities and many systems of the game. Other server functionality not covered here is usually modified by the modules in server/conf/.

Each module holds empty classes that just imports Evennia's defaults. Any modifications done to these classes will overload the defaults.

You can change the structure of this directory (even rename the directory itself) as you please, but if you do you must add the appropriate new paths to your settings.py file so Evennia knows where to look. Also remember that for Python to find your modules, it requires you to add an empty __init__.py file in any new sub directories you create.