You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
store max_hp_level (?), since attribute_constitution_ may change...but the lower value would have been used to increase max_hp_ on earlier levels in that case.
armor_name_ (and hence armor_dex_cap_) is difficult to derive (and is missing) from JSON exported from Pathbuilder 2e. Formula for armor_class_ is 10 + min(attribute_dexterity_, armors_dex_cap[armor_name]) + prof + /build/acTotal/acItemBonus # -penalties +bonuses really though # attribute_dexterity_ == /build/acTotal/acAbilityBonus but that is redundant
prof can be derived from /build/acTotal/acProfBonus--result should be stored in rank_armor_ as per an earlier bullet point above
attribute_dexterity_ must be calculated from /build/abilities/dex (larger #) as per a bullet point above
The JSON contains /build/acTotal/acTotal but that should not be printed, since it changes every level.
Change key_ability_caption_ from "Key Ability:" to "Spellcasting Ability:" in appropriate cases.
The text was updated successfully, but these errors were encountered:
PF2-specific:
hp_per_level = class_hp_per_level[/build/class]; max_hp_ = /build/attributes/ancestryhp + /build/attributes/classhp + hp_per_level * /build/level
rank_of_base_value[(stat_value-/build/level)]
rank_of_base_value = {1: "T", 2: "E", 3: "M", 4: "L"}
-https://2e.aonprd.com/Search.aspx?include-types=class&sort=name-asc&display=table&columns=icon_image+ability+hp+tradition+attack_proficiency+defense_proficiency+fortitude_proficiency+reflex_proficiency+will_proficiency+perception_proficiency+skill_proficiency+rarity+pfs
-https://2e.aonprd.com/Search.aspx?include-types=ancestry&sort=rarity-asc+name-asc&display=table&columns=hp+size+speed+ability_boost+ability_flaw+language+vision+rarity+pfs
max_hp_ = ancestry_hp + (class_hp + attribute_constitution_) * level_
-https://2e.aonprd.com/Rules.aspx?ID=2076&Redirected=1max_hp_level
(?), since attribute_constitution_ may change...but the lower value would have been used to increase max_hp_ on earlier levels in that case.armor_name_ (and hence armor_dex_cap_) is difficult to derive (and is missing) from JSON exported from Pathbuilder 2e. Formula for armor_class_ is
10 + min(attribute_dexterity_, armors_dex_cap[armor_name]) + prof + /build/acTotal/acItemBonus # -penalties +bonuses really though # attribute_dexterity_ == /build/acTotal/acAbilityBonus but that is redundant
Change
key_ability_caption_
from "Key Ability:" to "Spellcasting Ability:" in appropriate cases.The text was updated successfully, but these errors were encountered: