blob: 914448d061c72e9d3537061be3df005baf0460c2 [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(({"neunauge","bachneunauge"}));
11 SetProp(P_NAME,"Bachneunauge" );
12 SetProp(P_GENDER,NEUTER);
13 SetProp(P_SHORT,"Ein Neunauge" );
14 SetProp(P_LONG,
15 "Ein Bachneunauge mit einer kleinen Mundscheibe. Damit kann es sich\n"
16 +"an Steinen festhalten und in der Stroemung treiben.\n");
17 SetProp(P_VALUE,60);
18 SetProp(P_WEIGHT, 300);
19}