| 
									
										
										
										
											2023-11-26 14:13:59 +10:00
										 |  |  |  | from typing import Any, Dict | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | MuseDashPresets: Dict[str, Dict[str, Any]] = { | 
					
						
							|  |  |  |  |     # An option to support Short Sync games. 40 songs. | 
					
						
							|  |  |  |  |     "No DLC - Short": { | 
					
						
							| 
									
										
										
										
											2024-06-05 05:45:26 +10:00
										 |  |  |  |         "dlc_packs": [], | 
					
						
							| 
									
										
										
										
											2023-11-26 14:13:59 +10:00
										 |  |  |  |         "starting_song_count": 5, | 
					
						
							|  |  |  |  |         "additional_song_count": 34, | 
					
						
							|  |  |  |  |         "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": { | 
					
						
							| 
									
										
										
										
											2024-06-05 05:45:26 +10:00
										 |  |  |  |         "dlc_packs": ["Muse Plus"], | 
					
						
							| 
									
										
										
										
											2023-11-26 14:13:59 +10:00
										 |  |  |  |         "starting_song_count": 5, | 
					
						
							|  |  |  |  |         "additional_song_count": 34, | 
					
						
							|  |  |  |  |         "music_sheet_count_percentage": 20, | 
					
						
							|  |  |  |  |         "music_sheet_win_count_percentage": 90, | 
					
						
							|  |  |  |  |     }, | 
					
						
							|  |  |  |  |     # An option to support Longer Sync/Async games. 100 songs. | 
					
						
							|  |  |  |  |     "DLC - Long": { | 
					
						
							| 
									
										
										
										
											2024-06-05 05:45:26 +10:00
										 |  |  |  |         "dlc_packs": ["Muse Plus"], | 
					
						
							| 
									
										
										
										
											2023-11-26 14:13:59 +10:00
										 |  |  |  |         "starting_song_count": 8, | 
					
						
							|  |  |  |  |         "additional_song_count": 91, | 
					
						
							|  |  |  |  |         "music_sheet_count_percentage": 20, | 
					
						
							|  |  |  |  |         "music_sheet_win_count_percentage": 90, | 
					
						
							|  |  |  |  |     }, | 
					
						
							|  |  |  |  | } |