Added public files
Roughly added all public files. Probably missed some, though.
diff --git a/items/fishing/aquarium/thun.c b/items/fishing/aquarium/thun.c
new file mode 100644
index 0000000..c12c928
--- /dev/null
+++ b/items/fishing/aquarium/thun.c
@@ -0,0 +1,17 @@
+#include <language.h>
+#include <properties.h>
+#include <fishing.h>
+
+inherit STD_FISCH;
+
+protected void create() {
+ if (!clonep(this_object())) return;
+ ::create();
+ AddId(({"thunfisch"}));
+ SetProp(P_NAME,"Thunfisch" );
+ SetProp(P_GENDER,MALE);
+ SetProp(P_SHORT,"Ein Thunfisch" );
+ SetProp(P_LONG,"Ein grosser Thunfisch.\n");
+ SetProp(P_VALUE,75);
+ SetProp(P_WEIGHT, 500);
+}