rename locations accessibility to "full" and make old locations accessibility debug only

This commit is contained in:
alwaysintreble
2023-02-24 21:27:31 -06:00
parent 0eb66957b1
commit 48090b1a3e
8 changed files with 35 additions and 23 deletions

View File

@@ -835,14 +835,21 @@ local_objective = Toggle # local triforce pieces, local dungeon prizes etc.
class Accessibility(Choice):
"""Set rules for reachability of your items/locations.
Locations: ensure everything can be reached and acquired.
Items: ensure all logically relevant items can be acquired.
Full: ensure everything can be reached and acquired.
Minimal: ensure what is needed to reach your goal can be acquired."""
display_name = "Accessibility"
option_locations = 0
option_items = 1
option_full = 0
option_minimal = 2
alias_none = 2
default = 0
class ItemsAccessibility(Accessibility):
"""Set rules for reachability of your items/locations.
Full: ensure everything can be reached and acquired.
Items: all logically relevant items can be acquired. Some items, such as keys, may be self-locking.
Minimal: ensure what is needed to reach your goal can be acquired."""
option_items = 1
default = 1