PDA

View Full Version : Altering Death Saves



tenaveran
May 14th, 2017, 20:32
I'm working on modifying the 5E Ruleset for Pugmire, which uses the 5E SRD rules with some very small variations. Most of the variants are classes, races, feats, yatta. The only variation that really affects the ruleset is that Death Saves have a DC of 15 instead of 10. How can I go about altering the DC of the Death Save in the ruleset? I'm having trouble finding it in the ruleset files.

Trenloe
May 14th, 2017, 20:39
5E ruleset, scripts\manager_action_damage.lua line 508:

elseif nTotal >= 10 then
rMessage.text = rMessage.text .. " [SUCCESS]";

tenaveran
May 14th, 2017, 21:40
Thank You!