diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-05-18 14:43:42 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-05-18 14:43:42 -0300 |
commit | 290781d36a4b9998fff02e383f5e6668064394df (patch) | |
tree | da0767aafd633a79fdd6402fccb52803729f9127 /npc | |
parent | e975d66dd2c8b0f680fd84861c10f4ade6449c86 (diff) | |
download | serverdata-290781d36a4b9998fff02e383f5e6668064394df.tar.gz serverdata-290781d36a4b9998fff02e383f5e6668064394df.tar.bz2 serverdata-290781d36a4b9998fff02e383f5e6668064394df.tar.xz serverdata-290781d36a4b9998fff02e383f5e6668064394df.zip |
Trim in ~10% the amount of Coal needed to craft ingots.
Total coal for BackSword should go from 200 to 180 with this >.>
Diffstat (limited to 'npc')
-rw-r--r-- | npc/003-8/jhedia.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/003-8/jhedia.txt b/npc/003-8/jhedia.txt index a859997b2..9b47f95a0 100644 --- a/npc/003-8/jhedia.txt +++ b/npc/003-8/jhedia.txt @@ -72,19 +72,19 @@ L_Menu: // ingot_create(Ore, Ingot, Nº of Ore, Nº of Coal, Price); switch (@menu) { case 1: - ingot_create(IronOre, IronIngot, 6, 10, 740); + ingot_create(IronOre, IronIngot, 6, 9, 740); break; case 2: - ingot_create(CopperOre, CopperIngot, 4, 10, 750); + ingot_create(CopperOre, CopperIngot, 4, 7, 750); break; case 3: - ingot_create(TinOre, TinIngot, 4, 10, 750); + ingot_create(TinOre, TinIngot, 4, 9, 750); break; case 4: ingot_create(LeadOre, LeadIngot, 4, 1, 760); break; case 5: - ingot_create(TitaniumOre, TitaniumIngot, 4, 10, 800); + ingot_create(TitaniumOre, TitaniumIngot, 4, 9, 800); break; case 6: ingot_create(IridiumOre, IridiumIngot, 4, 10, 1100); @@ -93,10 +93,10 @@ L_Menu: ingot_create(PlatinumOre, PlatinumIngot, 3, 10, 1650); break; case 8: - ingot_create(SilverOre, SilverIngot, 3, 8, 650); + ingot_create(SilverOre, SilverIngot, 3, 7, 650); break; case 9: - ingot_create(GoldOre, GoldIngot, 3, 10, 850); + ingot_create(GoldOre, GoldIngot, 3, 9, 850); break; case 10: ingot_create(GoldOre, GoldPieces, 1, 20, 1100); |