blob: 3e7520efbbb6da9098c537826d600bc0a28352d3 [file] [log] [blame]
MG Mud User88f12472016-06-24 23:31:02 +02001#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
8inherit STD_ANGEL;
9
10protected 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}