mud/lib/domains/town/obj/hpoolwater.c
2020-09-06 05:43:07 -07:00

26 lines
604 B
C

#include <lib.h>
#include <meal_types.h>
inherit LIB_BASE_DUMMY;
inherit LIB_FLASK;
static void create() {
base_dummy::create();
flask::create();
SetKeyName("water");
SetId(({"pool","poolwater" }));
SetAdjectives("pool","glowing");
SetLong("The glowing water of a strange pool in the forest.");
SetShort("the glowing pool");
SetFlaskContents("water");
SetFlaskUses(2);
SetStrength(5);
SetMaxFlask(2);
SetEverFill(1);
SetMealType(MEAL_DRINK);
SetNoCondition(1);
SetInvis(1);
}
mixed CanGet(object ob) { return "#The water stays in place.";}