notstrom | 2c84492 | 2018-12-03 10:40:03 +0100 | [diff] [blame] | 1 | inherit "/std/npc"; |
| 2 | |
| 3 | #include <new_skills.h> |
| 4 | #include __PATH__(1)"defs.h" |
| 5 | |
| 6 | |
| 7 | private int ausholen; |
| 8 | |
| 9 | protected void create() { |
| 10 | if (!clonep()) { |
| 11 | set_next_reset(-1); |
| 12 | return; |
| 13 | } |
| 14 | ::create(); |
| 15 | |
| 16 | create_default_npc(20, 600); |
| 17 | |
| 18 | SetProp(P_SHORT, "Ein angriffslustiger Zwerg"); |
| 19 | SetProp(P_LONG, BSLF( |
| 20 | "Diesmal ist Kawumms Axt noch spezieller. Da seine Haende und auch die " |
| 21 | "Axt komisch geformt sind, kann nur er sie zuecken.")); |
| 22 | SetProp(P_NAME, "Kawumm"); |
| 23 | SetProp(P_ARTICLE, 0); |
| 24 | SetProp(P_GENDER, MALE); |
| 25 | |
| 26 | AddId(({"zwerg", "kawumm"})); |
| 27 | SetProp(P_ALIGN, 100); |
| 28 | SetProp(P_RACE, "Zwerg"); |
| 29 | SetProp(P_SIZE, 102); |
| 30 | |
| 31 | AddItem(__PATH__(1)"obj/axt3", REFRESH_NONE|CLONE_WIELD); |
| 32 | } |
| 33 | |