diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-11-18 18:27:38 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-11-18 18:27:38 -0200 |
commit | 090edd8dc2333407b92361fcea0447112330be05 (patch) | |
tree | 7471d3a0126ddeb0a1fe3974232924fda880b1d1 /npc | |
parent | 4fbde755866fe4d3a17fd67107a6e923c72d2705 (diff) | |
download | serverdata-090edd8dc2333407b92361fcea0447112330be05.tar.gz serverdata-090edd8dc2333407b92361fcea0447112330be05.tar.bz2 serverdata-090edd8dc2333407b92361fcea0447112330be05.tar.xz serverdata-090edd8dc2333407b92361fcea0447112330be05.zip |
Make the standard weapons sold by Pyndragon weaker and cheaper.
This allows Dustynator (quest weapon) to shine.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/017-4/pyndragon.txt | 14 | ||||
-rw-r--r-- | npc/018-2-1/dustman.txt | 1 |
2 files changed, 8 insertions, 7 deletions
diff --git a/npc/017-4/pyndragon.txt b/npc/017-4/pyndragon.txt index 6a6241e06..516dad4f4 100644 --- a/npc/017-4/pyndragon.txt +++ b/npc/017-4/pyndragon.txt @@ -58,9 +58,9 @@ else mesq l("Good @@. My name is @@ and I make @@.", l("day"), .name$, l("firearms")); next; - if (BaseLevel < 60) + if (BaseLevel < 50) goto L_TooWeak; - else if (BaseLevel < 70) + else if (BaseLevel < 60) goto L_Weak; goto L_Menu; @@ -71,7 +71,7 @@ L_TooWeak: L_Weak: mesn; - mesq l("You need level 70 to use these guns, but if you want to start collecting materials, you're allowed to."); + mesq l("You need level 60 to use these guns, but if you want to start collecting materials, you're allowed to."); next; goto L_Menu; @@ -110,16 +110,16 @@ L_Craft: switch (@menu) { case 2: - craft_gun( LeadIngot, 6, TitaniumIngot, 6, Coal, 12, PynRevolver, 15000 ); + craft_gun( LeadIngot, 5, TitaniumIngot, 5, Coal, 11, PynRevolver, 15000 ); goto L_Craft; case 3: - craft_gun( LeadIngot, 8, TitaniumIngot, 8, Coal, 15, PynRifle, 15000 ); + craft_gun( LeadIngot, 7, TitaniumIngot, 7, Coal, 14, PynRifle, 15000 ); goto L_Craft; case 4: - craft_gun( LeadIngot, 8, TitaniumIngot, 8, Coal, 15, PynGatling, 15000 ); + craft_gun( LeadIngot, 7, TitaniumIngot, 7, Coal, 14, PynGatling, 15000 ); goto L_Craft; case 5: - craft_gun( LeadIngot, 12, TitaniumIngot, 12, Coal, 18, PynShotgun, 60000 ); + craft_gun( LeadIngot, 11, TitaniumIngot, 11, Coal, 16, PynShotgun, 60000 ); goto L_Craft; } goto L_Menu; diff --git a/npc/018-2-1/dustman.txt b/npc/018-2-1/dustman.txt index fe0c96257..1332650cf 100644 --- a/npc/018-2-1/dustman.txt +++ b/npc/018-2-1/dustman.txt @@ -30,6 +30,7 @@ L_COD: next; mesn; mesq l("Pyndragon said he'll do a @@ to however reduces them to dust. Interested?", getitemlink(Dustynator)); // BottledDust, Dustynator + mesc l("Note: Dustynator is a high level weapon. You might not have enough level to use it yet."); next; if (askyesno() == ASK_YES) { mes ""; |