blob: 3152b677dd5aacfa9efccb328430b40e600bacd3 [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#include <items/flasche.h>
8
9inherit STD_HAKEN;
10
11protected void create() {
12 ::create();
13 SetProp(P_NAME, "Haken");
14 SetProp(P_SHORT, "Ein Haken");
15 SetProp(P_LONG, "Ein Angelhaken aus Metall.\n");
16 SetProp(P_LONG_EMPTY, "Du kannst etwas damit aufspiessen!\n");
17}