Return the CombatModifier that corresponds to a data-test-kind attribute on a Being-sheet strike-mode cell.
data-test-kind
"attack"
sm.attack
"block"
sm.defense.block
"counterstrike"
sm.defense.counterstrike
Returns undefined for an unrecognised kind or when a defense kind is requested but the mode is not a MeleeStrikeMode.
undefined
The strike mode to read the modifier from.
The data-test-kind string: "attack", "block", or "counterstrike".
The matching CombatModifier, or undefined.
Return the CombatModifier that corresponds to a
data-test-kindattribute on a Being-sheet strike-mode cell."attack"→sm.attack(all strike modes)"block"→sm.defense.block(melee only)"counterstrike"→sm.defense.counterstrike(melee only)Returns
undefinedfor an unrecognised kind or when a defense kind is requested but the mode is not a MeleeStrikeMode.