mud/lib/domains/default/chamber/coffin.c
2020-09-06 05:43:07 -07:00

35 lines
676 B
C

#include <lib.h>
#include <position.h>
inherit LIB_CHAMBER;
static void create() {
chamber::create();
SetKeyName("coffin");
SetId(({"box"}));
SetAdjectives(({"pine", "simple"}));
SetShort("a coffin");
SetLong("This is a simple pine box for holding the remains "+
"of the deceased.");
SetRace("vehicle");
SetPosition(POSITION_NULL);
SetMelee(0);
SetNoClean(1);
SetMount(1);
SetMountStyle("driven");
SetVisibleRiders(0);
SetOpacity(100);
SetMaxHealthPoints(20);
SetMaxCarry(30000);
}
void init(){
::init();
}
int eventMove(mixed foo){
int ret;
ret = ::eventMove(foo);
return ret;
}