- 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.
21 lines
539 B
Python
21 lines
539 B
Python
"""
|
|
This reroutes from an URL to a python view-function/class.
|
|
|
|
The main web/urls.py includes these routes for all urls starting with `webclient/`
|
|
(the `webclient/` part should not be included again here).
|
|
|
|
"""
|
|
|
|
from django.urls import path
|
|
|
|
from evennia.web.webclient.urls import urlpatterns as evennia_webclient_urlpatterns
|
|
|
|
# add patterns here
|
|
urlpatterns = [
|
|
# path("url-pattern", imported_python_view),
|
|
# path("url-pattern", imported_python_view),
|
|
]
|
|
|
|
# read by Django
|
|
urlpatterns = urlpatterns + evennia_webclient_urlpatterns
|