diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-06-10 10:45:40 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-06-10 10:45:40 -0300 |
commit | e624662303634463370827c6e7d1ce3af72a681f (patch) | |
tree | 369329c125fef62b0e50bd5055f70784a6e0897f /npc | |
parent | 2897b914cfc183b1cb6f553b2dab7ede1038d9b1 (diff) | |
download | serverdata-e624662303634463370827c6e7d1ce3af72a681f.tar.gz serverdata-e624662303634463370827c6e7d1ce3af72a681f.tar.bz2 serverdata-e624662303634463370827c6e7d1ce3af72a681f.tar.xz serverdata-e624662303634463370827c6e7d1ce3af72a681f.zip |
Guns cannot be dissasembled/melt by Bracco
Diffstat (limited to 'npc')
-rw-r--r-- | npc/020-5/bracco.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/npc/020-5/bracco.txt b/npc/020-5/bracco.txt index 4fb752c2a..d78e20128 100644 --- a/npc/020-5/bracco.txt +++ b/npc/020-5/bracco.txt @@ -186,6 +186,23 @@ L_Meltdown: case LegendaryWand: Meltdown(.@it, 12000, WoodenLog, rand2(7,77), GoldenApple, rand2(0, 1), FluoPowder, rand2(4,14), GemPowder, rand2(1,3)); break; + // Shields - same rule (except leather shield) + case RoundLeatherShield: + Meltdown(.@it, 500, LeatherPatch, rand2(0,1)); + break; + case LeatherShield: + Meltdown(.@it, 500, LeatherPatch, rand2(1,3)); + break; + case WoodenShield: + Meltdown(.@it, 1500, WoodenLog, rand2(20,28), LeatherPatch, 1); + break; + case BladeShield: + Meltdown(.@it, 1500, IronIngot, rand2(7,9), TitaniumIngot, 1); + break; + // Etc + case GoldenRing: + Meltdown(.@it, 1500, GoldPieces, rand2(2,3)); + break; default: mesn; mesq l("I cannot melt this. I only melt down equipment, and not everything I know how to!"); |