blob: 5ad1ea2ac01c30cc540a251df876bea26373461c [file] [log] [blame]
MG Mud User88f12472016-06-24 23:31:02 +02001#include <language.h>
2#include <properties.h>
3#include <fishing.h>
4
5inherit STD_FISCH;
6
7protected void create() {
8 if (!clonep(this_object())) return;
9 ::create();
10 AddId(({"piranha"}));
11 SetProp(P_NAME,"Piranha" );
12 SetProp(P_GENDER,MALE);
13 SetProp(P_SHORT,"Ein Piranha" );
14 SetProp(P_LONG,"Ein boesartiger kleiner Piranha mit sehr scharfen "
15 "Zaehnen.\n");
16 SetProp(P_VALUE,40);
17 SetProp(P_WEIGHT, 100);
18}