blob: c63317baa2a18d558cd9ba31dd11fffd0a648e40 [file] [log] [blame]
MG Mud User88f12472016-06-24 23:31:02 +02001#pragma strong_types, save_types, rtt_checks
2#pragma no_clone, no_shadow
3
4inherit "/std/thing";
5
6#include <language.h>
7#include <properties.h>
8#include <items/fishing/fishing.h>
9
10protected void create(){
11 ::create();
12 AddId(({WURM_ID,"koeder", "wurm","regenwurm"}));
13 SetProp(P_NAME, "Wurm");
14 SetProp(P_GENDER , MALE);
15 SetProp(P_ARTICLE, 1);
16 SetProp(P_FISH, 0);
17 SetProp(P_WATER, 0);
18 SetProp(P_SHORT, "Ein kleiner Wurm");
19 SetProp(P_LONG, "Ein kleiner Regenwurm.\n");
20 SetProp(P_MATERIAL, MAT_MISC_LIVING);
21 SetProp(P_VALUE, 1);
22 SetProp(P_WEIGHT, 5);
23}
24
25protected void create_super() {
26 set_next_reset(-1);
27}
28