15 lines
325 B
Python
15 lines
325 B
Python
|
|
from agame.room import Room
|
||
|
|
from . import database
|
||
|
|
|
||
|
|
database.add_rooms(
|
||
|
|
Room(
|
||
|
|
id="start",
|
||
|
|
name="Test room",
|
||
|
|
desc="You're in ((Todd's Test Cell)).",
|
||
|
|
items=[
|
||
|
|
database.items["glowing_rock"].create_inst(),
|
||
|
|
database.items["cell_door"].create_inst(),
|
||
|
|
],
|
||
|
|
),
|
||
|
|
)
|