25 lines
574 B
C
25 lines
574 B
C
#include <lib.h>
|
|
|
|
inherit LIB_BASE_DUMMY;
|
|
inherit LIB_STORAGE;
|
|
|
|
static void create() {
|
|
base_dummy::create();
|
|
storage::create();
|
|
SetKeyName("trashcan");
|
|
SetId(({"can","container","bin"}));
|
|
SetAdjectives("trash","rubbish","waste");
|
|
SetShort("a trashcan");
|
|
SetLong("A container for discarding waste.");
|
|
SetMass(1500);
|
|
SetDollarCost(15);
|
|
SetMaxCarry(900);
|
|
SetInventory( ([
|
|
"/domains/campus/obj/key1" : 1,
|
|
]) );
|
|
SetPreventGet("It is firmly attached to the ground.");
|
|
}
|
|
void init(){
|
|
::init();
|
|
}
|