Skip to content

Commit

Permalink
more itemlevels
Browse files Browse the repository at this point in the history
  • Loading branch information
Bloodmallet committed Apr 21, 2024
1 parent 43f6e76 commit 176a713
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions simc_support/game_data/ItemLevel.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,14 @@ 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,
},
Source.MISSION: {
Season.SEASON_1: [],
Season.SEASON_2: [],
Season.SEASON_3: [-1],
Season.SEASON_4: [-1],
},
Source.MISSION: {Season.SEASON_1: [], Season.SEASON_2: [], Season.SEASON_3: [-1]},
Source.PROFESSION: {
Season.SEASON_1: [
*_prof_range(306), # base
Expand Down Expand Up @@ -153,13 +159,20 @@ def _season_4_upgrade_range(upgrade_level: int) -> typing.List[int]:
Season.SEASON_1: [379, 382, 385, 389, 392],
Season.SEASON_2: [],
Season.SEASON_3: [-1],
Season.SEASON_4: [-1],
},
Source.WORLD_BOSS: {
Season.SEASON_1: [395],
Season.SEASON_2: [415],
Season.SEASON_3: [-1],
Season.SEASON_4: [-1],
},
Source.WORLD_DROP: {
Season.SEASON_1: [],
Season.SEASON_2: [],
Season.SEASON_3: [],
Season.SEASON_4: [],
},
Source.WORLD_DROP: {Season.SEASON_1: [], Season.SEASON_2: [], Season.SEASON_3: []},
Source.WORLD_QUEST: {
Season.SEASON_1: [372, 376, 379, 382, 385, 389],
Season.SEASON_2: _s2_adventurer,
Expand Down Expand Up @@ -201,6 +214,7 @@ def _season_4_upgrade_range(upgrade_level: int) -> typing.List[int]:
Season.SEASON_1: [],
Season.SEASON_2: _s2_hero[-2:],
Season.SEASON_3: [-1],
Season.SEASON_4: [-1],
},
Source.RAID: {
Season.SEASON_1: {
Expand Down Expand Up @@ -267,6 +281,10 @@ def _season_4_upgrade_range(upgrade_level: int) -> typing.List[int]:
InstanceType.DUNGEON: _s3_adventurer,
InstanceType.RAID: _s3_hero,
},
Season.SEASON_4: {
InstanceType.DUNGEON: _s4_adventurer,
InstanceType.RAID: _s4_hero,
},
},
}
"""Source > Season [ > InstanceType | > RaidTier ]
Expand Down

0 comments on commit 176a713

Please sign in to comment.