mud/lib/domains/cave/meals/herring.c
2020-09-06 05:43:07 -07:00

25 lines
552 B
C

#include <lib.h>
#include <meal_types.h>
#include <dirs.h>
inherit LIB_FISH;
static void create() {
fish::create();
SetKeyName("herring");
SetId( ({ "fish" }) );
SetAdjectives( ({ "pickled","red","saltwater","salt water","bloated"}) );
SetShort("a red herring");
SetLong("A saltwater fish, turned red and bloated by orcish pickling.");
SetMealType(MEAL_FOOD);
SetMass(10);
SetStrength(2);
SetBaseCost("silver", 1);
SetFight(4);
SetFood("/domains/town/meals/herring");
}
void init(){
::init();
}