blob: a4fe24108286e4d7d10b143dd8494f279f9155a2 [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 SetProp(P_NAME,"FISCH" );
11 SetProp(P_GENDER,MALE);
12 SetProp(P_SHORT,"Ein Fisch" );
13 SetProp(P_LONG,"Ein ziemlich gewoehnlicher Fisch.\n");
14 SetProp(P_VALUE,10);
15 SetProp(P_WEIGHT, 100);
16}