mirror of
https://github.com/He4eT/simple-tads-game.git
synced 2026-05-04 17:07:24 +00:00
Add the table and the gold key
This commit is contained in:
parent
ba239b751a
commit
5021f30e64
2 changed files with 28 additions and 0 deletions
1
index.t
1
index.t
|
|
@ -32,3 +32,4 @@ gameMain: GameMainDef
|
||||||
|
|
||||||
#include "items/note.t"
|
#include "items/note.t"
|
||||||
#include "items/fruitBox.t"
|
#include "items/fruitBox.t"
|
||||||
|
#include "items/table.t"
|
||||||
|
|
|
||||||
27
items/table.t
Normal file
27
items/table.t
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
table: Heavy, Surface
|
||||||
|
'wooden desk/table'
|
||||||
|
'wooden desk'
|
||||||
|
"Massive wooden table with one drawer. "
|
||||||
|
location = secondRoom
|
||||||
|
;
|
||||||
|
|
||||||
|
+ drawer: Component, OpenableContainer
|
||||||
|
'drawer'
|
||||||
|
'drawer'
|
||||||
|
"Just a drawer. "
|
||||||
|
;
|
||||||
|
|
||||||
|
++ Decoration
|
||||||
|
'paper*papers/sheet*sheets/page*pages'
|
||||||
|
'sheets of crumpled paper'
|
||||||
|
"Just a chaotic pile of torn and crumpled notebook pages. "
|
||||||
|
isListed = true
|
||||||
|
dobjFor (Search) remapTo(Search, drawer)
|
||||||
|
|
||||||
|
;
|
||||||
|
|
||||||
|
++ goldKey: Key, Hidden
|
||||||
|
'gold golden key*keys'
|
||||||
|
'golden key'
|
||||||
|
"Long tubular key made of gold. "
|
||||||
|
;
|
||||||
Loading…
Add table
Add a link
Reference in a new issue