diff options
Diffstat (limited to 'npc/012-5')
-rw-r--r-- | npc/012-5/nicholas.txt | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/npc/012-5/nicholas.txt b/npc/012-5/nicholas.txt index 9d1c5bb2f..7a741fd6f 100644 --- a/npc/012-5/nicholas.txt +++ b/npc/012-5/nicholas.txt @@ -90,6 +90,8 @@ L_Menu: l("I want to forge One Handed Weapons!"), l("I want to forge Shields!"), l("I want to forge Quivers!"), + rif(getskilllv(TMW2_CRAFT), l("I would like to remove an item options")), + rif(getskilllv(TMW2_CRAFT), l("I would like to change an item options")), l("Nothing, thanks!"); mes ""; @@ -105,7 +107,29 @@ L_Menu: goto L_Shield; case 4: goto L_Quiver; - + case 5: + SmithTweakReset(); + goto L_Menu; + case 6: + mesn; + mesq l("Well, that will cost you @@ GP, upfront. You may also fail and will only have one attempt.", format_number(8000)); + next; + if (Zeny == 8000) { + mesn; + mesc l("It's very risky, so think well! You'll be limited to your own craft skills."), 1; + next; + if (askyesno() == ASK_YES) { + if (SmithTweakSystem()) { + Zeny-=8000; + } else { + Zeny-=5000; + next; + mesn; + mesq l("How bad for you... I'll give you a discount. I'm sorry for your own lack of skill!"); + } + } + } + goto L_Menu; } close; |