simple-tads-game/items/potion.t
2024-12-10 19:35:32 +01:00

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]);
}
}
;