-
Notifications
You must be signed in to change notification settings - Fork 751
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Muse Dash: Presets and Song Updates (#2512)
- Loading branch information
1 parent
eec35ab
commit 65f47be
Showing
3 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
from typing import Any, Dict | ||
|
||
MuseDashPresets: Dict[str, Dict[str, Any]] = { | ||
# An option to support Short Sync games. 40 songs. | ||
"No DLC - Short": { | ||
"allow_just_as_planned_dlc_songs": False, | ||
"starting_song_count": 5, | ||
"additional_song_count": 34, | ||
"additional_item_percentage": 80, | ||
"music_sheet_count_percentage": 20, | ||
"music_sheet_win_count_percentage": 90, | ||
}, | ||
# An option to support Short Sync games but adds variety. 40 songs. | ||
"DLC - Short": { | ||
"allow_just_as_planned_dlc_songs": True, | ||
"starting_song_count": 5, | ||
"additional_song_count": 34, | ||
"additional_item_percentage": 80, | ||
"music_sheet_count_percentage": 20, | ||
"music_sheet_win_count_percentage": 90, | ||
}, | ||
# An option to support Longer Sync/Async games. 100 songs. | ||
"DLC - Long": { | ||
"allow_just_as_planned_dlc_songs": True, | ||
"starting_song_count": 8, | ||
"additional_song_count": 91, | ||
"additional_item_percentage": 80, | ||
"music_sheet_count_percentage": 20, | ||
"music_sheet_win_count_percentage": 90, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters