Added public files
Roughly added all public files. Probably missed some, though.
diff --git a/items/fishing/bootsrute.c b/items/fishing/bootsrute.c
new file mode 100644
index 0000000..3e7520e
--- /dev/null
+++ b/items/fishing/bootsrute.c
@@ -0,0 +1,23 @@
+#pragma strong_types, save_types, rtt_checks
+#pragma no_inherit, no_shadow
+
+#include <language.h>
+#include <properties.h>
+#include <fishing.h>
+
+inherit STD_ANGEL;
+
+protected void create() {
+ if (!clonep(this_object()))
+ return;
+ ::create();
+
+ SetProp(P_NAME, "Bootsrute");
+ SetProp(P_GENDER, FEMALE);
+ SetProp(P_SHORT, "Eine kurze, starke Angel");
+ SetProp(P_LONG,"Eine Angel speziell fuer die Hochsee-Fischerei.\n"
+ "Sie ist von Fachleuten auf Hai-Festigkeit getestet!\n");
+ SetProp(P_TRANSPARENT,1);
+ SetProp(P_MAX_WEIGHT, 10000); //Hai-fest!!!!!!
+ SetProp(P_WATER,W_SHORT); //siehe fishing.h
+}