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

22 lines
460 B
C

#include <lib.h>
inherit LIB_MATCH;
static void create() {
match::create();
SetKeyName("match");
SetId("match");
SetAdjectives( ({ "wooden" }) );
SetShort("a wooden match");
SetLong("A wooden match that might light if you strike it.");
SetRadiantLight(2);
SetStrikeChance(50);
SetMinHeat(10);
SetFuelRequired(1);
SetMaxFuel(10);
SetFuelAmount(10);
SetRefuelable(0);
SetMass(5);
SetBurntValue(1);
}