Tests: Add a test for fill to WorldTestBase (#2049)

* Tests: Add a test for fill to WorldTestBase

* test items and minimal accessibility, only bailing out when no reachable locations exist.

* put egg shard max/goal at sane values
114 locations - 35 always-present progression items - 25 excluded locations from settings <= 74 egg shards
past me can't do arithmetic

* f

* i'm bad at git

* make fill import local to prevent circular imports

---------

Co-authored-by: espeon65536 <espeon65536@gmail.com>
This commit is contained in:
Aaron Wagener
2023-10-08 05:08:47 -05:00
committed by GitHub
parent fd93f6e722
commit 5eeaf834cb
2 changed files with 37 additions and 3 deletions

View File

@@ -14,7 +14,7 @@ class EggShardsRequired(Range):
"""Number of dragon egg shards to collect to spawn bosses."""
display_name = "Egg Shards Required"
range_start = 0
range_end = 74
range_end = 50
default = 0
@@ -22,7 +22,7 @@ class EggShardsAvailable(Range):
"""Number of dragon egg shards available to collect."""
display_name = "Egg Shards Available"
range_start = 0
range_end = 74
range_end = 50
default = 0