blob: 9ae403c553a43798e5aa1d0029df87f32c992032 [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
7
8protected void create() {
9 if (!clonep(this_object()))
10 return;
11 ::create();
12 corpseobject = 0;
13 AddId(({"alligator"}));
14 SetProp(P_NAME,"Alligator" );
15 SetProp(P_SHORT,"Ein Alligator" );
16 SetProp(P_LONG,"Ein original Kanalligator (TM).\n");
17 SetProp(P_VALUE,600);
18 SetProp(P_WEIGHT, 1000);
19}