Module:AbilityTable: Difference between revisions

Jump to navigation Jump to search
Vergir (talk | contribs)
Add moveslow and dashslow stats with Move Slow % and Dash Slow % columns and upgrade notes (with help from vergir-bot LLM)
Vergir (talk | contribs)
m fixes for moveslow / dashslow lists
Line 20: Line 20:
         "Hotel Guest", "Life Drain", "Combo", "Light Eater", "Spirit Lasso", "Card Trick"
         "Hotel Guest", "Life Drain", "Combo", "Light Eater", "Spirit Lasso", "Card Trick"
     },
     },
     ["moveslow"] = { "SlowPercent", "EnemySlowPct", "MoveSlowPercent" },
     ["moveslow"] = { "SlowPercent", "EnemySlowPct", "MoveSlowPercent", "MaxSlowPercent", "MovementSpeedSlow", "MovementSlowPct", "Card Trick" },
     ["dashslow"]  = {
     ["dashslow"]  = { "GroundDashReductionPercent", "MaxGroundDashReductionPercent", "MoveSpeedAndDashSlowPct", "EnemyDashSlowPercent" },
        "GroundDashReductionPercent", "MaxGroundDashReductionPercent",
        "MoveSpeedAndDashSlowPct", "EnemyDashSlowPercent",
    },
}
}


-- Editor-authored notes go here
-- Editor-authored notes go here.
local human_notes = {
local human_notes = {
     ["charges"] = {
     ["charges"] = {
Line 56: Line 53:
}
}


-- Listed by ability name. If adding please include a comment.
-- Type here to exclude ability from a list. If adding please include a comment.
local exclude_list = {
local exclude_list = {
     ["debuffresist"] = {
     ["debuffresist"] = {
Line 64: Line 61:
         "Splatter", -- has SlowPercent but no duration to shave off.
         "Splatter", -- has SlowPercent but no duration to shave off.
     },
     },
    ["moveslow"] = {
    "Riposte", -- has a 40% 4s slow somehow? (SlowPercent + SlowDuration)
    "Grasping Hands", -- has SlowPercent
    },
    ["dashslow"] = {
    "Itani Lo Sahn" -- has GroundDashReductionPercent but also disables stamina.
    }
}
}