mirror of
https://github.com/He4eT/simple-tads-game.git
synced 2026-05-04 17:07:24 +00:00
Add broken door
This commit is contained in:
parent
bf60c964fe
commit
0814851b27
3 changed files with 14 additions and 1 deletions
1
index.t
1
index.t
|
|
@ -35,3 +35,4 @@ gameMain: GameMainDef
|
|||
#include "items/fruitBox.t"
|
||||
#include "items/table.t"
|
||||
#include "items/oldDoor.t"
|
||||
#include "items/brokenDoor.t"
|
||||
|
|
|
|||
11
items/brokenDoor.t
Normal file
11
items/brokenDoor.t
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
brokenDoor: Door, RoomPartItem
|
||||
-> oldDoor
|
||||
'broken door*doors'
|
||||
'broken door'
|
||||
"A strange door with a large sign that says <q>Use with caution</q>. "
|
||||
isListed = true
|
||||
location = startingRoom
|
||||
specialNominalRoomPartLocation = defaultEastWall
|
||||
;
|
||||
|
||||
+ Decoration 'sign' 'sign' "<q>Use with caution</q>";
|
||||
|
|
@ -1,4 +1,5 @@
|
|||
startingRoom: Room 'Starting Room'
|
||||
"This is the boring starting room."
|
||||
south = secondRoom;
|
||||
south = secondRoom
|
||||
east = brokenDoor
|
||||
;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue