summaryrefslogtreecommitdiff
path: root/npc/003-8
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-12-16 22:23:45 -0200
committerJesusaves <cpntb1@ymail.com>2018-12-16 22:23:45 -0200
commitdf3505e3b68f9c9f0a16020f6197c0feb655096c (patch)
tree32122e78db8e842bb92bfc1283b8c74a8af896c5 /npc/003-8
parent0f3e50a8615d8f6fce5544c4a34d63b5b7830ad4 (diff)
downloadserverdata-df3505e3b68f9c9f0a16020f6197c0feb655096c.tar.gz
serverdata-df3505e3b68f9c9f0a16020f6197c0feb655096c.tar.bz2
serverdata-df3505e3b68f9c9f0a16020f6197c0feb655096c.tar.xz
serverdata-df3505e3b68f9c9f0a16020f6197c0feb655096c.zip
Jhedia cannot charge 74 coal worth of GP to make an Iron Ingot ¬.¬
Today, this game gives you 100GP/minute tops. It is not possible to exceed this mark. Therefore, an ingot should have a compatible price (the difficulty should be ores, not GP)
Diffstat (limited to 'npc/003-8')
-rw-r--r--npc/003-8/jhedia.txt20
1 files changed, 10 insertions, 10 deletions
diff --git a/npc/003-8/jhedia.txt b/npc/003-8/jhedia.txt
index 7df739dac..393a1b6ed 100644
--- a/npc/003-8/jhedia.txt
+++ b/npc/003-8/jhedia.txt
@@ -72,34 +72,34 @@ L_Menu:
// ingot_create(Ore, Ingot, Nº of Ore, Nº of Coal, Price);
switch (@menu) {
case 1:
- ingot_create(IronOre, IronIngot, 6, 10, 7400);
+ ingot_create(IronOre, IronIngot, 6, 10, 740);
break;
case 2:
- ingot_create(CopperOre, CopperIngot, 4, 10, 7500);
+ ingot_create(CopperOre, CopperIngot, 4, 10, 750);
break;
case 3:
- ingot_create(TinOre, TinIngot, 4, 10, 7500);
+ ingot_create(TinOre, TinIngot, 4, 10, 750);
break;
case 4:
- ingot_create(LeadOre, LeadIngot, 4, 1, 7600);
+ ingot_create(LeadOre, LeadIngot, 4, 1, 760);
break;
case 5:
- ingot_create(TitaniumOre, TitaniumIngot, 4, 10, 8000);
+ ingot_create(TitaniumOre, TitaniumIngot, 4, 10, 800);
break;
case 6:
- ingot_create(IridiumOre, IridiumIngot, 4, 10, 11000);
+ ingot_create(IridiumOre, IridiumIngot, 4, 10, 1100);
break;
case 7:
- ingot_create(PlatinumOre, PlatinumIngot, 3, 10, 16500);
+ ingot_create(PlatinumOre, PlatinumIngot, 3, 10, 1650);
break;
case 8:
- ingot_create(SilverOre, SilverIngot, 3, 8, 6500);
+ ingot_create(SilverOre, SilverIngot, 3, 8, 650);
break;
case 9:
- ingot_create(GoldOre, GoldIngot, 3, 10, 8500);
+ ingot_create(GoldOre, GoldIngot, 3, 10, 850);
break;
case 10:
- ingot_create(GoldOre, GoldPieces, 1, 20, 11000);
+ ingot_create(GoldOre, GoldPieces, 1, 20, 1100);
break;
default:
goto L_Close;