pete286/petehous.jor

36 lines
1.2 KiB
Plaintext
Raw Normal View History

( P E T E ' S H O U S E )
16 5 N ' {pete-table} defentity table
15 5 N ' {chair} defentity chair
7 6 N ' {pete-bed} defentity bed
2019-05-17 02:25:13 +00:00
10 9 N ' {phone} defentity e_phone
table :touch pete say" Yesterday's breakfast is still\on the table."
say" Maybe the day before's too." ;entity
chair :touch pete say" I've had my morning coffee\already." ;entity
bed :touch pete say" I'm not tired yet." ;entity
2019-05-17 02:25:13 +00:00
e_phone :touch phone
:| s" [don't pick up]" :| pete say" Hmm... no answer." |; yield
s" Hey Pete, what's up?" :| pete say" Not much, old friend!" |; yield
done |; choose ;entity
:noname
reset-level
2019-05-17 02:25:13 +00:00
:| table yield chair yield bed yield e_phone yield done |; ' entities redefine
:|
touch-begin 16 10 2= dup if
2019-03-15 02:18:20 +00:00
player move-entity 12 8 pete.jor queue-level
then touch-next 9 4 2= dup if
pete say" The closet is a disaster.\I don't want to deal with that\right now."
then touch-next 11 4 2= dup if
pete say" I'm already dressed."
then touch-next 16 3 2= dup if
pete say" The sink's full of nasty dishes.\I'm not touching them."
then touch-next 18 3 2= dup if
pete say" Should get some more beer soon."
then touch-last |; ' player-touch redefine
s" petehous.map" load-map
; ' onload redefine