Skip to content

Commit

Permalink
upenable chest items to scale to 515, enable tooth and satchel
Browse files Browse the repository at this point in the history
  • Loading branch information
Bloodmallet committed May 4, 2024
1 parent 470e601 commit 1e86083
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion simc_support/game_data/ItemLevel.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def _season_4_upgrade_range(upgrade_level: int) -> typing.List[int]:
Season.SEASON_1: [],
Season.SEASON_2: _s2_veteran,
Season.SEASON_3: _s3_adventurer,
Season.SEASON_4: _s4_adventurer,
Season.SEASON_4: _s4_champion,
},
Source.MISSION: {
Season.SEASON_1: [],
Expand Down
7 changes: 5 additions & 2 deletions simc_support/game_data/Trinket.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,8 @@ def source(self) -> Source:
205229: Source.WORLD_QUEST, # Magma Serpent Lure
205262: Source.WORLD_QUEST, # Magmaclaw Lure
205276: Source.WORLD_QUEST, # Deepflayer Lure
192797: Source.CALLING, # Gral's Discarded Tooth
198695: Source.CALLING, # Bottomless Reliquary Satchel
# need to flag these because of timewalking :s
133252: Source.DUNGEON, # Rainsong
133246: Source.DUNGEON, # Heart of Thunder
Expand Down Expand Up @@ -586,8 +588,9 @@ def seasons(self) -> typing.List[Season]:
return [s for s in Season]

if (
self.source == Source.CALLING
and "Paracausal Fragment of " in self.full_name
self.source
== Source.CALLING
# and "Paracausal Fragment of " in self.full_name
):
return [Season.SEASON_2, Season.SEASON_3, Season.SEASON_4]
# TODO: add more logic to present more trinkets as season trinkets
Expand Down

0 comments on commit 1e86083

Please sign in to comment.