mud/lib/domains/Ylsrim/etc/stool.c
2020-09-06 05:43:07 -07:00

22 lines
484 B
C

/* /domains/Ylsrim/etc/stool.c
* From the Dead Souls Mud Library
* An example of a chair object
* Created by Descartes of Borg 961221
*/
#include <lib.h>
inherit LIB_CHAIR;
static void create() {
chair::create();
SetKeyName("stool");
SetId("stool");
SetAdjectives("wooden", "rickety");
SetShort("a rickety wooden stool");
SetLong("The stool is sturdy enough for you to sit in.");
SetMass(1500);
SetValue(15);
SetMaxSitters(1);
}