blob: ac410ad0e4d9ac2ef5e333b5138be7da54e08dbb [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(({"seesaibling","saibling"}));
11 SetProp(P_NAME,"Seesaibling" );
12 SetProp(P_SHORT,"Ein Seesaibling" );
13 SetProp(P_LONG,"Ein blaugrauer Seesaibling mit einem roten Bauch.\n");
14 SetProp(P_VALUE,80);
15 SetProp(P_WEIGHT, 400);
16}