diff options
Diffstat (limited to 'npc/012-5')
-rw-r--r-- | npc/012-5/nicholas.txt | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/npc/012-5/nicholas.txt b/npc/012-5/nicholas.txt index 368cc7c5f..cdad6a122 100644 --- a/npc/012-5/nicholas.txt +++ b/npc/012-5/nicholas.txt @@ -84,10 +84,11 @@ L_Menu: L_Weapon: mesn; - mesq l("Very well! We have six class of items: Iron, Terranite, Bronze, Silver, Gold and Platinum."); + mesq l("Very well! We have seven class of items: Wood, Iron, Terranite, Bronze, Silver, Gold and Platinum."); mesq l("Each of them require different items, I'll sort from weakest to strongest, so choose wisely."); select l("Nothing, sorry!"), + l("Wooden Sword"), l("Bronze Gladius"), l("Iron Bug Slayer"), l("Iron Short Gladius"); @@ -96,12 +97,15 @@ L_Weapon: case 1: goto L_Menu; case 2: - blacksmith_create(CopperIngot, 18, TinIngot, 2, BronzeGladius, 5000); + blacksmith_create(WoodenLog, 55, RawLog, 25, WoodenSword, 4500); break; case 3: - blacksmith_create(IronIngot, 12, Coal, 8, BugSlayer, 10000); + blacksmith_create(CopperIngot, 18, TinIngot, 2, BronzeGladius, 5000); break; case 4: + blacksmith_create(IronIngot, 12, Coal, 8, BugSlayer, 10000); + break; + case 5: blacksmith_create(IronIngot, 22, Coal, 18, ShortGladius, 15000); break; } |