summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-09-17 11:15:26 -0300
committerJesusaves <cpntb1@ymail.com>2018-09-17 11:15:26 -0300
commite1e2e46c4b18952d3ae03c4be512d242405d0cc6 (patch)
treec58a521d5d147a68c8b99236ad36fdf2228f0179
parent80d70a0aa809be820bc5de0a8e9057d4be5516b2 (diff)
downloadserverdata-e1e2e46c4b18952d3ae03c4be512d242405d0cc6.tar.gz
serverdata-e1e2e46c4b18952d3ae03c4be512d242405d0cc6.tar.bz2
serverdata-e1e2e46c4b18952d3ae03c4be512d242405d0cc6.tar.xz
serverdata-e1e2e46c4b18952d3ae03c4be512d242405d0cc6.zip
Lower all ingot crafting price in 1000 GP, and calculate a bit the real worth
of each ingot: Platinum ingot is 47500 GP! (50,000 with the profit margin*) *: Money attracts more money. That's how market works.
-rw-r--r--db/re/item_db.conf4
-rw-r--r--npc/003-8/jhedia.txt14
2 files changed, 9 insertions, 9 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf
index e00b326eb..70b11292e 100644
--- a/db/re/item_db.conf
+++ b/db/re/item_db.conf
@@ -4104,8 +4104,8 @@ item_db: (
AegisName: "PlatinumIngot"
Name: "Platinum Ingot"
Type: "IT_ETC"
- Buy: 80000
- Sell: 20350
+ Buy: 180000
+ Sell: 50000
Weight: 1000
},
{
diff --git a/npc/003-8/jhedia.txt b/npc/003-8/jhedia.txt
index 7f206b87e..b994bd44d 100644
--- a/npc/003-8/jhedia.txt
+++ b/npc/003-8/jhedia.txt
@@ -72,25 +72,25 @@ L_Menu:
// ingot_create(Ore, Ingot, Nº of Ore, Nº of Coal, Price);
switch (@menu) {
case 1:
- ingot_create(IronOre, IronIngot, 7, 10, 8400);
+ ingot_create(IronOre, IronIngot, 7, 10, 7400);
break;
case 2:
- ingot_create(CopperOre, CopperIngot, 5, 10, 8500);
+ ingot_create(CopperOre, CopperIngot, 5, 10, 7500);
break;
case 3:
- ingot_create(TinOre, TinIngot, 5, 10, 8500);
+ ingot_create(TinOre, TinIngot, 5, 10, 7500);
break;
case 4:
- ingot_create(LeadOre, LeadIngot, 5, 1, 8600);
+ ingot_create(LeadOre, LeadIngot, 5, 1, 7600);
break;
case 5:
- ingot_create(TitaniumOre, TitaniumIngot, 5, 10, 9000);
+ ingot_create(TitaniumOre, TitaniumIngot, 5, 10, 8000);
break;
case 6:
- ingot_create(IridiumOre, IridiumIngot, 4, 10, 12000);
+ ingot_create(IridiumOre, IridiumIngot, 4, 10, 11000);
break;
case 7:
- ingot_create(PlatinumOre, PlatinumIngot, 3, 10, 18500);
+ ingot_create(PlatinumOre, PlatinumIngot, 3, 10, 16500);
break;
case 8:
ingot_create(SilverOre, SilverIngot, 3, 8, 6500);