MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame^] | 1 | #include <language.h> |
2 | #include <properties.h> | ||||
3 | #include <fishing.h> | ||||
4 | |||||
5 | inherit STD_FISCH; | ||||
6 | |||||
7 | |||||
8 | protected 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 | } |