p4535992 / foundryvtt-variant-encumbrance-dnd5e

A FoundryVTT module, providing a visual modification to player character sheets to better display the effects of the Encumbrance variant ruleset in the PHB.
MIT License
3 stars 4 forks source link

Tie creature bulk to STR score #4

Closed weepingminotaur closed 1 year ago

weepingminotaur commented 1 year ago

Currently, there is no way to adjust the maximum bulk for a creature, which is tied to size. Would appreciate being able to tie bulk to a creature's Strength score (not modifier).

p4535992 commented 1 year ago

The code (for bulk calculation) is bounded to the str mod (and the size of course).

https://github.com/p4535992/foundryvtt-variant-encumbrance-dnd5e/blob/3b8436d385021a469b3f38450d8a79cdf8f79902/src/scripts/VariantEncumbranceBulkImpl.ts#L586

did you have some suggestion for a better behaviour ?

weepingminotaur commented 1 year ago

I was asking about being able to tie it purely to STR score, not to STR modifier or size.

p4535992 commented 1 year ago

ok is very simple to integrate. Some people use DAE for accomplish the same thing if you can find that useful. For your use case is enough to replace the actorEntity.system.abilities.str.mod with actorEntity.system.abilities.str.value ?

weepingminotaur commented 1 year ago

OK, I'll try that -- thanks for the suggestion!

p4535992 commented 1 year ago

version 0.11.7 has this module setting now