Added public files
Roughly added all public files. Probably missed some, though.
diff --git a/items/fishing/aquarium/stichling.c b/items/fishing/aquarium/stichling.c
new file mode 100644
index 0000000..0301e0c
--- /dev/null
+++ b/items/fishing/aquarium/stichling.c
@@ -0,0 +1,16 @@
+#include <language.h>
+#include <properties.h>
+#include <fishing.h>
+
+inherit STD_FISCH;
+
+protected void create() {
+ if (!clonep(this_object())) return;
+ ::create();
+ AddId(({"stichling"}));
+ SetProp(P_NAME,"Stichling" );
+ SetProp(P_SHORT,"Ein Stichling" );
+ SetProp(P_LONG,"Ein suesser kleiner Stichling.\n");
+ SetProp(P_VALUE,6);
+ SetProp(P_WEIGHT, 30);
+}