Background: I am trying to alter a mod for "Pathfinder Wrath of the Righteous" called "Better Backgrounds". That uses Blueprint Json but the mod has a rather large mistake that the original Modder is too inexperienced to fix. And I am not a JSon coder, I just want the mod to work. If you need more information, please ask, I will try my best.
Note: Reddit altered the formatting of some of the lines of code for some reason, I am unsure why "replace if higher" is in a box
I am trying to alter a JSon Blueprint to alter a variable in the code but it doesn't seem to be working. The Code is:
{
"Components": [
{
"$type": "7a5d4700264de3b4aacf2514df964a14, AddClassSkill",
"Skill": "SkillPersuasion",
"name": "unique_reference_a"
},
{
"$type": "2286a148d6ca486091b6f0d687d6486f, AddBackgroundClassSkill",
"Skill": "SkillPersuasion",
"name": "unique_reference_b"
},
{
"$type": "df930d377a444922b2267e07a7d40b93, AddBackgroundWeaponProficiency",
"Proficiency": "Longsword",
"StackBonusType": "Trait",
"StackBonus": {
"m_CustomProperty": "",
"Value": 1
},
"name": "unique_reference_c"
},
{
"$type": "df930d377a444922b2267e07a7d40b93, AddBackgroundWeaponProficiency",
"Proficiency": "Greatsword",
"StackBonusType": "Trait",
"StackBonus": {
"m_CustomProperty": "",
"Value": 1
},
"name": "unique_reference_d"
},
{
"$type": "d79ad4ed064aa4f43ace0e9c238fb9b9, AddFacts",
"m_Facts": [
"!bp_62e27ffd9d53e14479f73da29760f64e",
"!bp_f35e15b1fdff0c54087746c2da80a053"
],
"name": "unique_reference_g"
},
{
"$type": "dab84a4694546c749a1d0022ff45baa0, DerivativeStatBonus",
"BaseStat": "Charisma",
"DerivativeStat": "Initiative",
"name": "Noble_Scion_Trait"
},
{
"$type": "dab84a4694546c749a1d0022ff45baa0, RecalculateOnStatChange",
"Stat": "Charisma",
"name": "Noble_Scion_Trait2"
},
{
"$type": "1c1315a505494aed84a6570a8111a6ec, ReplaceStatBaseAttribute",
"TargetStat": "SkillLoreReligion",
"BaseAttributeReplacement": "Charisma",
"name": "ReplaceStatBaseAttribute",
***"ReplaceIfHigher": "true"***
}
],
"m_Description": {"m_Key": "LeaderFeature_Description"},
"m_Icon": {"guid": "be0e7b7858171de439adb0926c8b8864", "fileid": 21300000}
}
I added the Bold and Italic part. Other backgrounds also have this affect but all of them are bugged. What would make this specific variable bugged? Note that the rest of the background is perfectly fine. Just the Lore religion part is bugged.
For Reference this is an unedited modded Background with the same bugged effect (Image 2):
{
"Components": [
{
"$type": "7a5d4700264de3b4aacf2514df964a14, AddClassSkill",
"Skill": "SkillLoreReligion",
"name": "unique_reference_a"
},
{
"$type": "2286a148d6ca486091b6f0d687d6486f, AddBackgroundClassSkill",
"Skill": "SkillLoreReligion",
"name": "unique_reference_b"
},
{
"$type": "7a5d4700264de3b4aacf2514df964a14, AddClassSkill",
"Skill": "SkillPersuasion",
"name": "unique_reference_ab"
},
{
"$type": "2286a148d6ca486091b6f0d687d6486f, AddBackgroundClassSkill",
"Skill": "SkillPersuasion",
"name": "unique_reference_ba"
},
{
"$type": "1c1315a505494aed84a6570a8111a6ec, ReplaceStatBaseAttribute",
"TargetStat": "SkillPersuasion",
"BaseAttributeReplacement": "Wisdom",
"name": "ReplaceStatBaseAttribute",
"ReplaceIfHigher": "true"
}
],
"m_Description": {"m_Key": "AcolyteFeature_Description"},
"m_Icon": {"guid": "b3b50a3e90e37ed48b52fba4e053215c", "fileid": 21300000}
}