Merged Inverted/Open ER code and data

This commit is contained in:
codemann8
2022-12-07 22:05:48 -06:00
parent bd53400fec
commit 52edfcdddb
6 changed files with 732 additions and 1684 deletions

View File

@@ -2,7 +2,7 @@ from BaseClasses import World
from DoorShuffle import link_doors
from Doors import create_doors
from Dungeons import create_dungeons, get_dungeon_item_pool
from EntranceShuffle import link_inverted_entrances
from EntranceShuffle import link_entrances
from InvertedRegions import create_inverted_regions
from ItemList import generate_itempool, difficulties
from Items import ItemFactory
@@ -24,7 +24,7 @@ class TestInverted(TestBase):
create_doors(self.world, 1)
create_rooms(self.world, 1)
create_dungeons(self.world, 1)
link_inverted_entrances(self.world, 1)
link_entrances(self.world, 1)
link_doors(self.world, 1)
generate_itempool(self.world, 1)
self.world.required_medallions[1] = ['Ether', 'Quake']