diff options
Diffstat (limited to 'npc/020-5')
-rw-r--r-- | npc/020-5/bracco.txt | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/npc/020-5/bracco.txt b/npc/020-5/bracco.txt index a92b1cf88..3784ac6c7 100644 --- a/npc/020-5/bracco.txt +++ b/npc/020-5/bracco.txt @@ -148,17 +148,19 @@ L_Meltdown: // Returns 50~70% of invested ingots, rounded down. Never returns Coal. switch (.@id) { case RustyKnife: + Meltdown(.@it, 15, IronOre, any(0, 0, 0, 1, 1)); // Exception + break; case SmallKnife: - Meltdown(.@it, 15, IronOre, any(0, 0, 0, 0, 1)); // Exception + Meltdown(.@it, 15, IronOre, any(0, 0, 1, 1, 1)); // Exception break; case Knife: - Meltdown(.@it, 25, IronOre, any(0, 0, 0, 1)); // Exception + Meltdown(.@it, 25, IronOre, any(0, 1, 1, 2)); // Exception break; case SharpKnife: - Meltdown(.@it, 50, IronOre, any(0, 0, 1)); // Exception + Meltdown(.@it, 50, IronOre, any(1, 2, 2, 3)); // Exception break; case Dagger: - Meltdown(.@it, 100, IronOre, rand2(0,1)); // Exception + Meltdown(.@it, 100, IronOre, any(2, 2, 3, 3, 4, 5)); // Exception break; case WoodenSword: Meltdown(.@it, 500, WoodenLog, rand2(5,10)); // Exception: 25~50% returned |