diff options
-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!"); |