The Witness: Add Beginner Mode option preset #3691
This commit is contained in:
parent
499dad53b1
commit
fc8462f4e9
|
@ -3,6 +3,13 @@ from typing import Any, Dict
|
|||
from .options import *
|
||||
|
||||
witness_option_presets: Dict[str, Dict[str, Any]] = {
|
||||
# Best for beginners. This is just default options, but with a much easier goal that skips the Mountain puzzles.
|
||||
"Beginner Mode": {
|
||||
"victory_condition": VictoryCondition.option_mountain_box_short,
|
||||
|
||||
"puzzle_skip_amount": 15,
|
||||
},
|
||||
|
||||
# Great for short syncs & scratching that "speedrun with light routing elements" itch.
|
||||
"Short & Dense": {
|
||||
"progression_balancing": 30,
|
||||
|
|
Loading…
Reference in New Issue