| 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 | protected void create() { | ||||
| 8 | if (!clonep(this_object())) return; | ||||
| 9 | ::create(); | ||||
| 10 | AddId(({"karpfen"})); | ||||
| 11 | SetProp(P_NAME,"Karpfen" ); | ||||
| 12 | SetProp(P_GENDER,MALE); | ||||
| 13 | SetProp(P_SHORT,"Ein Karpfen" ); | ||||
| 14 | SetProp(P_LONG,"Ein grosser blaugrauer Karpfen.\n"); | ||||
| 15 | SetProp(P_VALUE,200); | ||||
| 16 | SetProp(P_WEIGHT, 1000); | ||||
| 17 | } | ||||