diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/003-1/jakod.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/npc/003-1/jakod.txt b/npc/003-1/jakod.txt index d032f6585..020234399 100644 --- a/npc/003-1/jakod.txt +++ b/npc/003-1/jakod.txt @@ -19,6 +19,7 @@ menu rif(!MAGIC_LVL, l("How do I get magic?")), L_HowTo, + rif(MAGIC_LVL >= 1 && !getskilllv(EVOL_MASS_PROVOKE), l("Can you teach me a basic tier 1 magic skill?")), L_Provoke, l("Good bye."), -; close; @@ -45,6 +46,18 @@ L_HowTo: mesq l("Because in the end, you are in the hands of your class leader!"); // Rare: Some loner NPCs may grant you EXTRA skills beyond that. close; +L_Provoke: + mesn; + mesq l("Yeah, of course. I will teach you a skill to provoke various enemies around you."); + next; + mesn; + mesq l("Totally useless skill, unless your friend is badly hurt and need to heal in peace."); + next; + mesn; + mesq l("Ah... I am too lazy to ask for anything in exchange. Here. Take it. Free."); + skill(EVOL_MASS_PROVOKE,1,0); + close; + OnInit: .@npcId = getnpcid(0, .name$); setunitdata(.@npcId, UDT_HEADTOP, NPCEyes); |