diff options
Diffstat (limited to 'npc/003-8')
-rw-r--r-- | npc/003-8/jhedia.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/npc/003-8/jhedia.txt b/npc/003-8/jhedia.txt index 98da2cd01..49052a1d3 100644 --- a/npc/003-8/jhedia.txt +++ b/npc/003-8/jhedia.txt @@ -57,6 +57,8 @@ L_Menu: next; select l("Iron Ingot"), + l("Copper Ingot"), + l("Tin Ingot"), l("Gold Ingot"), l("Gold Pieces"), l("Nothing, thanks."); @@ -67,9 +69,15 @@ L_Menu: ingot_create(IronOre, IronIngot, 7, 11, 8500); break; case 2: - ingot_create(GoldOre, GoldIngot, 3, 10, 8500); + ingot_create(CopperOre, CopperIngot, 5, 10, 8500); break; case 3: + ingot_create(TinOre, TinIngot, 5, 10, 8500); + break; + case 4: + ingot_create(GoldOre, GoldIngot, 3, 10, 8500); + break; + case 5: ingot_create(GoldOre, GoldPieces, 1, 20, 11000); break; default: |