Skip to content

Commit

Permalink
Merge pull request #72541 from casswedson/fix-school-buff-perks
Browse files Browse the repository at this point in the history
fix: Magiclysm x BombasticPerks school focus perks
  • Loading branch information
Maleclypse authored Mar 24, 2024
2 parents 03988ba + 58991ab commit c060518
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"eoc_type": "EVENT",
"required_event": "opens_spellbook",
"condition": { "u_has_trait": "perk_caster_level_up_animist" },
"effect": { "math": [ "u_spellcasting_adjustment('caster_level', 'school': 'ANIMIST' )", "=", "1" ] }
"effect": { "math": [ "u_school_level_adjustment( 'ANIMIST' )", "+=", "1" ] }
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"eoc_type": "EVENT",
"required_event": "opens_spellbook",
"condition": { "u_has_trait": "perk_caster_level_up_biomancer" },
"effect": { "math": [ "u_spellcasting_adjustment('caster_level', 'school': 'BIOMANCER' )", "=", "1" ] }
"effect": { "math": [ "u_school_level_adjustment( 'BIOMANCER' )", "+=", "1" ] }
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"eoc_type": "EVENT",
"required_event": "opens_spellbook",
"condition": { "u_has_trait": "perk_caster_level_up_druid" },
"effect": { "math": [ "u_spellcasting_adjustment('caster_level', 'school': 'DRUID' )", "=", "1" ] }
"effect": { "math": [ "u_school_level_adjustment( 'DRUID' )", "+=", "1" ] }
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"eoc_type": "EVENT",
"required_event": "opens_spellbook",
"condition": { "u_has_trait": "perk_caster_level_up_earthshaper" },
"effect": { "math": [ "u_spellcasting_adjustment('caster_level', 'school': 'EARTHSHAPER' )", "=", "1" ] }
"effect": { "math": [ "u_school_level_adjustment( 'EARTHSHAPER' )", "+=", "1" ] }
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"eoc_type": "EVENT",
"required_event": "opens_spellbook",
"condition": { "u_has_trait": "perk_caster_level_up_kelvinist" },
"effect": { "math": [ "u_spellcasting_adjustment('caster_level', 'school': 'KELVINIST' )", "=", "1" ] }
"effect": { "math": [ "u_school_level_adjustment( 'KELVINIST' )", "+=", "1" ] }
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"eoc_type": "EVENT",
"required_event": "opens_spellbook",
"condition": { "u_has_trait": "perk_caster_level_up_magus" },
"effect": { "math": [ "u_spellcasting_adjustment('caster_level', 'school': 'MAGUS' )", "=", "1" ] }
"effect": { "math": [ "u_school_level_adjustment( 'MAGUS' )", "+=", "1" ] }
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"eoc_type": "EVENT",
"required_event": "opens_spellbook",
"condition": { "u_has_trait": "perk_caster_level_up_stormshaper" },
"effect": { "math": [ "u_spellcasting_adjustment('caster_level', 'school': 'STORMSHAPER' )", "=", "1" ] }
"effect": { "math": [ "u_school_level_adjustment( 'STORMSHAPER' )", "+=", "1" ] }
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"eoc_type": "EVENT",
"required_event": "opens_spellbook",
"condition": { "u_has_trait": "perk_caster_level_up_technomancer" },
"effect": { "math": [ "u_spellcasting_adjustment('caster_level', 'school': 'TECHNOMANCER' )", "=", "1" ] }
"effect": { "math": [ "u_school_level_adjustment( 'TECHNOMANCER' )", "+=", "1" ] }
}
]

0 comments on commit c060518

Please sign in to comment.