mirror of
https://github.com/He4eT/simple-tads-game.git
synced 2026-05-05 01:17:24 +00:00
15 lines
419 B
Perl
15 lines
419 B
Perl
potion: Food
|
|
'potion'
|
|
'potion'
|
|
"A small glass bottle filled with a glowing green potion.\n
|
|
The liquid shimmers with an emerald hue and emits a faint, herbal scent.
|
|
It's sealed with a cork and looks both intriguing and powerful,
|
|
hinting at magical properties within. "
|
|
location = dude
|
|
dobjFor(Eat) {
|
|
action() {
|
|
"It was poisoned. ";
|
|
finishGameMsg(ftDeath, [finishOptionUndo]);
|
|
}
|
|
}
|
|
;
|