simple-tads-game/locations/secondRoom.t
2024-12-10 18:55:32 +01:00

37 lines
976 B
Perl

secondRoom: Room 'Second Room'
"This is another boring room with a few balloons and a painting on the wall. "
wallCode = '3339'
roomParts = (inherited() - [defaultEastWall] + [secondRoomEastWall])
north = startingRoom
south = oldDoorOutside
;
+ Decoration
'red balloon*balloons'
'red balloon'
"Glossy spherical object made of rubber and filled with air. "
;
+ Decoration
'green balloon*balloons'
'green balloon'
"Just a green balloon in the shape of a cucumber. "
;
+ Decoration
'blue balloon*balloons'
'blue balloon'
"Bright inflatable object often used for decorations and celebrations. "
;
+ secondRoomEastWall: defaultEastWall
desc = "The same wall as the others, but with a picture. "
;
++ Component
'painting/image/picture/drawing*drawings'
'picture on the wall'
"Unframed reproduction of a famous painting glued to the wall.\n
In the corner, someone wrote four digits with a pink marker:
<b><<secondRoom.wallCode>></b>. "
;