TUNIC: Add aliases to LogicRules (#2825)
This commit is contained in:
parent
687af30d14
commit
04b02f5a4a
|
@ -36,8 +36,8 @@ class AbilityShuffling(Toggle):
|
||||||
class LogicRules(Choice):
|
class LogicRules(Choice):
|
||||||
"""Set which logic rules to use for your world.
|
"""Set which logic rules to use for your world.
|
||||||
Restricted: Standard logic, no glitches.
|
Restricted: Standard logic, no glitches.
|
||||||
No Major Glitches: Ice grapples through doors, shooting the west bell, and boss quick kills are included in logic.
|
No Major Glitches: Sneaky Laurels zips, ice grapples through doors, shooting the west bell, and boss quick kills are included in logic.
|
||||||
* Ice grappling through the Ziggurat door is not in logic since you will get stuck in there without Prayer
|
* Ice grappling through the Ziggurat door is not in logic since you will get stuck in there without Prayer.
|
||||||
Unrestricted: Logic in No Major Glitches, as well as ladder storage to get to certain places early.
|
Unrestricted: Logic in No Major Glitches, as well as ladder storage to get to certain places early.
|
||||||
*Special Shop is not in logic without the Hero's Laurels due to soft lock potential.
|
*Special Shop is not in logic without the Hero's Laurels due to soft lock potential.
|
||||||
*Using Ladder Storage to get to individual chests is not in logic to avoid tedium.
|
*Using Ladder Storage to get to individual chests is not in logic to avoid tedium.
|
||||||
|
@ -47,7 +47,9 @@ class LogicRules(Choice):
|
||||||
display_name = "Logic Rules"
|
display_name = "Logic Rules"
|
||||||
option_restricted = 0
|
option_restricted = 0
|
||||||
option_no_major_glitches = 1
|
option_no_major_glitches = 1
|
||||||
|
alias_nmg = 1
|
||||||
option_unrestricted = 2
|
option_unrestricted = 2
|
||||||
|
alias_ur = 2
|
||||||
default = 0
|
default = 0
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue