diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-15 00:05:52 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-15 00:05:52 -0300 |
commit | d0f1560f36a06d0d66fd119060cb62eaa70ae922 (patch) | |
tree | 840a7b76b7610c34ec141603ed7ca2d5b47d3a1d | |
parent | 0282b9c9705af15484b66ae51c31e91fb934e002 (diff) | |
download | serverdata-d0f1560f36a06d0d66fd119060cb62eaa70ae922.tar.gz serverdata-d0f1560f36a06d0d66fd119060cb62eaa70ae922.tar.bz2 serverdata-d0f1560f36a06d0d66fd119060cb62eaa70ae922.tar.xz serverdata-d0f1560f36a06d0d66fd119060cb62eaa70ae922.zip |
Bracco: Better Iron Ore ratio for melting down daggers and other small equip
-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 |