Naechstes Beispiel.
Change-Id: Ib44b4891bc9ca02d361344e7663ca70fc0fe0208
diff --git a/room/huette9.c b/room/huette9.c
new file mode 100644
index 0000000..9c3db3a
--- /dev/null
+++ b/room/huette9.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/zwerg5", REFRESH_DESTRUCT);
+}