Skip to content

Commit

Permalink
Updated bosses group to not include rematches in Sigma's Fortress
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLX5 committed Jun 15, 2024
1 parent d303f1a commit b468f87
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion worlds/mmx/Locations.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,23 @@ def __init__(self, player: int, name: str = '', address: int = None, parent=None
location_table = {}

location_groups = {
"Bosses": {location for location in all_locations.keys() if "Defeated" in location},
"Bosses": {
LocationName.armored_armadillo_boss,
LocationName.chill_penguin_boss,
LocationName.spark_mandrill_boss,
LocationName.launch_octopus_boss,
LocationName.boomer_kuwanger_boss,
LocationName.sting_chameleon_boss,
LocationName.storm_eagle_boss,
LocationName.flame_mammoth_boss,
LocationName.sigma_fortress_1_vile,
LocationName.sigma_fortress_1_bospider,
LocationName.sigma_fortress_2_rangda_bangda,
LocationName.sigma_fortress_3_d_rex,
LocationName.sigma_fortress_4_velguarder,
LocationName.sigma_fortress_4_sigma,
LocationName.spark_mandrill_mini_boss,
},
"Heart Tanks": {location for location in all_locations.keys() if "- Heart Tank" in location},
"Sub Tanks": {location for location in all_locations.keys() if "- Sub Tank" in location},
"Upgrade Capsules": {location for location in all_locations.keys() if "Capsule" in location},
Expand Down

0 comments on commit b468f87

Please sign in to comment.