diff options
Diffstat (limited to 'npc/003-8/jhedia.txt')
-rw-r--r-- | npc/003-8/jhedia.txt | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/npc/003-8/jhedia.txt b/npc/003-8/jhedia.txt index 49052a1d3..df04ce4f9 100644 --- a/npc/003-8/jhedia.txt +++ b/npc/003-8/jhedia.txt @@ -59,6 +59,10 @@ L_Menu: l("Iron Ingot"), l("Copper Ingot"), l("Tin Ingot"), + l("Titanium Ingot"), + l("Iridium Ingot"), + l("Platinum Ingot"), + l("Silver Ingot"), l("Gold Ingot"), l("Gold Pieces"), l("Nothing, thanks."); @@ -66,7 +70,7 @@ L_Menu: // ingot_create(Ore, Ingot, Nº of Ore, Nº of Coal, Price); switch (@menu) { case 1: - ingot_create(IronOre, IronIngot, 7, 11, 8500); + ingot_create(IronOre, IronIngot, 7, 11, 8400); break; case 2: ingot_create(CopperOre, CopperIngot, 5, 10, 8500); @@ -75,9 +79,21 @@ L_Menu: ingot_create(TinOre, TinIngot, 5, 10, 8500); break; case 4: - ingot_create(GoldOre, GoldIngot, 3, 10, 8500); + ingot_create(TitaniumOre, TitaniumIngot, 5, 10, 9000); break; case 5: + ingot_create(IridiumOre, IridiumIngot, 4, 10, 12000); + break; + case 6: + ingot_create(PlatinumOre, PlatinumIngot, 3, 10, 18500); + break; + case 7: + ingot_create(SilverOre, SilverIngot, 3, 8, 6500); + break; + case 8: + ingot_create(GoldOre, GoldIngot, 3, 10, 8500); + break; + case 9: ingot_create(GoldOre, GoldPieces, 1, 20, 11000); break; default: |