Aquaria: implement new game (#3197)

This is a new world for the Aquaria game (https://www.bit-blot.com/aquaria/).
This commit is contained in:
Louis M
2024-05-17 06:29:00 -04:00
committed by GitHub
parent 7900e4c9a4
commit 89a2a3c35b
29 changed files with 3851 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
"""
Author: Louis M
Date: Fri, 03 May 2024 14:07:35 +0000
Description: Unit test used to test accessibility of region with the home water confine via option
"""
from worlds.aquaria.test import AquariaTestBase
class ConfinedHomeWaterAccessTest(AquariaTestBase):
"""Unit test used to test accessibility of region with the unconfine home water option disabled"""
options = {
"unconfine_home_water": 0,
"early_energy_form": False
}
def test_confine_home_water_location(self) -> None:
"""Test region accessible with confined home water"""
self.assertFalse(self.can_reach_region("Open water top left area"), "Can reach Open water top left area")
self.assertFalse(self.can_reach_region("Home Water, turtle room"), "Can reach Home Water, turtle room")