moss-n-puddles/typeclasses
Howard Abrams b33f6ca7df Can make pets into familiars
Refactor get_name to a top-level place on the Object.
2026-02-24 21:44:09 -08:00
..
__init__.py In the beginning was a tree... 2025-01-22 07:58:32 -08:00
accounts.py Better auto-logging/charcreate 2025-05-18 17:06:09 -07:00
alchemy.py Add a Scoring system to character 2025-08-24 22:34:11 -07:00
channels.py In the beginning was a tree... 2025-01-22 07:58:32 -08:00
characters.py Get some more images when starting the game 2025-09-05 21:42:27 -07:00
consumables.py Limit ability to litter with berries, flowers, etc. 2025-08-15 23:15:46 -07:00
drinkables.py Add a Scoring system to character 2025-08-24 22:34:11 -07:00
exits.py Create a Secret Room under the Cozy House 2025-07-11 22:06:50 -07:00
fishing.py Add 'use' to the fishing pole 2025-09-14 11:48:44 -07:00
jethro_tull_songs.txt Marshland and a new Room 2025-06-30 22:20:41 -07:00
lightables.py Fix bug when lighting torches 2025-08-17 09:48:33 -07:00
monsters.py In the beginning was a tree... 2025-01-22 07:58:32 -08:00
npcs.py Can make pets into familiars 2026-02-24 21:44:09 -08:00
npcs.txt More hints from the heron. 2025-07-01 13:18:22 -07:00
objects.py Can make pets into familiars 2026-02-24 21:44:09 -08:00
pets.py Can make pets into familiars 2026-02-24 21:44:09 -08:00
puppets.py Fix the character list when looking at a room 2025-09-06 23:42:34 -07:00
puzzles.py Fix numerous bugs 2025-08-12 13:55:18 -07:00
readables.py Undid the bug prior to committing the fix 2025-11-23 20:07:51 -08:00
README.md In the beginning was a tree... 2025-01-22 07:58:32 -08:00
rooms.py Kiss a frog to transform into a frog 2025-09-14 22:27:11 -07:00
rooms_dark.py Fix DarkRoom bug 2025-08-29 07:51:15 +00:00
rooms_weather.py Kiss a frog to transform into a frog 2025-09-14 22:27:11 -07:00
sailing.py Fix minor starting bugs 2026-02-16 14:52:32 -08:00
scripts.py Fix spawning of the Mist Horns 2025-08-27 22:12:16 -07:00
sittables.py Add a Scoring system to character 2025-08-24 22:34:11 -07:00
things.py Add a Scoring system to character 2025-08-24 22:34:11 -07:00
tutorial.py Fix bug is display the two bird images 2025-09-05 21:47:14 -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.