Skip to content

Commit

Permalink
Merge pull request #258 from sdglitched/bug/em-scwh
Browse files Browse the repository at this point in the history
Add the missing `refi_stat` values for new weapon `Starcaller's Watch`
  • Loading branch information
gridhead authored Jan 3, 2025
2 parents 14ba70c + fcb5e82 commit e3b713f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions gi_loadouts/data/weap/catalysts/scwh.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,11 @@ class StarcallersWatch(Catalyst):
"Increases Elemental Mastery by 175. Gain the \"Mirror of Night\" effect within 15s after the equipping character creates a shield: The current active party member deals 49% increased DMG to nearby opponents. You can gain the \"Mirror of Night\" effect once every 14s.",
"Increases Elemental Mastery by 200. Gain the \"Mirror of Night\" effect within 15s after the equipping character creates a shield: The current active party member deals 56% increased DMG to nearby opponents. You can gain the \"Mirror of Night\" effect once every 14s.",
]
refi_stat: List[WeaponStat] = [
[WeaponStat(stat_name=WeaponStatType.elemental_mastery, stat_data=100.0)],
[WeaponStat(stat_name=WeaponStatType.elemental_mastery, stat_data=125.0)],
[WeaponStat(stat_name=WeaponStatType.elemental_mastery, stat_data=150.0)],
[WeaponStat(stat_name=WeaponStatType.elemental_mastery, stat_data=175.0)],
[WeaponStat(stat_name=WeaponStatType.elemental_mastery, stat_data=200.0)],
]
file: str = "scwh"

0 comments on commit e3b713f

Please sign in to comment.