Neues Beispiel.
Change-Id: I3f40097a2848cddb995b7af47b8ebc68e1832463
diff --git a/room/huette10.c b/room/huette10.c
new file mode 100644
index 0000000..ee45541
--- /dev/null
+++ b/room/huette10.c
@@ -0,0 +1,18 @@
+inherit "/std/room";
+
+#include __PATH__(1)"defs.h"
+
+
+protected void create() {
+ ::create();
+
+ SetProp(P_INT_SHORT, "Eine schummrige Huette");
+ SetProp(P_INT_LONG, BSLF(
+ "Und wieder ist der Raum nicht sonderlich interessant."));
+
+ SetProp(P_LIGHT, 1);
+ SetProp(P_INDOORS, 1);
+ SetProp(P_LIGHT_TYPE, LT_GLOWING);
+
+ AddItem(__PATH__(1)"npc/zwerg6", REFRESH_DESTRUCT);
+}