Added public files
Roughly added all public files. Probably missed some, though.
diff --git a/items/fishing/aquarium/gorfe.c b/items/fishing/aquarium/gorfe.c
new file mode 100644
index 0000000..646c001
--- /dev/null
+++ b/items/fishing/aquarium/gorfe.c
@@ -0,0 +1,19 @@
+#include <language.h>
+#include <properties.h>
+#include <fishing.h>
+
+inherit STD_FISCH;
+
+protected void create() {
+ if (!clonep(this_object())) return;
+ ::create();
+ AddId(({"goldorfe","orfe"}));
+ SetProp(P_NAME,"Goldorfe" );
+ SetProp(P_GENDER,FEMALE);
+ SetProp(P_SHORT,"Ein Goldorfe" );
+ SetProp(P_LONG,
+ "Eine rote Goldorfe. Sie hat ein wenig Aehnlichkeit mit einem Goldfisch,\n"
+ +"ist jedoch wesentlich schlanker, schneller und gefraessiger.\n");
+ SetProp(P_VALUE, 150);
+ SetProp(P_WEIGHT, 80);
+}