hazelmud/typeclasses
Hazel Nova 0db300a472 Remove circular dependency issue and refactor encounter system 2024-01-20 05:53:45 +00:00
..
README.md Initial commit (basic RP encounter system) 2024-01-10 04:31:02 +00:00
__init__.py Initial commit (basic RP encounter system) 2024-01-10 04:31:02 +00:00
accounts.py Initial commit (basic RP encounter system) 2024-01-10 04:31:02 +00:00
channels.py Initial commit (basic RP encounter system) 2024-01-10 04:31:02 +00:00
characters.py Remove circular dependency issue and refactor encounter system 2024-01-20 05:53:45 +00:00
encounter_handler.py Allow encounter handlers to properly close 2024-01-13 11:47:18 +08:00
exits.py Initial commit (basic RP encounter system) 2024-01-10 04:31:02 +00:00
objects.py Implemented clothing system 2024-01-10 06:43:33 +00:00
rooms.py Implemented clothing system 2024-01-10 06:43:33 +00:00
scripts.py Initial commit (basic RP encounter system) 2024-01-10 04:31:02 +00:00

README.md

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.