Files
Grinch-AP/worlds/kdl3/Presets.py
Silvris 644f75978d Kirby's Dream Land 3: Implement New Game (#2119)
Co-authored-by: Alchav <59858495+Alchav@users.noreply.github.com>
Co-authored-by: Aaron Wagener <mmmcheese158@gmail.com>
Co-authored-by: Doug Hoskisson <beauxq@yahoo.com>
Co-authored-by: Fabian Dill <Berserker66@users.noreply.github.com>
2024-03-05 09:59:55 -06:00

57 lines
1.5 KiB
Python

from typing import Dict, Any
all_random = {
"progression_balancing": "random",
"accessibility": "random",
"death_link": "random",
"game_language": "random",
"goal": "random",
"goal_speed": "random",
"total_heart_stars": "random",
"heart_stars_required": "random",
"filler_percentage": "random",
"trap_percentage": "random",
"gooey_trap_weight": "random",
"slow_trap_weight": "random",
"ability_trap_weight": "random",
"jumping_target": "random",
"stage_shuffle": "random",
"boss_shuffle": "random",
"allow_bb": "random",
"animal_randomization": "random",
"copy_ability_randomization": "random",
"strict_bosses": "random",
"open_world": "random",
"ow_boss_requirement": "random",
"boss_requirement_random": "random",
"consumables": "random",
"kirby_flavor_preset": "random",
"gooey_flavor_preset": "random",
"music_shuffle": "random",
}
beginner = {
"goal": "zero",
"goal_speed": "normal",
"total_heart_stars": 50,
"heart_stars_required": 30,
"filler_percentage": 25,
"trap_percentage": 0,
"gooey_trap_weight": "random",
"slow_trap_weight": "random",
"ability_trap_weight": "random",
"jumping_target": 5,
"stage_shuffle": "pattern",
"boss_shuffle": "shuffled",
"allow_bb": "random",
"strict_bosses": True,
"open_world": True,
"ow_boss_requirement": 3,
}
kdl3_options_presets: Dict[str, Dict[str, Any]] = {
"All Random": all_random,
"Beginner": beginner,
}