39 lines
		
	
	
		
			591 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			39 lines
		
	
	
		
			591 B
		
	
	
	
		
			Python
		
	
	
	
	
	
|   | structure_deck_selection = { | ||
|  |     # DRAGON'S ROAR | ||
|  |     0: 0x1, | ||
|  |     # ZOMBIE MADNESS | ||
|  |     1: 0x5, | ||
|  |     # BLAZING DESTRUCTION | ||
|  |     2: 0x9, | ||
|  |     # FURY FROM THE DEEP | ||
|  |     3: 0xD, | ||
|  |     # Warrior'S TRIUMPH | ||
|  |     4: 0x11, | ||
|  |     # SPELLCASTER'S JUDGEMENT | ||
|  |     5: 0x15, | ||
|  |     # Draft Mode | ||
|  |     6: 0x1, | ||
|  | } | ||
|  | 
 | ||
|  | banlist_ids = { | ||
|  |     # NoList | ||
|  |     0: 0x0, | ||
|  |     # September 2003 | ||
|  |     1: 0x5, | ||
|  |     # March 2004 | ||
|  |     2: 0x6, | ||
|  |     # September 2004 | ||
|  |     3: 0x7, | ||
|  |     # March 2005 | ||
|  |     4: 0x8, | ||
|  |     # September 2005 | ||
|  |     5: 0x9, | ||
|  | } | ||
|  | 
 | ||
|  | function_addresses = { | ||
|  |     # Count Campaign Opponents | ||
|  |     0: 0xF0C8, | ||
|  |     # Count Challenges | ||
|  |     1: 0xEF3A, | ||
|  | } |