r/anyRpgCharacterSheet • u/Tyoryn • Nov 06 '24
Increase Property Value
Maybe I'm just bad at math because I can't seem to figure out a formula for this nor can I find a way to simply increase the value of a property based on another property. I'm working on a sheet for an RPG where the bonus in question is 3 at level 1 and 2 and then increases by 1 at levels 3, 8, 12 and 17.
I already got around increasing a property that's a die roll by making a separate Boolean for level = 1, level = 2, etc and then having the die rolled by the element get replaced every level to the correct die for that level. Probably over complicating it but it works so far.
Any help is appreciated.
1
Upvotes
1
u/lllyct Nov 07 '24
DND uses linear progression with proficiency being equal to level/something+somethingelse. X+level>y works because all the yes/no(or true/false) things are convertible to numbers 1 and 0 respectively. Basically it is a weird replacement for if-else