[10,10]

Created by ~dustin

NAME : /dev/null
DESC : This room has some test objects
OBJECTS
-
ID : altar
NAME : altar
DESC : An alter to check if you're equipped
ACTIONS
ask
IF INVENTORY=sword,shield
ECHO You are well equipped
ELSE
ECHO Try grabbing the sword and shield
ENDIF
-
ID : desk
NAME : desk
DESC : A wooden desk with no drawers and a lamp on top.
-
ID : lamp
NAME : lamp
DESC : A lamp with a switch. It is currently [power].
PROPS
power=off
ACTIONS
switch|turn|push|pull
IF power=on
SET power=off
ECHO You turn off the lamp
ELSE
SET power=on
ECHO You turn on the lamp
ENDIF
-
ID : couch
NAME : couch
DESC : A moth eaten couch. You'd prefer not to sit on it.
ACTIONS
sit
ECHO You sit on the couch.
ECHO You regret that immediately.
ECHO You get back up.
-
ID : orb
NAME : orb
DESC : A magic orb. It is currently [state].
GRAB : true
PROPS
state=not glowing
ACTIONS
use
IF state=glowing
SET state=dark
ECHO You make the orb stop glowing
ELSE
SET state=glowing
ECHO You make the orb glow
ENDIF
-
ID : recorder
NAME : Tape recorder
DESC : An old tape recorder from the 80s
GRAB : true
PROPS
tape=blank
ACTIONS
record
ECHO You rewind the tape and press record.
PROMPT tape|You record the following message:
play
ECHO You rewind the tape and push play.
IF tape=blank
ECHO Nothing happens, the tape must be blank.
ELSE
ECHO You hear the following:
ECHO [tape]
ENDIF