blob: 9c3db3a54e8360ad1f13e378ce64e248a92793cd [file] [log] [blame]
notstrom2b580792018-12-03 10:12:20 +01001inherit "/std/room";
2
3#include __PATH__(1)"defs.h"
4
5
6protected void create() {
7 ::create();
8
9 SetProp(P_INT_SHORT, "Eine schummrige Huette");
notstrom326b2252018-12-12 18:13:24 +010010 SetProp(P_INT_LONG, BSLF(
11 "Und wieder ist der Raum nicht sonderlich interessant."));
notstrom2b580792018-12-03 10:12:20 +010012
13 SetProp(P_LIGHT, 1);
14 SetProp(P_INDOORS, 1);
15 SetProp(P_LIGHT_TYPE, LT_GLOWING);
notstrom326b2252018-12-12 18:13:24 +010016
17 AddItem(__PATH__(1)"npc/zwerg5", REFRESH_DESTRUCT);
notstrom2b580792018-12-03 10:12:20 +010018}