blob: 7e8eba00df953b891a6a2570b38c74ffb774508f [file] [log] [blame]
notstromec97e242018-11-09 09:54:48 +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");
10 SetProp(P_INT_LONG, BSLF(
11 "Der Raum hat nichts neues. Dafuer ist der NPC aber nun mit Krams "
12 "behaengt wie ein Christbaum."));
13
14 SetProp(P_LIGHT, 1);
15 SetProp(P_INDOORS, 1);
16 SetProp(P_LIGHT_TYPE, LT_GLOWING);
17
18 AddItem(__PATH__(1)"npc/zwerg2", REFRESH_DESTRUCT);
19}