forked from mirror/Archipelago
Some checks failed
Analyze modified files / flake8 (push) Failing after 2m28s
Build / build-win (push) Has been cancelled
Build / build-ubuntu2204 (push) Has been cancelled
ctest / Test C++ ubuntu-latest (push) Has been cancelled
ctest / Test C++ windows-latest (push) Has been cancelled
Analyze modified files / mypy (push) Has been cancelled
Build and Publish Docker Images / Push Docker image to Docker Hub (push) Successful in 5m4s
Native Code Static Analysis / scan-build (push) Failing after 5m2s
type check / pyright (push) Successful in 1m7s
unittests / Test Python 3.11.2 ubuntu-latest (push) Failing after 16m23s
unittests / Test Python 3.12 ubuntu-latest (push) Failing after 28m19s
unittests / Test Python 3.13 ubuntu-latest (push) Failing after 14m49s
unittests / Test hosting with 3.13 on ubuntu-latest (push) Successful in 5m0s
unittests / Test Python 3.13 macos-latest (push) Has been cancelled
unittests / Test Python 3.11 windows-latest (push) Has been cancelled
unittests / Test Python 3.13 windows-latest (push) Has been cancelled
53 lines
1.4 KiB
Python
53 lines
1.4 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",
|
|
"max_heart_stars": "random",
|
|
"heart_stars_required": "random",
|
|
"filler_percentage": "random",
|
|
"trap_percentage": "random",
|
|
# "trap_weights": "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",
|
|
"starsanity": "random",
|
|
"kirby_flavor_preset": "random",
|
|
"gooey_flavor_preset": "random",
|
|
"music_shuffle": "random",
|
|
}
|
|
|
|
beginner = {
|
|
"goal": "zero",
|
|
"goal_speed": "normal",
|
|
"max_heart_stars": 50,
|
|
"heart_stars_required": 30,
|
|
"filler_percentage": 25,
|
|
"trap_percentage": 0,
|
|
"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,
|
|
}
|