blob: c37c419c93d1c38d9c9622093ae3fd6767bc8622 [file] [log] [blame]
notstromc0a51aa2018-11-12 20:21:16 +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 "Diesmal ist der Zwerg so blitzeblank, dass er regelrecht spiegelt ..."));
12
13 SetProp(P_LIGHT, 1);
14 SetProp(P_INDOORS, 1);
15 SetProp(P_LIGHT_TYPE, LT_GLOWING);
16
17 AddItem(__PATH__(1)"npc/zwerg4", REFRESH_DESTRUCT);
18}