#include "path.h" inherit "/std/food"; setup() { set_name("jellied eel"); set_short("Jellied Eel"); set_main_plural("jellied eels"); add_alias("eel"); set_long("A disgusting looking fish dish.\n"); set_value(80); set_weight(4); set_eat_func("yum"); } int yum() { this_player()->adjust_hp(50+random(30)); }