 334781e976
			
		
	
	334781e976
	
	
	
		
			
			Co-authored-by: Remy Jette <remy@remyjette.com> Co-authored-by: Jouramie <16137441+Jouramie@users.noreply.github.com> Co-authored-by: Aaron Wagener <mmmcheese158@gmail.com>
		
			
				
	
	
		
			11 lines
		
	
	
		
			225 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			225 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from dataclasses import dataclass
 | |
| 
 | |
| from .game_item import ItemSource
 | |
| 
 | |
| 
 | |
| @dataclass(frozen=True, kw_only=True)
 | |
| class MachineSource(ItemSource):
 | |
|     item: str  # this should be optional (worm bin)
 | |
|     machine: str
 | |
|     # seasons
 |