Shoulder Burden
Even the heaviest loads barely slow you.
Preqrequisite
Str 15, character level 5th.
Benefit
At the beginning of your turn, you can choose to ignore the encumbered condition and treat the overburdened condition as though you were instead encumbered for a number of rounds equal to your Strength modifier. Once you use this ability, you can’t do so again until you rest for 10 minutes to regain Stamina Points. In addition, the encumbered condition reduces your speeds by 5 feet (rather than by 10 feet), and the overburdened condition reduces your speeds to 10 feet (rather than to 5 feet).
Source
Ports of Call pg. 43
Dragonscript
ID
eb6d8e2f43d8ed23b9586f9b
Preqrequisite
and [{character.strength >= 15}, {character.level >= 5}];
Benefit
if or [{character.encumbered == true}, {character.overburdened == true}] then [if {character.speed.land > 0} then bonus 5 to character.speed.land as enhancement,if {character.speed.burrow > 0} then bonus 5 to character.speed.burrow as enhancement,if {character.speed.swim > 0} then bonus 5 to character.speed.swim as enhancement,if {character.speed.climb > 0} then bonus 5 to character.speed.climb as enhancement,if {character.speed.fly.clumsy > 0} then bonus 5 to character.speed.fly.clumsy as enhancement,if {character.speed.fly.average > 0} then bonus 5 to character.speed.fly.average as enhancement,if {character.speed.fly.perfect > 0} then bonus 5 to character.speed.fly.perfect as enhancement];