diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-06-08 13:43:43 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-06-08 13:43:43 -0300 |
commit | 5e5d341eab8ea12832ddf0261c4c1475b0a08eb2 (patch) | |
tree | 62ab056071c0c177da66386db96c2fdb7faafdc8 | |
parent | cd090a50ea43124241edb326eaf6f5b81c7d0e6b (diff) | |
download | serverdata-5e5d341eab8ea12832ddf0261c4c1475b0a08eb2.tar.gz serverdata-5e5d341eab8ea12832ddf0261c4c1475b0a08eb2.tar.bz2 serverdata-5e5d341eab8ea12832ddf0261c4c1475b0a08eb2.tar.xz serverdata-5e5d341eab8ea12832ddf0261c4c1475b0a08eb2.zip |
Add human-readable version of fire staffs (pyn guns)
-rw-r--r-- | db/craft_db.conf | 2 | ||||
-rw-r--r-- | npc/craft/recipes.txt | 23 |
2 files changed, 24 insertions, 1 deletions
diff --git a/db/craft_db.conf b/db/craft_db.conf index 0f4ae9d24..a21aa5d19 100644 --- a/db/craft_db.conf +++ b/db/craft_db.conf @@ -1106,7 +1106,7 @@ craft_db: ( PileOfAsh: 3 }, ) - Priority: 20 + Priority: 40 }, /****************************************************************************/ diff --git a/npc/craft/recipes.txt b/npc/craft/recipes.txt index 0748c77eb..4a499e936 100644 --- a/npc/craft/recipes.txt +++ b/npc/craft/recipes.txt @@ -210,6 +210,29 @@ function readCrafting { 20, FluoPowder, 7, GemPowder); next; + // Weapons + mesc "----------"+l("Fire Staffs Recipes")+"----------", 2; + showRecipe(CraftPynRevolver, PynRevolver, + 4, LeadIngot, + 5, TitaniumIngot, + 11, Coal, + 1, EverburnPowder); + showRecipe(CraftPynRifle, PynRifle, + 6, LeadIngot, + 7, TitaniumIngot, + 14, Coal, + 1, EverburnPowder); + showRecipe(CraftPynGatling, PynGatling, + 7, LeadIngot, + 7, TitaniumIngot, + 14, Coal, + 1, EverburnPowder); + showRecipe(CraftPynShotgun, PynShotgun, + 9, LeadIngot, + 10, TitaniumIngot, + 16, Coal, + 1, EverburnPowder); + next; @scope$=""; return; } |