15 lines
		
	
	
		
			330 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			330 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from BaseClasses import Item
 | |
| 
 | |
| class SM64Item(Item):
 | |
|     game: str = "Super Mario 64"
 | |
| 
 | |
| item_table = {
 | |
|     "Power Star": 3626000,
 | |
|     "Basement Key": 3626178,
 | |
|     "Second Floor Key": 3626179,
 | |
|     "Progressive Key": 3626180,
 | |
|     "Wing Cap": 3626181,
 | |
|     "Metal Cap": 3626182,
 | |
|     "Vanish Cap": 3626183,
 | |
|     "1Up Mushroom": 3626184
 | |
| }  | 
