MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame^] | 1 | #pragma strong_types, save_types, rtt_checks |
| 2 | #pragma no_inherit, no_shadow |
| 3 | |
| 4 | #include <language.h> |
| 5 | #include <properties.h> |
| 6 | #include <fishing.h> |
| 7 | |
| 8 | inherit STD_ANGEL; |
| 9 | |
| 10 | protected void create() { |
| 11 | if (!clonep(this_object())) |
| 12 | return; |
| 13 | ::create(); |
| 14 | |
| 15 | SetProp(P_NAME, "Bootsrute"); |
| 16 | SetProp(P_GENDER, FEMALE); |
| 17 | SetProp(P_SHORT, "Eine kurze, starke Angel"); |
| 18 | SetProp(P_LONG,"Eine Angel speziell fuer die Hochsee-Fischerei.\n" |
| 19 | "Sie ist von Fachleuten auf Hai-Festigkeit getestet!\n"); |
| 20 | SetProp(P_TRANSPARENT,1); |
| 21 | SetProp(P_MAX_WEIGHT, 10000); //Hai-fest!!!!!! |
| 22 | SetProp(P_WATER,W_SHORT); //siehe fishing.h |
| 23 | } |