![]() |
Just how much poison damage do they do? - Printable Version +- The Lurker Lounge Forums (https://www.lurkerlounge.com/forums) +-- Forum: Lurker Games (https://www.lurkerlounge.com/forums/forum-6.html) +--- Forum: Diablo II (https://www.lurkerlounge.com/forums/forum-8.html) +--- Thread: Just how much poison damage do they do? (/thread-2474.html) |
Just how much poison damage do they do? - Archon_Wing - 11-11-2007 Every time I have to fight them in the course of time since I started Diablo, I bang my head against the wall because their poison damage drains my life like mad even with poison resist. I've even tried to turn cleansing on, but it's still quite annoying. Perhaps more annoying is running back to town when your merc dies of poison. So is it just necessary to pack more antidotes vs them?:o Just how much poison damage do they do? - librarian - 11-11-2007 Heiho, <edit> well, I should know by now that this code thing eats tables :-P reformatted the whole stuff </edit> Quote:Every time I have to fight them in the course of time since I started Diablo, I bang my head against the wall because their poison damage drains my life like mad even with poison resist. I've even tried to turn cleansing on, but it's still quite annoying. Perhaps more annoying is running back to town when your merc dies of poison. So is it just necessary to pack more antidotes vs them? :o before I'm going into gory details, you can stack duration of Antidotes' (and Thawing Pots') effect by repeatedly drinking them (or feeding them to your hireling. You also may enhance your equipment with 'poison length reduce' modifiers, they'll help _a_lot_. monstats, skills and missiles poison damage is written in configuration data as 'elemental damage each frame', so in following data you see '5 damage' and an elemental duration (ELen) of 400, it means in each of the 400 frames 5 points damage are dealt. This differs from how poison damage modifiers on _items_ are listed in configuration data (they're listed as total damage over frames). MonStats' and directly therein assigned Missiles' damage values are subject to global modifiers from MonLvl and DifficultyLevels. Skills' damage values are no subject to these modifiers, even if the skill is just a launcher for a missile (so in some cases you have to adjust Missiles.txt damage values, and in some cases you haven't). Global adjustment from additional DifficultyLevels.txt unique boss bonus N, NM, H -> +90, 75, 66% I'm no good at calculating, so at first here's raw data. ___________________________________________________ Radament: - additional poison damage to A1 Standard Attack Code: El1Mode A1 El1Pct gives a percentage of how many of A1 punches will be enhanced with poison. It's always set to 25%, so one blow out of four will carry this additional poison damage in each difficulty. Duration is always set to 1000 frames (40 seconds). - has also mummy4 missile assigned to A2 Standard Attack (the breathing) Code: EType pois On Missile Level 1 (missLvl) the added poison damage to A2 breathing will be EMin to EMax, this is pretty much what you would call the base poison damage. So we have 9 to 9 damage in each of 400 frames (16 seconds duration). Missile Level increases similar to Skill Levels (DifficultyLevels.txt), so we have missLvl1 in Normal, missLvl4 in Nightmare and missLvl8 in Hell. missLvl2 to missLvl8 refer to EMinLev1 and EMaxLev1. For missLvl4 we get Poison Damage = EMinLev1 * (missLvl - 1) + EMin to EMaxLev1 * (missLvl - 1) + EMax This results in 5 * 3 + 9 to 5 * 3 + 9 or 24 to 24 damage in each of 400 Frames duration. For missLvl8 we get Poison Damage = EMinLev1 * (missLvl - 1) + EMin to EMaxLev1 * (missLvl - 1) + EMax This results in 5 * 7 + 9 to 5 * 7 + 9 or 44 to 44 damage in each of 400 Frames duration. (for completeness, and in case I'm wrong about missLvl: missLvl9 to missLvl16 refer to EMinLev2 and EMaxLev2 missLvl17 to missLvl22 refer to EMinLev3 and EMaxLev3 missLvl23 to missLvl28 refer to EMinLev4 and EMaxLev4 missLvl29 and better refer to EMinLev5 and EMaxLev5) EDmgSymPerCalc is (always, with monsters) empty, since there are no synergies here :-) - mLvl 16, 49, 83 in N, NM, H results in MonLvl.txt damage adjustment for ladder mode as follows Normal: mLvl16 -> 11% of listed MonStats/Missiles damage Nightmare: mLvl 49 -> 41% of listed MonStats/Missiles damage Hell: mLvl83 -> 94% of listed MonStats/Missiles damage ____________________________ Andariel - applies poison damage to A1 Standard Attack Code: El1Mode A1 El1Pct gives a percentage of how many of A1 punches will be enhanced with poison. It's always set to 100%, so each blow will carry this additional poison damage in each difficulty. I don't know what happens in Nightmare, where minimum damage is higher than maximum damage. This is most probably a typo in configuration data, and can cause weird stuff. Duration varies from 30 frames in Normal to 33 frames in Nightmare (I'd bet this is a typo) to 225 frames in Hell. - mLvl 12, 49, 75 in N, NM, H results in MonLvl.txt damage adjustment for ladder mode as follows Normal: mLvl12 -> 8% of listed MonStats/Missiles damage Nightmare: mLvl 49 -> 41% of listed MonStats/Missiles damage Hell: mLvl83 -> 85% of listed MonStats/Missiles damage - uses AndrialSpray skill to launch andarielspray missile N, NM, H -> sLvl1, 4, 8 Code: EType pois The duration is 400 frames at sLvl1 and increases by 10 frames for each further sLvl (ELevLen columns). This missile has a small portion of physical damage assigned, too! 'HitShift' is set to zero, so the values have to be divided by 256. Code: MinDamage 1792 - uses AndyPoisonBolt skill with andypoisonbolt missile N, NM, H -> sLvl1, 4, 8 Code: EType pois Duration is 800 frames (32 seconds) plus 10 frames per sLvl. This missile also has a portion of physical damage assigned, too! 'HitShift' is set to zero, so the values have to be divided by 256. Code: MinDamage 1792 ___________________________________________ Coldworm QueenDeath skill uses most probably queenpoisoncloud missile (this is heavily hardcoded stuff, so maybe I'm wrong here). Code: EType pois On Missile Level 1 (missLvl) the poison damage will be EMin to EMax. So we have 6 to 16 damage in each of 800 frames (32 seconds duration). Missile Level increases similar to Skill Levels (DifficultyLevels.txt), so we have missLvl1 in Normal, missLvl4 in Nightmare and missLvl8 in Hell. missLvl2 to missLvl8 refer to EMinLev1 and EMaxLev1. For missLvl4 we get Poison Damage = EMinLev1 * (missLvl - 1) + EMin to EMaxLev1 * (missLvl - 1) + EMax This results in 6 * 3 + 6 to 6 * 3 + 16 or 24 to 34 damage in each of 800 Frames duration. For missLvl8 we get Poison Damage = EMinLev1 * (missLvl - 1) + EMin to EMaxLev1 * (missLvl - 1) + EMax This results in 6 * 7 + 6 to 6 * 7 + 16 or 48 to 58 damage in each of 800 Frames duration. It's released by a skill, so no more value adjustments from MonLvl and DifficultyLevels. ___________________________________________ Achmel - poisonhit unique boss modifier (similar to fire/cold enchanted, no other boss has this one assigned) Duration of the death poison explosion will be mLvl * 5 * 150 frames mLvl40, 64, 85 in N, NM, H poisonhit results in added poison damage modifier from MonUMod Code: 66 unique +elem min dmg% (N) - additional poison damage to A1 Standard Attack Code: El1Mode A1 El1Pct gives a percentage of how many of A1 punches will be enhanced with poison. It's set to 30% in each difficulty. Duration is always 1500 frames (60 seconds!). - A2 mummy4 missile (breathing) same like with Radament, but MonLvl adjustments differ: Code: EType pois On Missile Level 1 (missLvl) the added poison damage to A2 breathing will be EMin to EMax, this is pretty much what you would call the base poison damage. So we have 9 to 9 damage in each of 400 frames (16 seconds duration). Missile Level increases similar to Skill Levels (DifficultyLevels.txt), so we have missLvl1 in Normal, missLvl4 in Nightmare and missLvl8 in Hell. missLvl2 to missLvl8 refer to EMinLev1 and EMaxLev1. For missLvl4 we get Poison Damage = EMinLev1 * (missLvl - 1) + EMin to EMaxLev1 * (missLvl - 1) + EMax This results in 5 * 3 + 9 to 5 * 3 + 9 or 24 to 24 damage in each of 400 Frames duration. For missLvl8 we get Poison Damage = EMinLev1 * (missLvl - 1) + EMin to EMaxLev1 * (missLvl - 1) + EMax This results in 5 * 7 + 9 to 5 * 7 + 9 or 44 to 44 damage in each of 400 Frames duration. mLvl 40, 64, 85 in N, NM, H results in MonLvl.txt damage adjustment for ladder mode as follows Normal: mLvl40 -> 25% of listed MonStats/Missiles damage Nightmare: mLvl64 -> 52% of listed MonStats/Missiles damage Hell: mLvl85 -> 96% of listed MonStats/Missiles damage ___________________________________________ Uber Andariel / Lillith / Pandora This will only happen in closed bnet, and the configuration data at the bnet servers may differ from those on local HDD! There's at least rumour that she may have the poisonhit modifier on the realms, see Achmel. Her mLvl is 110. She has same skills and values like Andariel on local disk, so only adjustments differ. Just how much poison damage do they do? - Archon_Wing - 11-13-2007 Thanks. Just how much poison damage do they do? - Baajikiil - 11-21-2007 Quote:Every time I have to fight them in the course of time since I started Diablo, I bang my head against the wall because their poison damage drains my life like mad even with poison resist. I've even tried to turn cleansing on, but it's still quite annoying. Perhaps more annoying is running back to town when your merc dies of poison. So is it just necessary to pack more antidotes vs them?:o Also, there seems to be a major increase in these guys poison damage whenever they hit you with a critcal melee attack that poisons you(the mummys/andariel). It may only double it like other monster critical hits, but it certainly seems to increase the duration as well. BTW, in addition, in NM and hell there is an increase to the length of any poison you get hit by. I think it matches the penalty to resists, but not positive. This can be mitigated with -% poison length, but if you have none you can be poisoned for quite a long time indeed. Usually I just port to town after killing one of these guys, especially Achmel with his unique poisonhit mod. Just how much poison damage do they do? - librarian - 11-21-2007 Heiho, Quote:Also, there seems to be a major increase in these guys poison damage whenever they hit you with a critcal melee attack that poisons you(the mummys/andariel). It may only double it like other monster critical hits, but it certainly seems to increase the duration as well. from all what I've understoood about the code stuff Nefarius over at the Keep is publishing the Critical chance of monsters (!) indeed doubles their elemental damage assigned in MonStats (that is, _not_ their spell damage!) Quote:BTW, in addition, in NM and hell there is an increase to the length of any poison you get hit by. I think it matches the penalty to resists, but not positive. This can be mitigated with -% poison length, but if you have none you can be poisoned for quite a long time indeed. maybe this little table I've compiled some time ago is of help here. Note that it doesn't include the more PvP specific matters like stacking resistances in case you're encountering enemies with high ability to negate your resistances (eg, Conviction). |