28 lines
		
	
	
		
			756 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			28 lines
		
	
	
		
			756 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| 
								 | 
							
								from typing import List
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								from Options import ProgressionBalancing, Accessibility, OptionGroup
							 | 
						||
| 
								 | 
							
								from .Options import (Campaign, ItemShuffle, TimeIsMoney, EndingChoice, PermanentCoins, DoubleJumpGlitch, CoinSanity,
							 | 
						||
| 
								 | 
							
								                      CoinSanityRange, DeathLink)
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								dlcq_option_groups: List[OptionGroup] = [
							 | 
						||
| 
								 | 
							
								    OptionGroup("General", [
							 | 
						||
| 
								 | 
							
								        Campaign,
							 | 
						||
| 
								 | 
							
								        ItemShuffle,
							 | 
						||
| 
								 | 
							
								        CoinSanity,
							 | 
						||
| 
								 | 
							
								    ]),
							 | 
						||
| 
								 | 
							
								    OptionGroup("Customization", [
							 | 
						||
| 
								 | 
							
								        EndingChoice,
							 | 
						||
| 
								 | 
							
								        PermanentCoins,
							 | 
						||
| 
								 | 
							
								        CoinSanityRange,
							 | 
						||
| 
								 | 
							
								    ]),
							 | 
						||
| 
								 | 
							
								    OptionGroup("Tedious and Grind", [
							 | 
						||
| 
								 | 
							
								        TimeIsMoney,
							 | 
						||
| 
								 | 
							
								        DoubleJumpGlitch,
							 | 
						||
| 
								 | 
							
								    ]),
							 | 
						||
| 
								 | 
							
								    OptionGroup("Advanced Options", [
							 | 
						||
| 
								 | 
							
								        DeathLink,
							 | 
						||
| 
								 | 
							
								        ProgressionBalancing,
							 | 
						||
| 
								 | 
							
								        Accessibility,
							 | 
						||
| 
								 | 
							
								    ]),
							 | 
						||
| 
								 | 
							
								]
							 |