mirror of
https://github.com/He4eT/yet-another-experiment.git
synced 2026-05-05 00:57:22 +00:00
Bathroom
This commit is contained in:
parent
6cbe11116d
commit
f9142e9df9
4 changed files with 53 additions and 8 deletions
|
|
@ -42,6 +42,8 @@ gameMain: GameMainDef
|
||||||
;
|
;
|
||||||
|
|
||||||
#include "src/room/orangeRoom.t"
|
#include "src/room/orangeRoom.t"
|
||||||
|
#include "src/room/orangeBathroom.t"
|
||||||
|
|
||||||
#include "src/room/yellowRoom.t"
|
#include "src/room/yellowRoom.t"
|
||||||
|
|
||||||
#include "src/actor/pc.t"
|
#include "src/actor/pc.t"
|
||||||
|
|
|
||||||
39
src/room/orangeBathroom.t
Normal file
39
src/room/orangeBathroom.t
Normal file
|
|
@ -0,0 +1,39 @@
|
||||||
|
orangeBathroom: Room
|
||||||
|
'Bathroom'
|
||||||
|
" Tiny bathroom with shower cabine, toilet and sink.
|
||||||
|
<br>On the wall you can see a locker with a mirror door.<.p>
|
||||||
|
The only exit leads to the east."
|
||||||
|
east = orangeRoom
|
||||||
|
;
|
||||||
|
|
||||||
|
+ Decoration, Fixture
|
||||||
|
'shower cabine'
|
||||||
|
'shower cabine'
|
||||||
|
"It's a minimalistic shower cabine."
|
||||||
|
;
|
||||||
|
|
||||||
|
+ Decoration, Fixture
|
||||||
|
'toilet'
|
||||||
|
'toilet'
|
||||||
|
"An ordinary toilet."
|
||||||
|
;
|
||||||
|
|
||||||
|
+ Decoration, Fixture
|
||||||
|
'faucet sink'
|
||||||
|
'sink'
|
||||||
|
"There's a water faucet and a small sink."
|
||||||
|
;
|
||||||
|
|
||||||
|
+ OpenableContainer, Fixture
|
||||||
|
'mirror/locker/door'
|
||||||
|
'locker with mirror door'
|
||||||
|
" <<isOpen
|
||||||
|
? 'This is'
|
||||||
|
: 'You see your face in the mirror door of'>>
|
||||||
|
a locker for toiletries.<br>"
|
||||||
|
;
|
||||||
|
|
||||||
|
++ painkillers: Thing
|
||||||
|
'pills/painkillers'
|
||||||
|
'painkillers'
|
||||||
|
"A small orange bottle of pills.";
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
orangeRoom: DarkRoom
|
orangeRoom: DarkRoom
|
||||||
'Orange room'
|
'Living unit'
|
||||||
" You're standing in the large room.
|
" You're standing in the small room.
|
||||||
<br>The walls, floors and ceiling are
|
<br>The walls, floors and ceiling are
|
||||||
completely covered with white plastic panels.
|
completely covered with white plastic panels.
|
||||||
<.p>
|
<.p>
|
||||||
|
|
@ -11,8 +11,12 @@ orangeRoom: DarkRoom
|
||||||
<.p>
|
<.p>
|
||||||
The room contains
|
The room contains
|
||||||
an ascetic bed
|
an ascetic bed
|
||||||
and a desk against the east wall."
|
and a desk against the east wall.
|
||||||
|
</p>
|
||||||
|
The bathroom is to the west,
|
||||||
|
the exit door leads to the south."
|
||||||
south = orangeDoor
|
south = orangeDoor
|
||||||
|
west = orangeBathroom
|
||||||
;
|
;
|
||||||
|
|
||||||
/* Doors */
|
/* Doors */
|
||||||
|
|
@ -21,14 +25,14 @@ orangeRoom: DarkRoom
|
||||||
'white sliding door'
|
'white sliding door'
|
||||||
'sliding door'
|
'sliding door'
|
||||||
"White sliding door in south wall.<br>"
|
"White sliding door in south wall.<br>"
|
||||||
isListed = true;
|
;
|
||||||
|
|
||||||
/* Lights */
|
/* Lights */
|
||||||
|
|
||||||
+ OnOffControl, Fixture
|
+ OnOffControl, Fixture
|
||||||
'small luminous switch/light/lights'
|
'small luminous switch/light/lights'
|
||||||
'small luminous switch'
|
'small luminous switch'
|
||||||
"It's a small luminous switch on the wall"
|
"It's a small luminous switch on the wall."
|
||||||
|
|
||||||
isListed = true
|
isListed = true
|
||||||
brightness = 1
|
brightness = 1
|
||||||
|
|
@ -91,9 +95,9 @@ orangeRoom: DarkRoom
|
||||||
+++ whiteCube: Thing
|
+++ whiteCube: Thing
|
||||||
'white cube'
|
'white cube'
|
||||||
'white cube'
|
'white cube'
|
||||||
"Small glossy white cube";
|
"Small glossy white cube.";
|
||||||
|
|
||||||
+++ blackCube: Thing
|
+++ blackCube: Thing
|
||||||
'black cube'
|
'black cube'
|
||||||
'black cube'
|
'black cube'
|
||||||
"Small glossy black cube";
|
"Small glossy black cube.";
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
yellowRoom: Room
|
yellowRoom: Room
|
||||||
'Yellow room'
|
'Hallway'
|
||||||
" This is another room which every surface
|
" This is another room which every surface
|
||||||
covered with matte white panels.
|
covered with matte white panels.
|
||||||
<.p>
|
<.p>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue