Module:AbilityTable: Difference between revisions

Jump to navigation Jump to search
Vergir (talk | contribs)
Replace manual_entries with exclude_list; seed debuff_resist exclusions; clean up DELETE notes (with help from vergir-bot LLM)
Vergir (talk | contribs)
mNo edit summary
Line 7: Line 7:
     ["wpndmg"]    = { "melee", "heavy_melee", "weapon_damage_increase" },
     ["wpndmg"]    = { "melee", "heavy_melee", "weapon_damage_increase" },
     ["healreduce"] = { "HealAmpReceivePenaltyPercent", "HealAmpRegenPenaltyPercent", "DisableHealing" },
     ["healreduce"] = { "HealAmpReceivePenaltyPercent", "HealAmpRegenPenaltyPercent", "DisableHealing" },
     ["debuff_resist"]    = {
     ["debuffresist"]    = {
         "StunDuration", "SleepDuration", "SilenceDuration", "SilenceDebuff",
         "StunDuration", "SleepDuration", "SilenceDuration", "SilenceDebuff",
         "PetrifyDuration", "HexDuration", "ImmobilizeDuration", "LiftDuration",
         "PetrifyDuration", "HexDuration", "ImmobilizeDuration", "LiftDuration",
Line 15: Line 15:
         "GroundDashReductionPercent", "StealDuration", "MaxSlowDuration", "EffectDuration",
         "GroundDashReductionPercent", "StealDuration", "MaxSlowDuration", "EffectDuration",
         "BleedDuration", "VenomDuration",
         "BleedDuration", "VenomDuration",
         -- can also just list abilities if they don't have a definitive property
         -- can also just list abilities if they don't have a reusable property
         "Hotel Guest", "Life Drain", "Combo", "Light Eater", "Spirit Lasso", "Card Trick"
         "Hotel Guest", "Life Drain", "Combo", "Light Eater", "Spirit Lasso", "Card Trick"
     },
     },
Line 33: Line 33:
         ["Static Charge"]      = "Stun duration. Delay before stun is not affected.",
         ["Static Charge"]      = "Stun duration. Delay before stun is not affected.",
         ["Enchanter's Satchel"] = "T3 Slow.",
         ["Enchanter's Satchel"] = "T3 Slow.",
        ["Itani Lo Sahn"] = "Despite being described as \"debuff\", it can not be reduced with debuff resist.",
         ["Scorn"]              = "T3 extra damage from Mo & Krill.",
         ["Scorn"]              = "T3 extra damage from Mo & Krill.",
         ["Hotel Guest"]        = "Only T2 late check-out stun can be reduced.",
         ["Hotel Guest"]        = "Only T2 late check-out stun can be reduced.",
Line 52: Line 53:
-- Listed by ability name.
-- Listed by ability name.
local exclude_list = {
local exclude_list = {
     ["debuff_resist"] = {
     ["debuffresist"] = {
        "Itani Lo Sahn",
         "Bookwyrm", -- has debuffdurattion for some reason
         "Bookwyrm",
         "Slam Fire", -- has debuffduration for some reason
         "Slam Fire",
         "Splatter", -- has SlowPercent but no duration to shave off.
         "Splatter",
     },
     },
}
}