[SM64] Separate Entrance Shuffle pools option and MIPS cost option improvement (#1137)

* Add separate pool option for entrance shuffle and swap MIPS costs if MIPS1Cost is greater

* Changes based on N00by's suggestions

* split into secret_entrance_ids and course_entrance_ids
This commit is contained in:
Alchav
2022-10-27 19:43:02 -04:00
committed by GitHub
parent c09e089f9d
commit 813ea6ef8b
2 changed files with 12 additions and 10 deletions

View File

@@ -46,7 +46,7 @@ class MIPS1Cost(Range):
class MIPS2Cost(Range):
"""How many stars are required to spawn MIPS the secound time. Must be bigger or equal MIPS1Cost"""
"""How many stars are required to spawn MIPS the second time."""
range_start = 0
range_end = 80
default = 50
@@ -72,7 +72,8 @@ class AreaRandomizer(Choice):
display_name = "Entrance Randomizer"
option_Off = 0
option_Courses_Only = 1
option_Courses_and_Secrets = 2
option_Courses_and_Secrets_Separate = 2
option_Courses_and_Secrets = 3
class BuddyChecks(Toggle):