blob: 646c00179dee5aba6f29539640bfc8f661186385 [file] [log] [blame]
MG Mud User88f12472016-06-24 23:31:02 +02001#include <language.h>
2#include <properties.h>
3#include <fishing.h>
4
5inherit STD_FISCH;
6
7protected void create() {
8 if (!clonep(this_object())) return;
9 ::create();
10 AddId(({"goldorfe","orfe"}));
11 SetProp(P_NAME,"Goldorfe" );
12 SetProp(P_GENDER,FEMALE);
13 SetProp(P_SHORT,"Ein Goldorfe" );
14 SetProp(P_LONG,
15 "Eine rote Goldorfe. Sie hat ein wenig Aehnlichkeit mit einem Goldfisch,\n"
16 +"ist jedoch wesentlich schlanker, schneller und gefraessiger.\n");
17 SetProp(P_VALUE, 150);
18 SetProp(P_WEIGHT, 80);
19}