moss-n-puddles/typeclasses
Howard Abrams 3d1ebfa3fc Adding a batchcommands file with descriptions
And fixed a number of bugs with starting from scratch.
2025-02-12 22:37:19 -08:00
..
__init__.py In the beginning was a tree... 2025-01-22 07:58:32 -08:00
accounts.py In the beginning was a tree... 2025-01-22 07:58:32 -08:00
channels.py In the beginning was a tree... 2025-01-22 07:58:32 -08:00
characters.py We can knock on a door. 2025-02-11 21:09:23 -08:00
drinkables.py Created a hard of hearing, NPC, door knocker 2025-02-09 10:48:24 -08:00
exits.py We can knock on a door. 2025-02-11 21:09:23 -08:00
lightables.py Adding a batchcommands file with descriptions 2025-02-12 22:37:19 -08:00
monsters.py In the beginning was a tree... 2025-01-22 07:58:32 -08:00
objects.py Adding a batchcommands file with descriptions 2025-02-12 22:37:19 -08:00
pets.py Adding a batchcommands file with descriptions 2025-02-12 22:37:19 -08:00
readables.py We can knock on a door. 2025-02-11 21:09:23 -08:00
README.md In the beginning was a tree... 2025-01-22 07:58:32 -08:00
rooms.py Adding a batchcommands file with descriptions 2025-02-12 22:37:19 -08:00
rooms_dark.py Adding a batchcommands file with descriptions 2025-02-12 22:37:19 -08:00
rooms_weather.py We can knock on a door. 2025-02-11 21:09:23 -08:00
scripts.py We can knock on a door. 2025-02-11 21:09:23 -08:00
sittables.py Adding a batchcommands file with descriptions 2025-02-12 22:37:19 -08:00
things.py Adding a batchcommands file with descriptions 2025-02-12 22:37:19 -08: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.