mirror of
https://github.com/He4eT/simple-tads-game.git
synced 2026-05-04 17:07:24 +00:00
Eatable potion
This commit is contained in:
parent
e2af59c9ba
commit
cd023b3b4d
1 changed files with 7 additions and 1 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
potion: Thing
|
potion: Food
|
||||||
'potion'
|
'potion'
|
||||||
'potion'
|
'potion'
|
||||||
"A small glass bottle filled with a glowing green potion.\n
|
"A small glass bottle filled with a glowing green potion.\n
|
||||||
|
|
@ -6,4 +6,10 @@ potion: Thing
|
||||||
It's sealed with a cork and looks both intriguing and powerful,
|
It's sealed with a cork and looks both intriguing and powerful,
|
||||||
hinting at magical properties within. "
|
hinting at magical properties within. "
|
||||||
location = dude
|
location = dude
|
||||||
|
dobjFor(Eat) {
|
||||||
|
action() {
|
||||||
|
"It was poisoned. ";
|
||||||
|
finishGameMsg(ftDeath, [finishOptionUndo]);
|
||||||
|
}
|
||||||
|
}
|
||||||
;
|
;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue