blob: b7dd0b312dec03fa0f1401242339f0cc701a4d6c [file] [log] [blame]
MG Mud User88f12472016-06-24 23:31:02 +02001#pragma strong_types, save_types, rtt_checks
2#pragma no_inherit, no_shadow
3
4#include <language.h>
5#include <properties.h>
6#include <fishing.h>
7
8inherit STD_KOEDER;
9
10protected void create() {
11 ::create();
12 AddId(({WURM_ID,"made"}));
13 SetProp(P_NAME, "Made");
14 SetProp(P_GENDER , FEMALE);
15 SetProp(P_WATER, W_SWEET);
16 SetProp(P_FISH, 30);
17 SetProp(P_SHORT, "Eine Made");
18 SetProp(P_LONG, "Eine kleine eklige Made.\n");
19}