Module:AbilityHints: Difference between revisions

Vergir (talk | contribs)
m add sorting for ability hints
Vergir (talk | contribs)
m add dontbreakstealth ability hint
Line 11: Line 11:
-- Automatic hints that get shown without corresponding {{AbilityInteraction}}. Powered by Module:AbilityTable
-- Automatic hints that get shown without corresponding {{AbilityInteraction}}. Powered by Module:AbilityTable
local CONFIG = {
local CONFIG = {
     { list = "melee",           file = "Melee Charge.png",    tip = "Benefits from melee items ([[Melee Charge]])" },
     { list = "melee",           file = "Melee Charge.png",    tip = "Benefits from melee items (e.g. [[Melee Charge]])" },
     { list = "movementbased",   file = "Slowing Hex.png",      tip = "Disabled by [[Slowing Hex]]" },
    { list = "dontbreakstealth", file = "Veil Walker.png",      tip = "Casting does not break from [[Veil Walker]] or [[Shadow Weave]]" },
     { list = "debuffresist",   file = "Debuff Reducer.png",  tip = "Debuff duration reduced by [[Debuff Resist]]" },
     { list = "movementbased",   file = "Slowing Hex.png",      tip = "Disabled by [[Slowing Hex]]" },
     { list = "heal",           file = "Healing Booster.png",  tip = "[[Healing]] amplified by [[Healing Booster]] and affected by healing reduction" },
     { list = "debuffresist",     file = "Debuff Reducer.png",  tip = "Debuff duration reduced by [[Debuff Resist]]" },
     { list = "reactivebarrier", file = "Reactive Barrier.png", tip = "Triggers [[Reactive Barrier]]" },
     { list = "heal",             file = "Healing Booster.png",  tip = "[[Healing]] amplified by [[Healing Booster]] and affected by healing reduction" },
     { list = "dispelmagic",     file = "Dispel Magic.png",    tip = "Effect can be [[Dispel Magic|dispelled]]" },
     { list = "reactivebarrier", file = "Reactive Barrier.png", tip = "Triggers [[Reactive Barrier]]" },
     { list = "indomitable",     file = "Indomitable.png",      tip = "Disable prevented by [[Indomitable]]" },
     { list = "dispelmagic",     file = "Dispel Magic.png",    tip = "Effect can be [[Dispel Magic|dispelled]]" },
     { list = "unstoppable",     file = "Unstoppable.png",      tip = "Disable prevented by [[Unstoppable]]" },
     { list = "indomitable",     file = "Indomitable.png",      tip = "Disable prevented by [[Indomitable]]" },
     { list = "platedarmor",     file = "Plated Armor.png",    tip = "On-shot effect prevented by [[Plated Armor]]" },
     { list = "unstoppable",     file = "Unstoppable.png",      tip = "Negative effects suppressed by [[Unstoppable]]" },
     { list = "summons",         file = "Monster Rounds.png",  tip = "Summons affected by [[Monster Rounds]] and [[Heroic Aura]]" },
     { list = "platedarmor",     file = "Plated Armor.png",    tip = "On-shot effect prevented by [[Plated Armor]]" },
     { list = "summons",         file = "Monster Rounds.png",  tip = "Summons affected by [[Monster Rounds]] and [[Heroic Aura]]" },
}
}