diff options
-rw-r--r-- | npc/003-8/jhedia.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/npc/003-8/jhedia.txt b/npc/003-8/jhedia.txt index b05ae1475..66e6f501c 100644 --- a/npc/003-8/jhedia.txt +++ b/npc/003-8/jhedia.txt @@ -69,6 +69,7 @@ L_Menu: l("Silver Ingot"), l("Gold Ingot"), l("Gold Pieces"), + rif(BaseLevel >= 70, l("Terranite Ingot")), l("Nothing, thanks."); // ingot_create(Ore, Ingot, Nº of Ore, Nº of Coal, Price); @@ -103,6 +104,9 @@ L_Menu: case 10: ingot_create(GoldOre, GoldPieces, 1, 20, 1100); break; + case 11: + ingot_create(TerraniteOre, TerraniteIngot, 10, 20, 2000); + break; default: goto L_Close; break; |