This commit is contained in:
2026-01-24 22:09:56 -06:00
parent 9733da9f44
commit c946981c38
103 changed files with 911 additions and 409 deletions

View File

@@ -1,5 +1,6 @@
from test.inverted_owg.TestInvertedOWG import TestInvertedOWG
class TestDungeons(TestInvertedOWG):
def testFirstDungeonChests(self):

View File

@@ -1,16 +1,22 @@
from test.TestBase import TestBase
from BaseClasses import World
from DoorShuffle import link_doors
from Doors import create_doors
from DoorShuffle import link_doors
from Dungeons import create_dungeons, get_dungeon_item_pool
from OverworldShuffle import link_overworld
from source.overworld.EntranceShuffle2 import link_entrances_new
from ItemList import generate_itempool, difficulties
from ItemList import difficulties, generate_itempool
from Items import ItemFactory
from OverworldGlitchRules import create_owg_connections
from Regions import create_regions, mark_light_dark_world_regions, create_dungeon_regions, create_shops
from OverworldShuffle import link_overworld
from Regions import (
create_dungeon_regions,
create_regions,
create_shops,
mark_light_dark_world_regions,
)
from RoomData import create_rooms
from Rules import set_rules
from test.TestBase import TestBase
from source.overworld.EntranceShuffle2 import link_entrances_new
class TestInvertedOWG(TestBase):