28 lines
794 B
C
28 lines
794 B
C
#include <lib.h>
|
|
|
|
inherit LIB_TABLE;
|
|
|
|
void create() {
|
|
::create();
|
|
SetKeyName("workbench");
|
|
SetAdjectives( ({"work", "simple", "flat"}) );
|
|
SetId( ({"table", "workbench", "bench"}) );
|
|
SetShort("a workbench");
|
|
SetLong("A simple flat surface for analyzing materials.");
|
|
SetMaxCarry(5000);
|
|
SetInventory(([
|
|
"/domains/town/armor/rocketpack" : 1,
|
|
"/domains/default/obj/generator" : 1,
|
|
"/domains/default/obj/module_cloak" : 1,
|
|
"/domains/default/armor/wristcomp" : 1,
|
|
"/domains/default/obj/vial_blue" : 1,
|
|
"/domains/town/armor/breather" : 1,
|
|
]));
|
|
SetPreventGet("The workbench does not budge.");
|
|
SetBaseCost("silver",1);
|
|
}
|
|
|
|
void init(){
|
|
::init();
|
|
}
|