- 21 rooms across 4 wings (Dormitories, Commons, Workshops, Gardens) - Full exit graph connecting all rooms bidirectionally - Room descriptions for all 16 inner rooms - 5 character accounts (wizard, Allegro, Allegro-Primus, Timmy, Ezra) - Public communication channel - Build script: world/build_academy.ev - Wing modules: world/dormitory_entrance.py, commons_wing.py, workshop_wing.py, gardens_wing.py Built by Allegro, descriptions and exit fixes by Timmy.
27 lines
700 B
Python
27 lines
700 B
Python
"""
|
|
Exits
|
|
|
|
Exits are connectors between Rooms. An exit always has a destination property
|
|
set and has a single command defined on itself with the same name as its key,
|
|
for allowing Characters to traverse the exit to its destination.
|
|
|
|
"""
|
|
|
|
from evennia.objects.objects import DefaultExit
|
|
|
|
from .objects import ObjectParent
|
|
|
|
|
|
class Exit(ObjectParent, DefaultExit):
|
|
"""
|
|
Exits are connectors between rooms. Exits are normal Objects except
|
|
they defines the `destination` property and overrides some hooks
|
|
and methods to represent the exits.
|
|
|
|
See mygame/typeclasses/objects.py for a list of
|
|
properties and methods available on all Objects child classes like this.
|
|
|
|
"""
|
|
|
|
pass
|