diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-12-16 22:48:47 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-12-16 22:48:47 -0200 |
commit | cd237b94dfa0103d15ff72152b7ebf784be2bd18 (patch) | |
tree | 9c457e179e9be9826178f4e1ae04c7fce8619fd7 /npc/012-5 | |
parent | df3505e3b68f9c9f0a16020f6197c0feb655096c (diff) | |
download | serverdata-cd237b94dfa0103d15ff72152b7ebf784be2bd18.tar.gz serverdata-cd237b94dfa0103d15ff72152b7ebf784be2bd18.tar.bz2 serverdata-cd237b94dfa0103d15ff72152b7ebf784be2bd18.tar.xz serverdata-cd237b94dfa0103d15ff72152b7ebf784be2bd18.zip |
Cut several zeros in several places to please @demure and @Xtreem and make balance
more smooth. Jhedia was on previous commit. Ingot sell price adjusted accordingly.
Diffstat (limited to 'npc/012-5')
-rw-r--r-- | npc/012-5/nicholas.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/npc/012-5/nicholas.txt b/npc/012-5/nicholas.txt index 78ac16a47..67b2b79d6 100644 --- a/npc/012-5/nicholas.txt +++ b/npc/012-5/nicholas.txt @@ -124,16 +124,16 @@ L_Weapon: case 1: goto L_Menu; case 2: - blacksmith_create(WoodenLog, 35, RawLog, 5, WoodenSword, 4500); + blacksmith_create(WoodenLog, 35, RawLog, 5, WoodenSword, 450); break; case 3: - blacksmith_create(CopperIngot, 18, TinIngot, 2, BronzeGladius, 5000); + blacksmith_create(CopperIngot, 18, TinIngot, 2, BronzeGladius, 500); break; case 4: - blacksmith_create(IronIngot, 8, Coal, 12, BugSlayer, 10000); + blacksmith_create(IronIngot, 8, Coal, 12, BugSlayer, 1000); break; case 5: - blacksmith_create(IronIngot, 12, Coal, 16, ShortGladius, 15000); + blacksmith_create(IronIngot, 12, Coal, 16, ShortGladius, 1550); break; } goto L_Weapon; @@ -153,7 +153,7 @@ L_Shield: case 1: goto L_Menu; case 2: - blacksmith_create(WoodenLog, 40, LeatherPatch, 2, WoodenShield, 5000); + blacksmith_create(WoodenLog, 40, LeatherPatch, 2, WoodenShield, 500); break; } goto L_Shield; @@ -175,13 +175,13 @@ L_Quiver: case 1: goto L_Menu; case 2: - blacksmith_create(LeatherPatch, 35, TitaniumIngot, 1, LeatherQuiver, 20000); + blacksmith_create(LeatherPatch, 35, TitaniumIngot, 1, LeatherQuiver, 2000); break; case 3: - blacksmith_create(TerraniteOre, 210, Coal, 80, TerraniteQuiver, 30000); // TODO: Terranite Ingot + blacksmith_create(TerraniteOre, 210, Coal, 80, TerraniteQuiver, 3000); // TODO: Terranite Ingot break; case 4: - blacksmith_create(PlatinumIngot, 30, IridiumIngot, 10, PlatinumQuiver, 40000); + blacksmith_create(PlatinumIngot, 30, IridiumIngot, 10, PlatinumQuiver, 4000); break; } goto L_Quiver; |