summaryrefslogtreecommitdiff
path: root/npc/003-8
diff options
context:
space:
mode:
Diffstat (limited to 'npc/003-8')
-rw-r--r--npc/003-8/jhedia.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/npc/003-8/jhedia.txt b/npc/003-8/jhedia.txt
index 3a8d3c1ee..3f8e21813 100644
--- a/npc/003-8/jhedia.txt
+++ b/npc/003-8/jhedia.txt
@@ -57,12 +57,21 @@ L_Menu:
next;
select
l("Iron Ingot"),
+ l("Gold Ingot"),
+ l("Gold Pieces"),
l("Nothing, thanks.");
+ // ingot_create(Ore, Ingot, Nº of Ore, Nº of Coal, Price);
switch (@menu) {
case 1:
ingot_create(IronOre, IronIngot, 7, 11, 8500);
break;
+ case 2:
+ ingot_create(GoldOre, GoldIngot, 3, 10, 8500);
+ break;
+ case 3:
+ ingot_create(GoldOre, GoldPieces, 1, 20, 11000);
+ break;
default:
goto L_Close;
break;