Aquaria: Logic bug fixes (#3679)
* Fixing logic bugs * Require energy attack in the cathedral and energy form in the body * King Jelly can be beaten easily with only the Dual Form * I think that I have a problem with my left and right... * There is a monster that is blocking the path, soo need attack to pass * The Li cage is not accessible without the Sunken city boss * Removing useless space. Co-authored-by: Exempt-Medic <60412657+Exempt-Medic@users.noreply.github.com> * Two more minors logic modification * Adapting tests to af9b6cd * Reformat the Region file --------- Co-authored-by: Exempt-Medic <60412657+Exempt-Medic@users.noreply.github.com>
This commit is contained in:
		| @@ -45,7 +45,7 @@ class AquariaLocations: | ||||
|         "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, | ||||
|         "Home Water, bulb in the end of the left path from the Verse Cave": 698061, | ||||
|         "Home Water, bulb in the end of the path close to the Verse Cave": 698061, | ||||
|         "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, | ||||
| @@ -67,7 +67,7 @@ class AquariaLocations: | ||||
|  | ||||
|     locations_song_cave = { | ||||
|         "Song Cave, Erulian spirit": 698206, | ||||
|         "Song Cave, bulb in the top left part": 698071, | ||||
|         "Song Cave, bulb in the top right part": 698071, | ||||
|         "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, | ||||
| @@ -152,6 +152,9 @@ class AquariaLocations: | ||||
|  | ||||
|     locations_arnassi_path = { | ||||
|         "Arnassi Ruins, Arnassi Statue": 698164, | ||||
|     } | ||||
|  | ||||
|     locations_arnassi_cave_transturtle = { | ||||
|         "Arnassi Ruins, Transturtle": 698217, | ||||
|     } | ||||
|  | ||||
| @@ -269,9 +272,12 @@ class AquariaLocations: | ||||
|     } | ||||
|  | ||||
|     locations_forest_bl = { | ||||
|         "Kelp Forest bottom left area, Transturtle": 698212, | ||||
|     } | ||||
|  | ||||
|     locations_forest_bl_sc = { | ||||
|         "Kelp Forest bottom left area, bulb close to the spirit crystals": 698054, | ||||
|         "Kelp Forest bottom left area, Walker Baby": 698186, | ||||
|         "Kelp Forest bottom left area, Transturtle": 698212, | ||||
|     } | ||||
|  | ||||
|     locations_forest_br = { | ||||
| @@ -370,7 +376,7 @@ class AquariaLocations: | ||||
|  | ||||
|     locations_sun_temple_r = { | ||||
|         "Sun Temple, first bulb of the temple": 698091, | ||||
|         "Sun Temple, bulb on the left part": 698092, | ||||
|         "Sun Temple, bulb on the right part": 698092, | ||||
|         "Sun Temple, bulb in the hidden room of the right part": 698093, | ||||
|         "Sun Temple, Sun Key": 698182, | ||||
|     } | ||||
| @@ -402,6 +408,9 @@ class AquariaLocations: | ||||
|         "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, | ||||
|     } | ||||
|  | ||||
|     locations_abyss_r_transturtle = { | ||||
|         "Abyss right area, Transturtle": 698214, | ||||
|     } | ||||
|  | ||||
| @@ -499,6 +508,7 @@ location_table = { | ||||
|     **AquariaLocations.locations_skeleton_path_sc, | ||||
|     **AquariaLocations.locations_arnassi, | ||||
|     **AquariaLocations.locations_arnassi_path, | ||||
|     **AquariaLocations.locations_arnassi_cave_transturtle, | ||||
|     **AquariaLocations.locations_arnassi_crab_boss, | ||||
|     **AquariaLocations.locations_sun_temple_l, | ||||
|     **AquariaLocations.locations_sun_temple_r, | ||||
| @@ -509,6 +519,7 @@ location_table = { | ||||
|     **AquariaLocations.locations_abyss_l, | ||||
|     **AquariaLocations.locations_abyss_lb, | ||||
|     **AquariaLocations.locations_abyss_r, | ||||
|     **AquariaLocations.locations_abyss_r_transturtle, | ||||
|     **AquariaLocations.locations_energy_temple_1, | ||||
|     **AquariaLocations.locations_energy_temple_2, | ||||
|     **AquariaLocations.locations_energy_temple_3, | ||||
| @@ -530,6 +541,7 @@ location_table = { | ||||
|     **AquariaLocations.locations_forest_tr, | ||||
|     **AquariaLocations.locations_forest_tr_fp, | ||||
|     **AquariaLocations.locations_forest_bl, | ||||
|     **AquariaLocations.locations_forest_bl_sc, | ||||
|     **AquariaLocations.locations_forest_br, | ||||
|     **AquariaLocations.locations_forest_boss, | ||||
|     **AquariaLocations.locations_forest_boss_entrance, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Louis M
					Louis M