| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  | """
 | 
					
						
							|  |  |  | Author: Louis M | 
					
						
							|  |  |  | Date: Fri, 15 Mar 2024 18:41:40 +0000 | 
					
						
							|  |  |  | Description: Manage locations in the Aquaria game multiworld randomizer | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from BaseClasses import Location | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class AquariaLocation(Location): | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     A location in the game. | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     game: str = "Aquaria" | 
					
						
							|  |  |  |     """The name of the game""" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def __init__(self, player: int, name="", code=None, parent=None) -> None: | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         Initialisation of the object | 
					
						
							|  |  |  |         :param player: the ID of the player | 
					
						
							|  |  |  |         :param name: the name of the location | 
					
						
							|  |  |  |         :param code: the ID (or address) of the location (Event if None) | 
					
						
							|  |  |  |         :param parent: the Region that this location belongs to | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         super(AquariaLocation, self).__init__(player, name, code, parent) | 
					
						
							|  |  |  |         self.event = code is None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class AquariaLocations: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_verse_cave_r = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Verse Cave, bulb in the skeleton room": 698107, | 
					
						
							| 
									
										
										
										
											2024-07-05 16:40:26 -04:00
										 |  |  |         "Verse Cave, bulb in the path right of the skeleton room": 698108, | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Verse Cave right area, Big Seed": 698175, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_verse_cave_l = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Verse Cave, the Naija hint about the shield ability": 698200, | 
					
						
							|  |  |  |         "Verse Cave left area, bulb in the center part": 698021, | 
					
						
							|  |  |  |         "Verse Cave left area, bulb in the right part": 698022, | 
					
						
							|  |  |  |         "Verse Cave left area, bulb under the rock at the end of the path": 698023, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_home_water = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Home Water, bulb below the grouper fish": 698058, | 
					
						
							|  |  |  |         "Home Water, bulb in the path below Nautilus Prime": 698059, | 
					
						
							|  |  |  |         "Home Water, bulb in the little room above the grouper fish": 698060, | 
					
						
							| 
									
										
										
										
											2024-08-07 18:19:52 -04:00
										 |  |  |         "Home Water, bulb in the end of the path close to the Verse Cave": 698061, | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Home Water, bulb in the top left path": 698062, | 
					
						
							|  |  |  |         "Home Water, bulb in the bottom left room": 698063, | 
					
						
							|  |  |  |         "Home Water, bulb close to Naija's Home": 698064, | 
					
						
							|  |  |  |         "Home Water, bulb under the rock in the left path from the Verse Cave": 698065, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_home_water_nautilus = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Home Water, Nautilus Egg": 698194, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_home_water_transturtle = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Home Water, Transturtle": 698213, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_naija_home = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Naija's Home, bulb after the energy door": 698119, | 
					
						
							|  |  |  |         "Naija's Home, bulb under the rock at the right of the main path": 698120, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_song_cave = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Song Cave, Erulian spirit": 698206, | 
					
						
							| 
									
										
										
										
											2024-08-07 18:19:52 -04:00
										 |  |  |         "Song Cave, bulb in the top right part": 698071, | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Song Cave, bulb in the big anemone room": 698072, | 
					
						
							|  |  |  |         "Song Cave, bulb in the path to the singing statues": 698073, | 
					
						
							|  |  |  |         "Song Cave, bulb under the rock in the path to the singing statues": 698074, | 
					
						
							|  |  |  |         "Song Cave, bulb under the rock close to the song door": 698075, | 
					
						
							|  |  |  |         "Song Cave, Verse Egg": 698160, | 
					
						
							|  |  |  |         "Song Cave, Jelly Beacon": 698178, | 
					
						
							|  |  |  |         "Song Cave, Anemone Seed": 698162, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_energy_temple_1 = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Energy Temple first area, beating the Energy Statue": 698205, | 
					
						
							|  |  |  |         "Energy Temple first area, bulb in the bottom room blocked by a rock": 698027, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_energy_temple_idol = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Energy Temple first area, Energy Idol": 698170, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_energy_temple_2 = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Energy Temple second area, bulb under the rock": 698028, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_energy_temple_altar = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Energy Temple bottom entrance, Krotite Armor": 698163, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_energy_temple_3 = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Energy Temple third area, bulb in the bottom path": 698029, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_energy_temple_boss = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Energy Temple boss area, Fallen God Tooth": 698169, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_energy_temple_blaster_room = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Energy Temple blaster room, Blaster Egg": 698195, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_openwater_tl = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Open Water top left area, bulb under the rock in the right path": 698001, | 
					
						
							|  |  |  |         "Open Water top left area, bulb under the rock in the left path": 698002, | 
					
						
							|  |  |  |         "Open Water top left area, bulb to the right of the save crystal": 698003, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_openwater_tr = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Open Water top right area, bulb in the small path before Mithalas": 698004, | 
					
						
							|  |  |  |         "Open Water top right area, bulb in the path from the left entrance": 698005, | 
					
						
							|  |  |  |         "Open Water top right area, bulb in the clearing close to the bottom exit": 698006, | 
					
						
							|  |  |  |         "Open Water top right area, bulb in the big clearing close to the save crystal": 698007, | 
					
						
							|  |  |  |         "Open Water top right area, bulb in the big clearing to the top exit": 698008, | 
					
						
							|  |  |  |         "Open Water top right area, first urn in the Mithalas exit": 698148, | 
					
						
							|  |  |  |         "Open Water top right area, second urn in the Mithalas exit": 698149, | 
					
						
							|  |  |  |         "Open Water top right area, third urn in the Mithalas exit": 698150, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2024-07-05 16:40:26 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     locations_openwater_tr_turtle = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Open Water top right area, bulb in the turtle room": 698009, | 
					
						
							|  |  |  |         "Open Water top right area, Transturtle": 698211, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_openwater_bl = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Open Water bottom left area, bulb behind the chomper fish": 698011, | 
					
						
							|  |  |  |         "Open Water bottom left area, bulb inside the lowest fish pass": 698010, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_skeleton_path = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Open Water skeleton path, bulb close to the right exit": 698012, | 
					
						
							|  |  |  |         "Open Water skeleton path, bulb behind the chomper fish": 698013, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_skeleton_path_sc = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Open Water skeleton path, King Skull": 698177, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_arnassi = { | 
					
						
							|  |  |  |         "Arnassi Ruins, bulb in the right part": 698014, | 
					
						
							|  |  |  |         "Arnassi Ruins, bulb in the left part": 698015, | 
					
						
							|  |  |  |         "Arnassi Ruins, bulb in the center part": 698016, | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Arnassi Ruins, Song Plant Spore": 698179, | 
					
						
							|  |  |  |         "Arnassi Ruins, Arnassi Armor": 698191, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_arnassi_path = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Arnassi Ruins, Arnassi Statue": 698164, | 
					
						
							| 
									
										
										
										
											2024-08-07 18:19:52 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_arnassi_cave_transturtle = { | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |         "Arnassi Ruins, Transturtle": 698217, | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_arnassi_crab_boss = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Arnassi Ruins, Crab Armor": 698187, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_simon = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Simon Says area, beating Simon Says": 698156, | 
					
						
							|  |  |  |         "Simon Says area, Transturtle": 698216, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_mithalas_city = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Mithalas City, first bulb in the left city part": 698030, | 
					
						
							|  |  |  |         "Mithalas City, second bulb in the left city part": 698035, | 
					
						
							|  |  |  |         "Mithalas City, bulb in the right part": 698031, | 
					
						
							|  |  |  |         "Mithalas City, bulb at the top of the city": 698033, | 
					
						
							|  |  |  |         "Mithalas City, first bulb in a broken home": 698034, | 
					
						
							|  |  |  |         "Mithalas City, second bulb in a broken home": 698041, | 
					
						
							|  |  |  |         "Mithalas City, bulb in the bottom left part": 698037, | 
					
						
							|  |  |  |         "Mithalas City, first bulb in one of the homes": 698038, | 
					
						
							|  |  |  |         "Mithalas City, second bulb in one of the homes": 698039, | 
					
						
							|  |  |  |         "Mithalas City, first urn in one of the homes": 698123, | 
					
						
							|  |  |  |         "Mithalas City, second urn in one of the homes": 698124, | 
					
						
							|  |  |  |         "Mithalas City, first urn in the city reserve": 698125, | 
					
						
							|  |  |  |         "Mithalas City, second urn in the city reserve": 698126, | 
					
						
							|  |  |  |         "Mithalas City, third urn in the city reserve": 698127, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_mithalas_city_top_path = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Mithalas City, first bulb at the end of the top path": 698032, | 
					
						
							|  |  |  |         "Mithalas City, second bulb at the end of the top path": 698040, | 
					
						
							|  |  |  |         "Mithalas City, bulb in the top path": 698036, | 
					
						
							|  |  |  |         "Mithalas City, Mithalas Pot": 698174, | 
					
						
							| 
									
										
										
										
											2024-06-11 18:59:46 -04:00
										 |  |  |         "Mithalas City, urn in the Castle flower tube entrance": 698128, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_mithalas_city_fishpass = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Mithalas City, Doll": 698173, | 
					
						
							|  |  |  |         "Mithalas City, urn inside a home fish pass": 698129, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_cathedral_l = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Mithalas City Castle, bulb in the flesh hole": 698042, | 
					
						
							| 
									
										
										
										
											2024-07-05 16:40:26 -04:00
										 |  |  |         "Mithalas City Castle, Blue Banner": 698165, | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Mithalas City Castle, urn in the bedroom": 698130, | 
					
						
							|  |  |  |         "Mithalas City Castle, first urn of the single lamp path": 698131, | 
					
						
							|  |  |  |         "Mithalas City Castle, second urn of the single lamp path": 698132, | 
					
						
							|  |  |  |         "Mithalas City Castle, urn in the bottom room": 698133, | 
					
						
							|  |  |  |         "Mithalas City Castle, first urn on the entrance path": 698134, | 
					
						
							|  |  |  |         "Mithalas City Castle, second urn on the entrance path": 698135, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_cathedral_l_tube = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Mithalas City Castle, beating the Priests": 698208, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_cathedral_l_sc = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Mithalas City Castle, Trident Head": 698183, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_cathedral_r = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Mithalas Cathedral, first urn in the top right room": 698136, | 
					
						
							|  |  |  |         "Mithalas Cathedral, second urn in the top right room": 698137, | 
					
						
							|  |  |  |         "Mithalas Cathedral, third urn in the top right room": 698138, | 
					
						
							|  |  |  |         "Mithalas Cathedral, urn in the flesh room with fleas": 698139, | 
					
						
							|  |  |  |         "Mithalas Cathedral, first urn in the bottom right path": 698140, | 
					
						
							|  |  |  |         "Mithalas Cathedral, second urn in the bottom right path": 698141, | 
					
						
							|  |  |  |         "Mithalas Cathedral, urn behind the flesh vein": 698142, | 
					
						
							|  |  |  |         "Mithalas Cathedral, urn in the top left eyes boss room": 698143, | 
					
						
							|  |  |  |         "Mithalas Cathedral, first urn in the path behind the flesh vein": 698144, | 
					
						
							|  |  |  |         "Mithalas Cathedral, second urn in the path behind the flesh vein": 698145, | 
					
						
							|  |  |  |         "Mithalas Cathedral, third urn in the path behind the flesh vein": 698146, | 
					
						
							|  |  |  |         "Mithalas Cathedral, fourth urn in the top right room": 698147, | 
					
						
							|  |  |  |         "Mithalas Cathedral, Mithalan Dress": 698189, | 
					
						
							| 
									
										
										
										
											2024-07-05 16:40:26 -04:00
										 |  |  |         "Mithalas Cathedral, urn below the left entrance": 698198, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_cathedral_underground = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Cathedral Underground, bulb in the center part": 698113, | 
					
						
							|  |  |  |         "Cathedral Underground, first bulb in the top left part": 698114, | 
					
						
							|  |  |  |         "Cathedral Underground, second bulb in the top left part": 698115, | 
					
						
							|  |  |  |         "Cathedral Underground, third bulb in the top left part": 698116, | 
					
						
							|  |  |  |         "Cathedral Underground, bulb close to the save crystal": 698117, | 
					
						
							|  |  |  |         "Cathedral Underground, bulb in the bottom right path": 698118, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_cathedral_boss = { | 
					
						
							| 
									
										
										
										
											2024-07-05 16:40:26 -04:00
										 |  |  |         "Mithalas boss area, beating Mithalan God": 698202, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_forest_tl = { | 
					
						
							|  |  |  |         "Kelp Forest top left area, bulb in the bottom left clearing": 698044, | 
					
						
							|  |  |  |         "Kelp Forest top left area, bulb in the path down from the top left clearing": 698045, | 
					
						
							|  |  |  |         "Kelp Forest top left area, bulb in the top left clearing": 698046, | 
					
						
							| 
									
										
										
										
											2024-06-11 18:59:46 -04:00
										 |  |  |         "Kelp Forest top left area, Jelly Egg": 698185, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_forest_tl_fp = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Kelp Forest top left area, bulb close to the Verse Egg": 698047, | 
					
						
							|  |  |  |         "Kelp Forest top left area, Verse Egg": 698158, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_forest_tr = { | 
					
						
							|  |  |  |         "Kelp Forest top right area, bulb under the rock in the right path": 698048, | 
					
						
							|  |  |  |         "Kelp Forest top right area, bulb at the left of the center clearing": 698049, | 
					
						
							|  |  |  |         "Kelp Forest top right area, bulb in the left path's big room": 698051, | 
					
						
							|  |  |  |         "Kelp Forest top right area, bulb in the left path's small room": 698052, | 
					
						
							|  |  |  |         "Kelp Forest top right area, bulb at the top of the center clearing": 698053, | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Kelp Forest top right area, Black Pearl": 698167, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_forest_tr_fp = { | 
					
						
							|  |  |  |         "Kelp Forest top right area, bulb in the top fish pass": 698050, | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_forest_bl = { | 
					
						
							| 
									
										
										
										
											2024-08-07 18:19:52 -04:00
										 |  |  |         "Kelp Forest bottom left area, Transturtle": 698212, | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_forest_bl_sc = { | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |         "Kelp Forest bottom left area, bulb close to the spirit crystals": 698054, | 
					
						
							| 
									
										
										
										
											2024-07-05 16:40:26 -04:00
										 |  |  |         "Kelp Forest bottom left area, Walker Baby": 698186, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_forest_br = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Kelp Forest bottom right area, Odd Container": 698168, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_forest_boss = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Kelp Forest boss area, beating Drunian God": 698204, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_forest_boss_entrance = { | 
					
						
							|  |  |  |         "Kelp Forest boss room, bulb at the bottom of the area": 698055, | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_forest_fish_cave = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Kelp Forest bottom left area, Fish Cave puzzle": 698207, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_forest_sprite_cave = { | 
					
						
							|  |  |  |         "Kelp Forest sprite cave, bulb inside the fish pass": 698056, | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_forest_sprite_cave_tube = { | 
					
						
							|  |  |  |         "Kelp Forest sprite cave, bulb in the second room": 698057, | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Kelp Forest sprite cave, Seed Bag": 698176, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_mermog_cave = { | 
					
						
							|  |  |  |         "Mermog cave, bulb in the left part of the cave": 698121, | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_mermog_boss = { | 
					
						
							|  |  |  |         "Mermog cave, Piranha Egg": 698197, | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_veil_tl = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "The Veil top left area, In Li's cave": 698199, | 
					
						
							|  |  |  |         "The Veil top left area, bulb under the rock in the top right path": 698078, | 
					
						
							|  |  |  |         "The Veil top left area, bulb hidden behind the blocking rock": 698076, | 
					
						
							|  |  |  |         "The Veil top left area, Transturtle": 698209, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_veil_tl_fp = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "The Veil top left area, bulb inside the fish pass": 698077, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_turtle_cave = { | 
					
						
							|  |  |  |         "Turtle cave, Turtle Egg": 698184, | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_turtle_cave_bubble = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Turtle cave, bulb in Bubble Cliff": 698000, | 
					
						
							|  |  |  |         "Turtle cave, Urchin Costume": 698193, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_veil_tr_r = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "The Veil top right area, bulb in the middle of the wall jump cliff": 698079, | 
					
						
							|  |  |  |         "The Veil top right area, Golden Starfish": 698180, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_veil_tr_l = { | 
					
						
							| 
									
										
										
										
											2024-06-11 18:59:46 -04:00
										 |  |  |         "The Veil top right area, bulb at the top of the waterfall": 698080, | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "The Veil top right area, Transturtle": 698210, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_veil_bl = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "The Veil bottom area, bulb in the left path": 698082, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_veil_b_sc = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "The Veil bottom area, bulb in the spirit path": 698081, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_veil_bl_fp = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "The Veil bottom area, Verse Egg": 698157, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_veil_br = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "The Veil bottom area, Stone Head": 698181, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_octo_cave_t = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Octopus Cave, Dumbo Egg": 698196, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_octo_cave_b = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Octopus Cave, bulb in the path below the Octopus Cave path": 698122, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_sun_temple_l = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Sun Temple, bulb in the top left part": 698094, | 
					
						
							|  |  |  |         "Sun Temple, bulb in the top right part": 698095, | 
					
						
							|  |  |  |         "Sun Temple, bulb at the top of the high dark room": 698096, | 
					
						
							|  |  |  |         "Sun Temple, Golden Gear": 698171, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_sun_temple_r = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Sun Temple, first bulb of the temple": 698091, | 
					
						
							| 
									
										
										
										
											2024-08-07 18:19:52 -04:00
										 |  |  |         "Sun Temple, bulb on the right part": 698092, | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Sun Temple, bulb in the hidden room of the right part": 698093, | 
					
						
							|  |  |  |         "Sun Temple, Sun Key": 698182, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_sun_temple_boss_path = { | 
					
						
							|  |  |  |         "Sun Worm path, first path bulb": 698017, | 
					
						
							|  |  |  |         "Sun Worm path, second path bulb": 698018, | 
					
						
							|  |  |  |         "Sun Worm path, first cliff bulb": 698019, | 
					
						
							|  |  |  |         "Sun Worm path, second cliff bulb": 698020, | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_sun_temple_boss = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Sun Temple boss area, beating Sun God": 698203, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_abyss_l = { | 
					
						
							|  |  |  |         "Abyss left area, bulb in hidden path room": 698024, | 
					
						
							|  |  |  |         "Abyss left area, bulb in the right part": 698025, | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Abyss left area, Glowing Seed": 698166, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |         "Abyss left area, Glowing Plant": 698172, | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_abyss_lb = { | 
					
						
							|  |  |  |         "Abyss left area, bulb in the bottom fish pass": 698026, | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_abyss_r = { | 
					
						
							|  |  |  |         "Abyss right area, bulb behind the rock in the whale room": 698109, | 
					
						
							|  |  |  |         "Abyss right area, bulb in the middle path": 698110, | 
					
						
							|  |  |  |         "Abyss right area, bulb behind the rock in the middle path": 698111, | 
					
						
							|  |  |  |         "Abyss right area, bulb in the left green room": 698112, | 
					
						
							| 
									
										
										
										
											2024-08-07 18:19:52 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_abyss_r_transturtle = { | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |         "Abyss right area, Transturtle": 698214, | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_ice_cave = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Ice Cave, bulb in the room to the right": 698083, | 
					
						
							|  |  |  |         "Ice Cave, first bulb in the top exit room": 698084, | 
					
						
							|  |  |  |         "Ice Cave, second bulb in the top exit room": 698085, | 
					
						
							|  |  |  |         "Ice Cave, third bulb in the top exit room": 698086, | 
					
						
							|  |  |  |         "Ice Cave, bulb in the left room": 698087, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_bubble_cave = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Bubble Cave, bulb in the left cave wall": 698089, | 
					
						
							|  |  |  |         "Bubble Cave, bulb in the right cave wall (behind the ice crystal)": 698090, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_bubble_cave_boss = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Bubble Cave, Verse Egg": 698161, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_king_jellyfish_cave = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "King Jellyfish Cave, bulb in the right path from King Jelly": 698088, | 
					
						
							|  |  |  |         "King Jellyfish Cave, Jellyfish Costume": 698188, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_whale = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "The Whale, Verse Egg": 698159, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_sunken_city_r = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Sunken City right area, crate close to the save crystal": 698154, | 
					
						
							|  |  |  |         "Sunken City right area, crate in the left bottom room": 698155, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_sunken_city_l = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Sunken City left area, crate in the little pipe room": 698151, | 
					
						
							|  |  |  |         "Sunken City left area, crate close to the save crystal": 698152, | 
					
						
							|  |  |  |         "Sunken City left area, crate before the bedroom": 698153, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_sunken_city_l_bedroom = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Sunken City left area, Girl Costume": 698192, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_sunken_city_boss = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Sunken City, bulb on top of the boss area": 698043, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_body_c = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "The Body center area, breaking Li's cage": 698201, | 
					
						
							| 
									
										
										
										
											2024-07-05 16:40:26 -04:00
										 |  |  |         "The Body center area, bulb on the main path blocking tube": 698097, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_body_l = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "The Body left area, first bulb in the top face room": 698066, | 
					
						
							|  |  |  |         "The Body left area, second bulb in the top face room": 698069, | 
					
						
							|  |  |  |         "The Body left area, bulb below the water stream": 698067, | 
					
						
							|  |  |  |         "The Body left area, bulb in the top path to the top face room": 698068, | 
					
						
							|  |  |  |         "The Body left area, bulb in the bottom face room": 698070, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_body_rt = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "The Body right area, bulb in the top face room": 698100, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_body_rb = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "The Body right area, bulb in the top path to the bottom face room": 698098, | 
					
						
							|  |  |  |         "The Body right area, bulb in the bottom face room": 698099, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_body_b = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "The Body bottom area, bulb in the Jelly Zap room": 698101, | 
					
						
							|  |  |  |         "The Body bottom area, bulb in the nautilus room": 698102, | 
					
						
							|  |  |  |         "The Body bottom area, Mutant Costume": 698190, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_final_boss_tube = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Final Boss area, first bulb in the turtle room": 698103, | 
					
						
							|  |  |  |         "Final Boss area, second bulb in the turtle room": 698104, | 
					
						
							|  |  |  |         "Final Boss area, third bulb in the turtle room": 698105, | 
					
						
							|  |  |  |         "Final Boss area, Transturtle": 698215, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     locations_final_boss = { | 
					
						
							| 
									
										
										
										
											2024-06-01 07:09:34 -04:00
										 |  |  |         "Final Boss area, bulb in the boss third form room": 698106, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | location_table = { | 
					
						
							|  |  |  |     **AquariaLocations.locations_openwater_tl, | 
					
						
							|  |  |  |     **AquariaLocations.locations_openwater_tr, | 
					
						
							|  |  |  |     **AquariaLocations.locations_openwater_tr_turtle, | 
					
						
							|  |  |  |     **AquariaLocations.locations_openwater_bl, | 
					
						
							|  |  |  |     **AquariaLocations.locations_skeleton_path, | 
					
						
							|  |  |  |     **AquariaLocations.locations_skeleton_path_sc, | 
					
						
							|  |  |  |     **AquariaLocations.locations_arnassi, | 
					
						
							|  |  |  |     **AquariaLocations.locations_arnassi_path, | 
					
						
							| 
									
										
										
										
											2024-08-07 18:19:52 -04:00
										 |  |  |     **AquariaLocations.locations_arnassi_cave_transturtle, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     **AquariaLocations.locations_arnassi_crab_boss, | 
					
						
							|  |  |  |     **AquariaLocations.locations_sun_temple_l, | 
					
						
							|  |  |  |     **AquariaLocations.locations_sun_temple_r, | 
					
						
							|  |  |  |     **AquariaLocations.locations_sun_temple_boss_path, | 
					
						
							|  |  |  |     **AquariaLocations.locations_sun_temple_boss, | 
					
						
							|  |  |  |     **AquariaLocations.locations_verse_cave_r, | 
					
						
							|  |  |  |     **AquariaLocations.locations_verse_cave_l, | 
					
						
							|  |  |  |     **AquariaLocations.locations_abyss_l, | 
					
						
							|  |  |  |     **AquariaLocations.locations_abyss_lb, | 
					
						
							|  |  |  |     **AquariaLocations.locations_abyss_r, | 
					
						
							| 
									
										
										
										
											2024-08-07 18:19:52 -04:00
										 |  |  |     **AquariaLocations.locations_abyss_r_transturtle, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     **AquariaLocations.locations_energy_temple_1, | 
					
						
							|  |  |  |     **AquariaLocations.locations_energy_temple_2, | 
					
						
							|  |  |  |     **AquariaLocations.locations_energy_temple_3, | 
					
						
							|  |  |  |     **AquariaLocations.locations_energy_temple_boss, | 
					
						
							|  |  |  |     **AquariaLocations.locations_energy_temple_blaster_room, | 
					
						
							|  |  |  |     **AquariaLocations.locations_energy_temple_altar, | 
					
						
							|  |  |  |     **AquariaLocations.locations_energy_temple_idol, | 
					
						
							|  |  |  |     **AquariaLocations.locations_mithalas_city, | 
					
						
							|  |  |  |     **AquariaLocations.locations_mithalas_city_top_path, | 
					
						
							|  |  |  |     **AquariaLocations.locations_mithalas_city_fishpass, | 
					
						
							|  |  |  |     **AquariaLocations.locations_cathedral_l, | 
					
						
							|  |  |  |     **AquariaLocations.locations_cathedral_l_tube, | 
					
						
							|  |  |  |     **AquariaLocations.locations_cathedral_l_sc, | 
					
						
							|  |  |  |     **AquariaLocations.locations_cathedral_r, | 
					
						
							|  |  |  |     **AquariaLocations.locations_cathedral_underground, | 
					
						
							|  |  |  |     **AquariaLocations.locations_cathedral_boss, | 
					
						
							|  |  |  |     **AquariaLocations.locations_forest_tl, | 
					
						
							|  |  |  |     **AquariaLocations.locations_forest_tl_fp, | 
					
						
							|  |  |  |     **AquariaLocations.locations_forest_tr, | 
					
						
							|  |  |  |     **AquariaLocations.locations_forest_tr_fp, | 
					
						
							|  |  |  |     **AquariaLocations.locations_forest_bl, | 
					
						
							| 
									
										
										
										
											2024-08-07 18:19:52 -04:00
										 |  |  |     **AquariaLocations.locations_forest_bl_sc, | 
					
						
							| 
									
										
										
										
											2024-05-17 06:29:00 -04:00
										 |  |  |     **AquariaLocations.locations_forest_br, | 
					
						
							|  |  |  |     **AquariaLocations.locations_forest_boss, | 
					
						
							|  |  |  |     **AquariaLocations.locations_forest_boss_entrance, | 
					
						
							|  |  |  |     **AquariaLocations.locations_forest_sprite_cave, | 
					
						
							|  |  |  |     **AquariaLocations.locations_forest_sprite_cave_tube, | 
					
						
							|  |  |  |     **AquariaLocations.locations_forest_fish_cave, | 
					
						
							|  |  |  |     **AquariaLocations.locations_home_water, | 
					
						
							|  |  |  |     **AquariaLocations.locations_home_water_transturtle, | 
					
						
							|  |  |  |     **AquariaLocations.locations_home_water_nautilus, | 
					
						
							|  |  |  |     **AquariaLocations.locations_body_l, | 
					
						
							|  |  |  |     **AquariaLocations.locations_body_rt, | 
					
						
							|  |  |  |     **AquariaLocations.locations_body_rb, | 
					
						
							|  |  |  |     **AquariaLocations.locations_body_c, | 
					
						
							|  |  |  |     **AquariaLocations.locations_body_b, | 
					
						
							|  |  |  |     **AquariaLocations.locations_final_boss_tube, | 
					
						
							|  |  |  |     **AquariaLocations.locations_final_boss, | 
					
						
							|  |  |  |     **AquariaLocations.locations_song_cave, | 
					
						
							|  |  |  |     **AquariaLocations.locations_veil_tl, | 
					
						
							|  |  |  |     **AquariaLocations.locations_veil_tl_fp, | 
					
						
							|  |  |  |     **AquariaLocations.locations_turtle_cave, | 
					
						
							|  |  |  |     **AquariaLocations.locations_turtle_cave_bubble, | 
					
						
							|  |  |  |     **AquariaLocations.locations_veil_tr_r, | 
					
						
							|  |  |  |     **AquariaLocations.locations_veil_tr_l, | 
					
						
							|  |  |  |     **AquariaLocations.locations_veil_bl, | 
					
						
							|  |  |  |     **AquariaLocations.locations_veil_b_sc, | 
					
						
							|  |  |  |     **AquariaLocations.locations_veil_bl_fp, | 
					
						
							|  |  |  |     **AquariaLocations.locations_veil_br, | 
					
						
							|  |  |  |     **AquariaLocations.locations_ice_cave, | 
					
						
							|  |  |  |     **AquariaLocations.locations_king_jellyfish_cave, | 
					
						
							|  |  |  |     **AquariaLocations.locations_bubble_cave, | 
					
						
							|  |  |  |     **AquariaLocations.locations_bubble_cave_boss, | 
					
						
							|  |  |  |     **AquariaLocations.locations_naija_home, | 
					
						
							|  |  |  |     **AquariaLocations.locations_mermog_cave, | 
					
						
							|  |  |  |     **AquariaLocations.locations_mermog_boss, | 
					
						
							|  |  |  |     **AquariaLocations.locations_octo_cave_t, | 
					
						
							|  |  |  |     **AquariaLocations.locations_octo_cave_b, | 
					
						
							|  |  |  |     **AquariaLocations.locations_sunken_city_l, | 
					
						
							|  |  |  |     **AquariaLocations.locations_sunken_city_r, | 
					
						
							|  |  |  |     **AquariaLocations.locations_sunken_city_boss, | 
					
						
							|  |  |  |     **AquariaLocations.locations_sunken_city_l_bedroom, | 
					
						
							|  |  |  |     **AquariaLocations.locations_simon, | 
					
						
							|  |  |  |     **AquariaLocations.locations_whale, | 
					
						
							|  |  |  | } |