MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame^] | 1 | #pragma strong_types, save_types, rtt_checks |
| 2 | #pragma no_clone, no_shadow |
| 3 | |
| 4 | inherit "/std/thing"; |
| 5 | |
| 6 | #include <language.h> |
| 7 | #include <properties.h> |
| 8 | #include <items/fishing/fishing.h> |
| 9 | |
| 10 | protected 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 | |
| 25 | protected void create_super() { |
| 26 | set_next_reset(-1); |
| 27 | } |
| 28 | |