 21a3c74783
			
		
	
	21a3c74783
	
	
	
		
			
			Changelog:
Features:
- New goal
  - Grand Prix
    - Complete all of the Kart Races to win!
- New optional Location Checks
  - Omosanity (Activating Omochao)
  - Kart Race Mode
- Ring Loss option
  - `Classic` - lose all rings on hit
  - `Modern` - lose 20 rings on hit
  - `OHKO` - instantly die on hit, regardless of ring count (shields still protect you)
- New Trap
  - Pong Trap
Quality of Life:
- SA2B is now distributed as an `.apworld`
- Maximum possible number of Emblems in item pool is increased from 180 to 250
- An indicator now shows on the Stage Select screen when `Cannon's Core` is available
- Certain traps (`Exposition` and `Pong`) are now possible to receive on `Route 101` and `Route 280`
- Certain traps (`Confusion`, `Chaos Control`, `Exposition` and `Pong`) are now possible to receive on `FinalHazard`
Bug Fixes:
- Actually swap Intermediate and Expert Chao Races correctly
- Don't always grant double score for killing Gold Beetles anymore
- Ensure upgrades are applied properly, even when received while dying
- Fix the Message Queue getting disordered when receiving many messages in quick succession
- Fix Logic errors
  - `City Escape - 3` (Hard Logic) now requires no upgrades
  - `Mission Street - Pipe 2` (Hard Logic) now requires no upgrades
  - `Crazy Gadget - Pipe 3` (Hard Logic) now requires no upgrades
  - `Egg Quarters - 3` (Hard Logic) now requires only `Rouge - Mystic Melody`
  - `Mad Space - 5` (Hard Logic) now requires no upgrades
Co-authored-by: RaspberrySpaceJam <tyler.summers@gmail.com>
		
	
		
			
				
	
	
		
			811 lines
		
	
	
		
			37 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			811 lines
		
	
	
		
			37 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Sonic Mission Definitions
 | |
| city_escape_1         = "City Escape - 1"
 | |
| city_escape_2         = "City Escape - 2"
 | |
| city_escape_3         = "City Escape - 3"
 | |
| city_escape_4         = "City Escape - 4"
 | |
| city_escape_5         = "City Escape - 5"
 | |
| city_escape_chao_1    = "City Escape - Chao Key 1"
 | |
| city_escape_chao_2    = "City Escape - Chao Key 2"
 | |
| city_escape_chao_3    = "City Escape - Chao Key 3"
 | |
| city_escape_pipe_1    = "City Escape - Pipe 1"
 | |
| city_escape_pipe_2    = "City Escape - Pipe 2"
 | |
| city_escape_pipe_3    = "City Escape - Pipe 3"
 | |
| city_escape_pipe_4    = "City Escape - Pipe 4"
 | |
| city_escape_hidden_1  = "City Escape - Hidden 1"
 | |
| city_escape_hidden_2  = "City Escape - Hidden 2"
 | |
| city_escape_hidden_3  = "City Escape - Hidden 3"
 | |
| city_escape_hidden_4  = "City Escape - Hidden 4"
 | |
| city_escape_hidden_5  = "City Escape - Hidden 5"
 | |
| city_escape_omo_1     = "City Escape - Omochao 1"
 | |
| city_escape_omo_2     = "City Escape - Omochao 2"
 | |
| city_escape_omo_3     = "City Escape - Omochao 3"
 | |
| city_escape_omo_4     = "City Escape - Omochao 4"
 | |
| city_escape_omo_5     = "City Escape - Omochao 5"
 | |
| city_escape_omo_6     = "City Escape - Omochao 6"
 | |
| city_escape_omo_7     = "City Escape - Omochao 7"
 | |
| city_escape_omo_8     = "City Escape - Omochao 8"
 | |
| city_escape_omo_9     = "City Escape - Omochao 9"
 | |
| city_escape_omo_10    = "City Escape - Omochao 10"
 | |
| city_escape_omo_11    = "City Escape - Omochao 11"
 | |
| city_escape_omo_12    = "City Escape - Omochao 12"
 | |
| city_escape_omo_13    = "City Escape - Omochao 13"
 | |
| city_escape_omo_14    = "City Escape - Omochao 14"
 | |
| city_escape_beetle    = "City Escape - Gold Beetle"
 | |
| city_escape_upgrade   = "City Escape - Upgrade"
 | |
| metal_harbor_1        = "Metal Harbor - 1"
 | |
| metal_harbor_2        = "Metal Harbor - 2"
 | |
| metal_harbor_3        = "Metal Harbor - 3"
 | |
| metal_harbor_4        = "Metal Harbor - 4"
 | |
| metal_harbor_5        = "Metal Harbor - 5"
 | |
| metal_harbor_chao_1   = "Metal Harbor - Chao Key 1"
 | |
| metal_harbor_chao_2   = "Metal Harbor - Chao Key 2"
 | |
| metal_harbor_chao_3   = "Metal Harbor - Chao Key 3"
 | |
| metal_harbor_pipe_1   = "Metal Harbor - Pipe 1"
 | |
| metal_harbor_omo_1    = "Metal Harbor - Omochao 1"
 | |
| metal_harbor_omo_2    = "Metal Harbor - Omochao 2"
 | |
| metal_harbor_omo_3    = "Metal Harbor - Omochao 3"
 | |
| metal_harbor_omo_4    = "Metal Harbor - Omochao 4"
 | |
| metal_harbor_omo_5    = "Metal Harbor - Omochao 5"
 | |
| metal_harbor_beetle   = "Metal Harbor - Gold Beetle"
 | |
| metal_harbor_upgrade  = "Metal Harbor - Upgrade"
 | |
| green_forest_1        = "Green Forest - 1"
 | |
| green_forest_2        = "Green Forest - 2"
 | |
| green_forest_3        = "Green Forest - 3"
 | |
| green_forest_4        = "Green Forest - 4"
 | |
| green_forest_5        = "Green Forest - 5"
 | |
| green_forest_chao_1   = "Green Forest - Chao Key 1"
 | |
| green_forest_chao_2   = "Green Forest - Chao Key 2"
 | |
| green_forest_chao_3   = "Green Forest - Chao Key 3"
 | |
| green_forest_pipe_1   = "Green Forest - Pipe 1"
 | |
| green_forest_pipe_2   = "Green Forest - Pipe 2"
 | |
| green_forest_hidden_1 = "Green Forest - Hidden 1"
 | |
| green_forest_hidden_2 = "Green Forest - Hidden 2"
 | |
| green_forest_hidden_3 = "Green Forest - Hidden 3"
 | |
| green_forest_hidden_4 = "Green Forest - Hidden 4"
 | |
| green_forest_beetle   = "Green Forest - Gold Beetle"
 | |
| green_forest_upgrade  = "Green Forest - Upgrade"
 | |
| pyramid_cave_1        = "Pyramid Cave - 1"
 | |
| pyramid_cave_2        = "Pyramid Cave - 2"
 | |
| pyramid_cave_3        = "Pyramid Cave - 3"
 | |
| pyramid_cave_4        = "Pyramid Cave - 4"
 | |
| pyramid_cave_5        = "Pyramid Cave - 5"
 | |
| pyramid_cave_chao_1   = "Pyramid Cave - Chao Key 1"
 | |
| pyramid_cave_chao_2   = "Pyramid Cave - Chao Key 2"
 | |
| pyramid_cave_chao_3   = "Pyramid Cave - Chao Key 3"
 | |
| pyramid_cave_pipe_1   = "Pyramid Cave - Pipe 1"
 | |
| pyramid_cave_pipe_2   = "Pyramid Cave - Pipe 2"
 | |
| pyramid_cave_pipe_3   = "Pyramid Cave - Pipe 3"
 | |
| pyramid_cave_pipe_4   = "Pyramid Cave - Pipe 4"
 | |
| pyramid_cave_omo_1    = "Pyramid Cave - Omochao 1"
 | |
| pyramid_cave_omo_2    = "Pyramid Cave - Omochao 2"
 | |
| pyramid_cave_omo_3    = "Pyramid Cave - Omochao 3"
 | |
| pyramid_cave_omo_4    = "Pyramid Cave - Omochao 4"
 | |
| pyramid_cave_beetle   = "Pyramid Cave - Gold Beetle"
 | |
| pyramid_cave_upgrade  = "Pyramid Cave - Upgrade"
 | |
| crazy_gadget_1        = "Crazy Gadget - 1"
 | |
| crazy_gadget_2        = "Crazy Gadget - 2"
 | |
| crazy_gadget_3        = "Crazy Gadget - 3"
 | |
| crazy_gadget_4        = "Crazy Gadget - 4"
 | |
| crazy_gadget_5        = "Crazy Gadget - 5"
 | |
| crazy_gadget_chao_1   = "Crazy Gadget - Chao Key 1"
 | |
| crazy_gadget_chao_2   = "Crazy Gadget - Chao Key 2"
 | |
| crazy_gadget_chao_3   = "Crazy Gadget - Chao Key 3"
 | |
| crazy_gadget_pipe_1   = "Crazy Gadget - Pipe 1"
 | |
| crazy_gadget_pipe_2   = "Crazy Gadget - Pipe 2"
 | |
| crazy_gadget_pipe_3   = "Crazy Gadget - Pipe 3"
 | |
| crazy_gadget_pipe_4   = "Crazy Gadget - Pipe 4"
 | |
| crazy_gadget_hidden_1 = "Crazy Gadget - Hidden 1"
 | |
| crazy_gadget_omo_1    = "Crazy Gadget - Omochao 1"
 | |
| crazy_gadget_omo_2    = "Crazy Gadget - Omochao 2"
 | |
| crazy_gadget_omo_3    = "Crazy Gadget - Omochao 3"
 | |
| crazy_gadget_omo_4    = "Crazy Gadget - Omochao 4"
 | |
| crazy_gadget_omo_5    = "Crazy Gadget - Omochao 5"
 | |
| crazy_gadget_omo_6    = "Crazy Gadget - Omochao 6"
 | |
| crazy_gadget_omo_7    = "Crazy Gadget - Omochao 7"
 | |
| crazy_gadget_omo_8    = "Crazy Gadget - Omochao 8"
 | |
| crazy_gadget_omo_9    = "Crazy Gadget - Omochao 9"
 | |
| crazy_gadget_omo_10   = "Crazy Gadget - Omochao 10"
 | |
| crazy_gadget_omo_11   = "Crazy Gadget - Omochao 11"
 | |
| crazy_gadget_omo_12   = "Crazy Gadget - Omochao 12"
 | |
| crazy_gadget_omo_13   = "Crazy Gadget - Omochao 13"
 | |
| crazy_gadget_beetle   = "Crazy Gadget - Gold Beetle"
 | |
| crazy_gadget_upgrade  = "Crazy Gadget - Upgrade"
 | |
| final_rush_1          = "Final Rush - 1"
 | |
| final_rush_2          = "Final Rush - 2"
 | |
| final_rush_3          = "Final Rush - 3"
 | |
| final_rush_4          = "Final Rush - 4"
 | |
| final_rush_5          = "Final Rush - 5"
 | |
| final_rush_chao_1     = "Final Rush - Chao Key 1"
 | |
| final_rush_chao_2     = "Final Rush - Chao Key 2"
 | |
| final_rush_chao_3     = "Final Rush - Chao Key 3"
 | |
| final_rush_pipe_1     = "Final Rush - Pipe 1"
 | |
| final_rush_pipe_2     = "Final Rush - Pipe 2"
 | |
| final_rush_omo_1      = "Final Rush - Omochao 1"
 | |
| final_rush_omo_2      = "Final Rush - Omochao 2"
 | |
| final_rush_omo_3      = "Final Rush - Omochao 3"
 | |
| final_rush_beetle     = "Final Rush - Gold Beetle"
 | |
| final_rush_upgrade    = "Final Rush - Upgrade"
 | |
| 
 | |
| # Tails Mission Definitions
 | |
| prison_lane_1           = "Prison Lane - 1"
 | |
| prison_lane_2           = "Prison Lane - 2"
 | |
| prison_lane_3           = "Prison Lane - 3"
 | |
| prison_lane_4           = "Prison Lane - 4"
 | |
| prison_lane_5           = "Prison Lane - 5"
 | |
| prison_lane_chao_1      = "Prison Lane - Chao Key 1"
 | |
| prison_lane_chao_2      = "Prison Lane - Chao Key 2"
 | |
| prison_lane_chao_3      = "Prison Lane - Chao Key 3"
 | |
| prison_lane_pipe_1      = "Prison Lane - Pipe 1"
 | |
| prison_lane_pipe_2      = "Prison Lane - Pipe 2"
 | |
| prison_lane_pipe_3      = "Prison Lane - Pipe 3"
 | |
| prison_lane_hidden_1    = "Prison Lane - Hidden 1"
 | |
| prison_lane_hidden_2    = "Prison Lane - Hidden 2"
 | |
| prison_lane_hidden_3    = "Prison Lane - Hidden 3"
 | |
| prison_lane_omo_1       = "Prison Lane - Omochao 1"
 | |
| prison_lane_omo_2       = "Prison Lane - Omochao 2"
 | |
| prison_lane_omo_3       = "Prison Lane - Omochao 3"
 | |
| prison_lane_omo_4       = "Prison Lane - Omochao 4"
 | |
| prison_lane_omo_5       = "Prison Lane - Omochao 5"
 | |
| prison_lane_omo_6       = "Prison Lane - Omochao 6"
 | |
| prison_lane_omo_7       = "Prison Lane - Omochao 7"
 | |
| prison_lane_omo_8       = "Prison Lane - Omochao 8"
 | |
| prison_lane_omo_9       = "Prison Lane - Omochao 9"
 | |
| prison_lane_omo_10      = "Prison Lane - Omochao 10"
 | |
| prison_lane_beetle      = "Prison Lane - Gold Beetle"
 | |
| prison_lane_upgrade     = "Prison Lane - Upgrade"
 | |
| mission_street_1        = "Mission Street - 1"
 | |
| mission_street_2        = "Mission Street - 2"
 | |
| mission_street_3        = "Mission Street - 3"
 | |
| mission_street_4        = "Mission Street - 4"
 | |
| mission_street_5        = "Mission Street - 5"
 | |
| mission_street_chao_1   = "Mission Street - Chao Key 1"
 | |
| mission_street_chao_2   = "Mission Street - Chao Key 2"
 | |
| mission_street_chao_3   = "Mission Street - Chao Key 3"
 | |
| mission_street_pipe_1   = "Mission Street - Pipe 1"
 | |
| mission_street_pipe_2   = "Mission Street - Pipe 2"
 | |
| mission_street_pipe_3   = "Mission Street - Pipe 3"
 | |
| mission_street_hidden_1 = "Mission Street - Hidden 1"
 | |
| mission_street_hidden_2 = "Mission Street - Hidden 2"
 | |
| mission_street_hidden_3 = "Mission Street - Hidden 3"
 | |
| mission_street_hidden_4 = "Mission Street - Hidden 4"
 | |
| mission_street_omo_1    = "Mission Street - Omochao 1"
 | |
| mission_street_omo_2    = "Mission Street - Omochao 2"
 | |
| mission_street_omo_3    = "Mission Street - Omochao 3"
 | |
| mission_street_omo_4    = "Mission Street - Omochao 4"
 | |
| mission_street_omo_5    = "Mission Street - Omochao 5"
 | |
| mission_street_omo_6    = "Mission Street - Omochao 6"
 | |
| mission_street_omo_7    = "Mission Street - Omochao 7"
 | |
| mission_street_omo_8    = "Mission Street - Omochao 8"
 | |
| mission_street_beetle   = "Mission Street - Gold Beetle"
 | |
| mission_street_upgrade  = "Mission Street - Upgrade"
 | |
| route_101_1             = "Route 101 - 1"
 | |
| route_101_2             = "Route 101 - 2"
 | |
| route_101_3             = "Route 101 - 3"
 | |
| route_101_4             = "Route 101 - 4"
 | |
| route_101_5             = "Route 101 - 5"
 | |
| hidden_base_1           = "Hidden Base - 1"
 | |
| hidden_base_2           = "Hidden Base - 2"
 | |
| hidden_base_3           = "Hidden Base - 3"
 | |
| hidden_base_4           = "Hidden Base - 4"
 | |
| hidden_base_5           = "Hidden Base - 5"
 | |
| hidden_base_chao_1      = "Hidden Base - Chao Key 1"
 | |
| hidden_base_chao_2      = "Hidden Base - Chao Key 2"
 | |
| hidden_base_pipe_1      = "Hidden Base - Pipe 1"
 | |
| hidden_base_pipe_2      = "Hidden Base - Pipe 2"
 | |
| hidden_base_pipe_3      = "Hidden Base - Pipe 3"
 | |
| hidden_base_pipe_4      = "Hidden Base - Pipe 4"
 | |
| hidden_base_pipe_5      = "Hidden Base - Pipe 5"
 | |
| hidden_base_omo_1       = "Hidden Base - Omochao 1"
 | |
| hidden_base_omo_2       = "Hidden Base - Omochao 2"
 | |
| hidden_base_omo_3       = "Hidden Base - Omochao 3"
 | |
| hidden_base_omo_4       = "Hidden Base - Omochao 4"
 | |
| hidden_base_beetle      = "Hidden Base - Gold Beetle"
 | |
| hidden_base_upgrade     = "Hidden Base - Upgrade"
 | |
| eternal_engine_1        = "Eternal Engine - 1"
 | |
| eternal_engine_2        = "Eternal Engine - 2"
 | |
| eternal_engine_3        = "Eternal Engine - 3"
 | |
| eternal_engine_4        = "Eternal Engine - 4"
 | |
| eternal_engine_5        = "Eternal Engine - 5"
 | |
| eternal_engine_chao_1   = "Eternal Engine - Chao Key 1"
 | |
| eternal_engine_chao_2   = "Eternal Engine - Chao Key 2"
 | |
| eternal_engine_chao_3   = "Eternal Engine - Chao Key 3"
 | |
| eternal_engine_pipe_1   = "Eternal Engine - Pipe 1"
 | |
| eternal_engine_pipe_2   = "Eternal Engine - Pipe 2"
 | |
| eternal_engine_pipe_3   = "Eternal Engine - Pipe 3"
 | |
| eternal_engine_pipe_4   = "Eternal Engine - Pipe 4"
 | |
| eternal_engine_pipe_5   = "Eternal Engine - Pipe 5"
 | |
| eternal_engine_omo_1    = "Eternal Engine - Omochao 1"
 | |
| eternal_engine_omo_2    = "Eternal Engine - Omochao 2"
 | |
| eternal_engine_omo_3    = "Eternal Engine - Omochao 3"
 | |
| eternal_engine_omo_4    = "Eternal Engine - Omochao 4"
 | |
| eternal_engine_omo_5    = "Eternal Engine - Omochao 5"
 | |
| eternal_engine_omo_6    = "Eternal Engine - Omochao 6"
 | |
| eternal_engine_omo_7    = "Eternal Engine - Omochao 7"
 | |
| eternal_engine_omo_8    = "Eternal Engine - Omochao 8"
 | |
| eternal_engine_omo_9    = "Eternal Engine - Omochao 9"
 | |
| eternal_engine_omo_10   = "Eternal Engine - Omochao 10"
 | |
| eternal_engine_omo_11   = "Eternal Engine - Omochao 11"
 | |
| eternal_engine_omo_12   = "Eternal Engine - Omochao 12"
 | |
| eternal_engine_beetle   = "Eternal Engine - Gold Beetle"
 | |
| eternal_engine_upgrade  = "Eternal Engine - Upgrade"
 | |
| 
 | |
| # Knuckles Mission Definitions
 | |
| wild_canyon_1          = "Wild Canyon - 1"
 | |
| wild_canyon_2          = "Wild Canyon - 2"
 | |
| wild_canyon_3          = "Wild Canyon - 3"
 | |
| wild_canyon_4          = "Wild Canyon - 4"
 | |
| wild_canyon_5          = "Wild Canyon - 5"
 | |
| wild_canyon_chao_1     = "Wild Canyon - Chao Key 1"
 | |
| wild_canyon_chao_2     = "Wild Canyon - Chao Key 2"
 | |
| wild_canyon_chao_3     = "Wild Canyon - Chao Key 3"
 | |
| wild_canyon_pipe_1     = "Wild Canyon - Pipe 1"
 | |
| wild_canyon_pipe_2     = "Wild Canyon - Pipe 2"
 | |
| wild_canyon_pipe_3     = "Wild Canyon - Pipe 3"
 | |
| wild_canyon_omo_1      = "Wild Canyon - Omochao 1"
 | |
| wild_canyon_omo_2      = "Wild Canyon - Omochao 2"
 | |
| wild_canyon_omo_3      = "Wild Canyon - Omochao 3"
 | |
| wild_canyon_omo_4      = "Wild Canyon - Omochao 4"
 | |
| wild_canyon_omo_5      = "Wild Canyon - Omochao 5"
 | |
| wild_canyon_omo_6      = "Wild Canyon - Omochao 6"
 | |
| wild_canyon_omo_7      = "Wild Canyon - Omochao 7"
 | |
| wild_canyon_omo_8      = "Wild Canyon - Omochao 8"
 | |
| wild_canyon_omo_9      = "Wild Canyon - Omochao 9"
 | |
| wild_canyon_omo_10     = "Wild Canyon - Omochao 10"
 | |
| wild_canyon_beetle     = "Wild Canyon - Gold Beetle"
 | |
| wild_canyon_upgrade    = "Wild Canyon - Upgrade"
 | |
| pumpkin_hill_1         = "Pumpkin Hill - 1"
 | |
| pumpkin_hill_2         = "Pumpkin Hill - 2"
 | |
| pumpkin_hill_3         = "Pumpkin Hill - 3"
 | |
| pumpkin_hill_4         = "Pumpkin Hill - 4"
 | |
| pumpkin_hill_5         = "Pumpkin Hill - 5"
 | |
| pumpkin_hill_chao_1    = "Pumpkin Hill - Chao Key 1"
 | |
| pumpkin_hill_chao_2    = "Pumpkin Hill - Chao Key 2"
 | |
| pumpkin_hill_chao_3    = "Pumpkin Hill - Chao Key 3"
 | |
| pumpkin_hill_pipe_1    = "Pumpkin Hill - Pipe 1"
 | |
| pumpkin_hill_hidden_1  = "Pumpkin Hill - Hidden 1"
 | |
| pumpkin_hill_omo_1     = "Pumpkin Hill - Omochao 1"
 | |
| pumpkin_hill_omo_2     = "Pumpkin Hill - Omochao 2"
 | |
| pumpkin_hill_omo_3     = "Pumpkin Hill - Omochao 3"
 | |
| pumpkin_hill_omo_4     = "Pumpkin Hill - Omochao 4"
 | |
| pumpkin_hill_omo_5     = "Pumpkin Hill - Omochao 5"
 | |
| pumpkin_hill_omo_6     = "Pumpkin Hill - Omochao 6"
 | |
| pumpkin_hill_omo_7     = "Pumpkin Hill - Omochao 7"
 | |
| pumpkin_hill_omo_8     = "Pumpkin Hill - Omochao 8"
 | |
| pumpkin_hill_omo_9     = "Pumpkin Hill - Omochao 9"
 | |
| pumpkin_hill_omo_10    = "Pumpkin Hill - Omochao 10"
 | |
| pumpkin_hill_omo_11    = "Pumpkin Hill - Omochao 11"
 | |
| pumpkin_hill_upgrade   = "Pumpkin Hill - Upgrade"
 | |
| aquatic_mine_1         = "Aquatic Mine - 1"
 | |
| aquatic_mine_2         = "Aquatic Mine - 2"
 | |
| aquatic_mine_3         = "Aquatic Mine - 3"
 | |
| aquatic_mine_4         = "Aquatic Mine - 4"
 | |
| aquatic_mine_5         = "Aquatic Mine - 5"
 | |
| aquatic_mine_chao_1    = "Aquatic Mine - Chao Key 1"
 | |
| aquatic_mine_chao_2    = "Aquatic Mine - Chao Key 2"
 | |
| aquatic_mine_chao_3    = "Aquatic Mine - Chao Key 3"
 | |
| aquatic_mine_pipe_1    = "Aquatic Mine - Pipe 1"
 | |
| aquatic_mine_pipe_2    = "Aquatic Mine - Pipe 2"
 | |
| aquatic_mine_pipe_3    = "Aquatic Mine - Pipe 3"
 | |
| aquatic_mine_omo_1     = "Aquatic Mine - Omochao 1"
 | |
| aquatic_mine_omo_2     = "Aquatic Mine - Omochao 2"
 | |
| aquatic_mine_omo_3     = "Aquatic Mine - Omochao 3"
 | |
| aquatic_mine_omo_4     = "Aquatic Mine - Omochao 4"
 | |
| aquatic_mine_omo_5     = "Aquatic Mine - Omochao 5"
 | |
| aquatic_mine_omo_6     = "Aquatic Mine - Omochao 6"
 | |
| aquatic_mine_omo_7     = "Aquatic Mine - Omochao 7"
 | |
| aquatic_mine_beetle    = "Aquatic Mine - Gold Beetle"
 | |
| aquatic_mine_upgrade   = "Aquatic Mine - Upgrade"
 | |
| death_chamber_1        = "Death Chamber - 1"
 | |
| death_chamber_2        = "Death Chamber - 2"
 | |
| death_chamber_3        = "Death Chamber - 3"
 | |
| death_chamber_4        = "Death Chamber - 4"
 | |
| death_chamber_5        = "Death Chamber - 5"
 | |
| death_chamber_chao_1   = "Death Chamber - Chao Key 1"
 | |
| death_chamber_chao_2   = "Death Chamber - Chao Key 2"
 | |
| death_chamber_chao_3   = "Death Chamber - Chao Key 3"
 | |
| death_chamber_pipe_1   = "Death Chamber - Pipe 1"
 | |
| death_chamber_pipe_2   = "Death Chamber - Pipe 2"
 | |
| death_chamber_pipe_3   = "Death Chamber - Pipe 3"
 | |
| death_chamber_hidden_1 = "Death Chamber - Hidden 1"
 | |
| death_chamber_hidden_2 = "Death Chamber - Hidden 2"
 | |
| death_chamber_omo_1    = "Death Chamber - Omochao 1"
 | |
| death_chamber_omo_2    = "Death Chamber - Omochao 2"
 | |
| death_chamber_omo_3    = "Death Chamber - Omochao 3"
 | |
| death_chamber_omo_4    = "Death Chamber - Omochao 4"
 | |
| death_chamber_omo_5    = "Death Chamber - Omochao 5"
 | |
| death_chamber_omo_6    = "Death Chamber - Omochao 6"
 | |
| death_chamber_omo_7    = "Death Chamber - Omochao 7"
 | |
| death_chamber_omo_8    = "Death Chamber - Omochao 8"
 | |
| death_chamber_omo_9    = "Death Chamber - Omochao 9"
 | |
| death_chamber_beetle   = "Death Chamber - Gold Beetle"
 | |
| death_chamber_upgrade  = "Death Chamber - Upgrade"
 | |
| meteor_herd_1          = "Meteor Herd - 1"
 | |
| meteor_herd_2          = "Meteor Herd - 2"
 | |
| meteor_herd_3          = "Meteor Herd - 3"
 | |
| meteor_herd_4          = "Meteor Herd - 4"
 | |
| meteor_herd_5          = "Meteor Herd - 5"
 | |
| meteor_herd_chao_1     = "Meteor Herd - Chao Key 1"
 | |
| meteor_herd_chao_2     = "Meteor Herd - Chao Key 2"
 | |
| meteor_herd_chao_3     = "Meteor Herd - Chao Key 3"
 | |
| meteor_herd_pipe_1     = "Meteor Herd - Pipe 1"
 | |
| meteor_herd_pipe_2     = "Meteor Herd - Pipe 2"
 | |
| meteor_herd_pipe_3     = "Meteor Herd - Pipe 3"
 | |
| meteor_herd_omo_1      = "Meteor Herd - Omochao 1"
 | |
| meteor_herd_omo_2      = "Meteor Herd - Omochao 2"
 | |
| meteor_herd_omo_3      = "Meteor Herd - Omochao 3"
 | |
| meteor_herd_beetle     = "Meteor Herd - Gold Beetle"
 | |
| meteor_herd_upgrade    = "Meteor Herd - Upgrade"
 | |
| 
 | |
| 
 | |
| # Shadow Mission Definitions
 | |
| radical_highway_1        = "Radical Highway - 1"
 | |
| radical_highway_2        = "Radical Highway - 2"
 | |
| radical_highway_3        = "Radical Highway - 3"
 | |
| radical_highway_4        = "Radical Highway - 4"
 | |
| radical_highway_5        = "Radical Highway - 5"
 | |
| radical_highway_chao_1   = "Radical Highway - Chao Key 1"
 | |
| radical_highway_chao_2   = "Radical Highway - Chao Key 2"
 | |
| radical_highway_chao_3   = "Radical Highway - Chao Key 3"
 | |
| radical_highway_pipe_1   = "Radical Highway - Pipe 1"
 | |
| radical_highway_pipe_2   = "Radical Highway - Pipe 2"
 | |
| radical_highway_pipe_3   = "Radical Highway - Pipe 3"
 | |
| radical_highway_hidden_1 = "Radical Highway - Hidden 1"
 | |
| radical_highway_hidden_2 = "Radical Highway - Hidden 2"
 | |
| radical_highway_hidden_3 = "Radical Highway - Hidden 3"
 | |
| radical_highway_omo_1    = "Radical Highway - Omochao 1"
 | |
| radical_highway_omo_2    = "Radical Highway - Omochao 2"
 | |
| radical_highway_omo_3    = "Radical Highway - Omochao 3"
 | |
| radical_highway_omo_4    = "Radical Highway - Omochao 4"
 | |
| radical_highway_omo_5    = "Radical Highway - Omochao 5"
 | |
| radical_highway_omo_6    = "Radical Highway - Omochao 6"
 | |
| radical_highway_omo_7    = "Radical Highway - Omochao 7"
 | |
| radical_highway_omo_8    = "Radical Highway - Omochao 8"
 | |
| radical_highway_beetle   = "Radical Highway - Gold Beetle"
 | |
| radical_highway_upgrade  = "Radical Highway - Upgrade"
 | |
| white_jungle_1           = "White Jungle - 1"
 | |
| white_jungle_2           = "White Jungle - 2"
 | |
| white_jungle_3           = "White Jungle - 3"
 | |
| white_jungle_4           = "White Jungle - 4"
 | |
| white_jungle_5           = "White Jungle - 5"
 | |
| white_jungle_chao_1      = "White Jungle - Chao Key 1"
 | |
| white_jungle_chao_2      = "White Jungle - Chao Key 2"
 | |
| white_jungle_chao_3      = "White Jungle - Chao Key 3"
 | |
| white_jungle_pipe_1      = "White Jungle - Pipe 1"
 | |
| white_jungle_pipe_2      = "White Jungle - Pipe 2"
 | |
| white_jungle_pipe_3      = "White Jungle - Pipe 3"
 | |
| white_jungle_pipe_4      = "White Jungle - Pipe 4"
 | |
| white_jungle_hidden_1    = "White Jungle - Hidden 1"
 | |
| white_jungle_hidden_2    = "White Jungle - Hidden 2"
 | |
| white_jungle_hidden_3    = "White Jungle - Hidden 3"
 | |
| white_jungle_omo_1       = "White Jungle - Omochao 1"
 | |
| white_jungle_omo_2       = "White Jungle - Omochao 2"
 | |
| white_jungle_omo_3       = "White Jungle - Omochao 3"
 | |
| white_jungle_omo_4       = "White Jungle - Omochao 4"
 | |
| white_jungle_omo_5       = "White Jungle - Omochao 5"
 | |
| white_jungle_beetle      = "White Jungle - Gold Beetle"
 | |
| white_jungle_upgrade     = "White Jungle - Upgrade"
 | |
| sky_rail_1               = "Sky Rail - 1"
 | |
| sky_rail_2               = "Sky Rail - 2"
 | |
| sky_rail_3               = "Sky Rail - 3"
 | |
| sky_rail_4               = "Sky Rail - 4"
 | |
| sky_rail_5               = "Sky Rail - 5"
 | |
| sky_rail_chao_1          = "Sky Rail - Chao Key 1"
 | |
| sky_rail_chao_2          = "Sky Rail - Chao Key 2"
 | |
| sky_rail_chao_3          = "Sky Rail - Chao Key 3"
 | |
| sky_rail_pipe_1          = "Sky Rail - Pipe 1"
 | |
| sky_rail_pipe_2          = "Sky Rail - Pipe 2"
 | |
| sky_rail_pipe_3          = "Sky Rail - Pipe 3"
 | |
| sky_rail_pipe_4          = "Sky Rail - Pipe 4"
 | |
| sky_rail_pipe_5          = "Sky Rail - Pipe 5"
 | |
| sky_rail_pipe_6          = "Sky Rail - Pipe 6"
 | |
| sky_rail_beetle          = "Sky Rail - Gold Beetle"
 | |
| sky_rail_upgrade         = "Sky Rail - Upgrade"
 | |
| final_chase_1            = "Final Chase - 1"
 | |
| final_chase_2            = "Final Chase - 2"
 | |
| final_chase_3            = "Final Chase - 3"
 | |
| final_chase_4            = "Final Chase - 4"
 | |
| final_chase_5            = "Final Chase - 5"
 | |
| final_chase_chao_1       = "Final Chase - Chao Key 1"
 | |
| final_chase_chao_2       = "Final Chase - Chao Key 2"
 | |
| final_chase_chao_3       = "Final Chase - Chao Key 3"
 | |
| final_chase_pipe_1       = "Final Chase - Pipe 1"
 | |
| final_chase_pipe_2       = "Final Chase - Pipe 2"
 | |
| final_chase_pipe_3       = "Final Chase - Pipe 3"
 | |
| final_chase_omo_1        = "Final Chase - Omochao 1"
 | |
| final_chase_beetle       = "Final Chase - Gold Beetle"
 | |
| final_chase_upgrade      = "Final Chase - Upgrade"
 | |
| 
 | |
| # Eggman Mission Definitions
 | |
| iron_gate_1          = "Iron Gate - 1"
 | |
| iron_gate_2          = "Iron Gate - 2"
 | |
| iron_gate_3          = "Iron Gate - 3"
 | |
| iron_gate_4          = "Iron Gate - 4"
 | |
| iron_gate_5          = "Iron Gate - 5"
 | |
| iron_gate_chao_1     = "Iron Gate - Chao Key 1"
 | |
| iron_gate_chao_2     = "Iron Gate - Chao Key 2"
 | |
| iron_gate_chao_3     = "Iron Gate - Chao Key 3"
 | |
| iron_gate_pipe_1     = "Iron Gate - Pipe 1"
 | |
| iron_gate_pipe_2     = "Iron Gate - Pipe 2"
 | |
| iron_gate_pipe_3     = "Iron Gate - Pipe 3"
 | |
| iron_gate_pipe_4     = "Iron Gate - Pipe 4"
 | |
| iron_gate_pipe_5     = "Iron Gate - Pipe 5"
 | |
| iron_gate_omo_1      = "Iron Gate - Omochao 1"
 | |
| iron_gate_omo_2      = "Iron Gate - Omochao 2"
 | |
| iron_gate_omo_3      = "Iron Gate - Omochao 3"
 | |
| iron_gate_omo_4      = "Iron Gate - Omochao 4"
 | |
| iron_gate_omo_5      = "Iron Gate - Omochao 5"
 | |
| iron_gate_omo_6      = "Iron Gate - Omochao 6"
 | |
| iron_gate_beetle     = "Iron Gate - Gold Beetle"
 | |
| iron_gate_upgrade    = "Iron Gate - Upgrade"
 | |
| sand_ocean_1         = "Sand Ocean - 1"
 | |
| sand_ocean_2         = "Sand Ocean - 2"
 | |
| sand_ocean_3         = "Sand Ocean - 3"
 | |
| sand_ocean_4         = "Sand Ocean - 4"
 | |
| sand_ocean_5         = "Sand Ocean - 5"
 | |
| sand_ocean_chao_1    = "Sand Ocean - Chao Key 1"
 | |
| sand_ocean_chao_2    = "Sand Ocean - Chao Key 2"
 | |
| sand_ocean_chao_3    = "Sand Ocean - Chao Key 3"
 | |
| sand_ocean_pipe_1    = "Sand Ocean - Pipe 1"
 | |
| sand_ocean_pipe_2    = "Sand Ocean - Pipe 2"
 | |
| sand_ocean_pipe_3    = "Sand Ocean - Pipe 3"
 | |
| sand_ocean_pipe_4    = "Sand Ocean - Pipe 4"
 | |
| sand_ocean_pipe_5    = "Sand Ocean - Pipe 5"
 | |
| sand_ocean_omo_1     = "Sand Ocean - Omochao 1"
 | |
| sand_ocean_omo_2     = "Sand Ocean - Omochao 2"
 | |
| sand_ocean_beetle    = "Sand Ocean - Gold Beetle"
 | |
| sand_ocean_upgrade   = "Sand Ocean - Upgrade"
 | |
| lost_colony_1        = "Lost Colony - 1"
 | |
| lost_colony_2        = "Lost Colony - 2"
 | |
| lost_colony_3        = "Lost Colony - 3"
 | |
| lost_colony_4        = "Lost Colony - 4"
 | |
| lost_colony_5        = "Lost Colony - 5"
 | |
| lost_colony_chao_1   = "Lost Colony - Chao Key 1"
 | |
| lost_colony_chao_2   = "Lost Colony - Chao Key 2"
 | |
| lost_colony_chao_3   = "Lost Colony - Chao Key 3"
 | |
| lost_colony_pipe_1   = "Lost Colony - Pipe 1"
 | |
| lost_colony_pipe_2   = "Lost Colony - Pipe 2"
 | |
| lost_colony_hidden_1 = "Lost Colony - Hidden 1"
 | |
| lost_colony_omo_1    = "Lost Colony - Omochao 1"
 | |
| lost_colony_omo_2    = "Lost Colony - Omochao 2"
 | |
| lost_colony_omo_3    = "Lost Colony - Omochao 3"
 | |
| lost_colony_omo_4    = "Lost Colony - Omochao 4"
 | |
| lost_colony_omo_5    = "Lost Colony - Omochao 5"
 | |
| lost_colony_omo_6    = "Lost Colony - Omochao 6"
 | |
| lost_colony_omo_7    = "Lost Colony - Omochao 7"
 | |
| lost_colony_omo_8    = "Lost Colony - Omochao 8"
 | |
| lost_colony_beetle   = "Lost Colony - Gold Beetle"
 | |
| lost_colony_upgrade  = "Lost Colony - Upgrade"
 | |
| weapons_bed_1        = "Weapons Bed - 1"
 | |
| weapons_bed_2        = "Weapons Bed - 2"
 | |
| weapons_bed_3        = "Weapons Bed - 3"
 | |
| weapons_bed_4        = "Weapons Bed - 4"
 | |
| weapons_bed_5        = "Weapons Bed - 5"
 | |
| weapons_bed_chao_1   = "Weapons Bed - Chao Key 1"
 | |
| weapons_bed_chao_2   = "Weapons Bed - Chao Key 2"
 | |
| weapons_bed_chao_3   = "Weapons Bed - Chao Key 3"
 | |
| weapons_bed_pipe_1   = "Weapons Bed - Pipe 1"
 | |
| weapons_bed_pipe_2   = "Weapons Bed - Pipe 2"
 | |
| weapons_bed_pipe_3   = "Weapons Bed - Pipe 3"
 | |
| weapons_bed_pipe_4   = "Weapons Bed - Pipe 4"
 | |
| weapons_bed_pipe_5   = "Weapons Bed - Pipe 5"
 | |
| weapons_bed_omo_1    = "Weapons Bed - Omochao 1"
 | |
| weapons_bed_omo_2    = "Weapons Bed - Omochao 2"
 | |
| weapons_bed_omo_3    = "Weapons Bed - Omochao 3"
 | |
| weapons_bed_upgrade  = "Weapons Bed - Upgrade"
 | |
| cosmic_wall_1        = "Cosmic Wall - 1"
 | |
| cosmic_wall_2        = "Cosmic Wall - 2"
 | |
| cosmic_wall_3        = "Cosmic Wall - 3"
 | |
| cosmic_wall_4        = "Cosmic Wall - 4"
 | |
| cosmic_wall_5        = "Cosmic Wall - 5"
 | |
| cosmic_wall_chao_1   = "Cosmic Wall - Chao Key 1"
 | |
| cosmic_wall_chao_2   = "Cosmic Wall - Chao Key 2"
 | |
| cosmic_wall_chao_3   = "Cosmic Wall - Chao Key 3"
 | |
| cosmic_wall_pipe_1   = "Cosmic Wall - Pipe 1"
 | |
| cosmic_wall_pipe_2   = "Cosmic Wall - Pipe 2"
 | |
| cosmic_wall_pipe_3   = "Cosmic Wall - Pipe 3"
 | |
| cosmic_wall_pipe_4   = "Cosmic Wall - Pipe 4"
 | |
| cosmic_wall_pipe_5   = "Cosmic Wall - Pipe 5"
 | |
| cosmic_wall_omo_1    = "Cosmic Wall - Omochao 1"
 | |
| cosmic_wall_beetle   = "Cosmic Wall - Gold Beetle"
 | |
| cosmic_wall_upgrade  = "Cosmic Wall - Upgrade"
 | |
| 
 | |
| # Rouge Mission Definitions
 | |
| dry_lagoon_1           = "Dry Lagoon - 1"
 | |
| dry_lagoon_2           = "Dry Lagoon - 2"
 | |
| dry_lagoon_3           = "Dry Lagoon - 3"
 | |
| dry_lagoon_4           = "Dry Lagoon - 4"
 | |
| dry_lagoon_5           = "Dry Lagoon - 5"
 | |
| dry_lagoon_chao_1      = "Dry Lagoon - Chao Key 1"
 | |
| dry_lagoon_chao_2      = "Dry Lagoon - Chao Key 2"
 | |
| dry_lagoon_chao_3      = "Dry Lagoon - Chao Key 3"
 | |
| dry_lagoon_pipe_1      = "Dry Lagoon - Pipe 1"
 | |
| dry_lagoon_hidden_1    = "Dry Lagoon - Hidden 1"
 | |
| dry_lagoon_omo_1       = "Dry Lagoon - Omochao 1"
 | |
| dry_lagoon_omo_2       = "Dry Lagoon - Omochao 2"
 | |
| dry_lagoon_omo_3       = "Dry Lagoon - Omochao 3"
 | |
| dry_lagoon_omo_4       = "Dry Lagoon - Omochao 4"
 | |
| dry_lagoon_omo_5       = "Dry Lagoon - Omochao 5"
 | |
| dry_lagoon_omo_6       = "Dry Lagoon - Omochao 6"
 | |
| dry_lagoon_omo_7       = "Dry Lagoon - Omochao 7"
 | |
| dry_lagoon_omo_8       = "Dry Lagoon - Omochao 8"
 | |
| dry_lagoon_omo_9       = "Dry Lagoon - Omochao 9"
 | |
| dry_lagoon_omo_10      = "Dry Lagoon - Omochao 10"
 | |
| dry_lagoon_omo_11      = "Dry Lagoon - Omochao 11"
 | |
| dry_lagoon_omo_12      = "Dry Lagoon - Omochao 12"
 | |
| dry_lagoon_beetle      = "Dry Lagoon - Gold Beetle"
 | |
| dry_lagoon_upgrade     = "Dry Lagoon - Upgrade"
 | |
| egg_quarters_1         = "Egg Quarters - 1"
 | |
| egg_quarters_2         = "Egg Quarters - 2"
 | |
| egg_quarters_3         = "Egg Quarters - 3"
 | |
| egg_quarters_4         = "Egg Quarters - 4"
 | |
| egg_quarters_5         = "Egg Quarters - 5"
 | |
| egg_quarters_chao_1    = "Egg Quarters - Chao Key 1"
 | |
| egg_quarters_chao_2    = "Egg Quarters - Chao Key 2"
 | |
| egg_quarters_chao_3    = "Egg Quarters - Chao Key 3"
 | |
| egg_quarters_pipe_1    = "Egg Quarters - Pipe 1"
 | |
| egg_quarters_pipe_2    = "Egg Quarters - Pipe 2"
 | |
| egg_quarters_hidden_1  = "Egg Quarters - Hidden 1"
 | |
| egg_quarters_hidden_2  = "Egg Quarters - Hidden 2"
 | |
| egg_quarters_omo_1     = "Egg Quarters - Omochao 1"
 | |
| egg_quarters_omo_2     = "Egg Quarters - Omochao 2"
 | |
| egg_quarters_omo_3     = "Egg Quarters - Omochao 3"
 | |
| egg_quarters_omo_4     = "Egg Quarters - Omochao 4"
 | |
| egg_quarters_omo_5     = "Egg Quarters - Omochao 5"
 | |
| egg_quarters_omo_6     = "Egg Quarters - Omochao 6"
 | |
| egg_quarters_omo_7     = "Egg Quarters - Omochao 7"
 | |
| egg_quarters_beetle    = "Egg Quarters - Gold Beetle"
 | |
| egg_quarters_upgrade   = "Egg Quarters - Upgrade"
 | |
| security_hall_1        = "Security Hall - 1"
 | |
| security_hall_2        = "Security Hall - 2"
 | |
| security_hall_3        = "Security Hall - 3"
 | |
| security_hall_4        = "Security Hall - 4"
 | |
| security_hall_5        = "Security Hall - 5"
 | |
| security_hall_chao_1   = "Security Hall - Chao Key 1"
 | |
| security_hall_chao_2   = "Security Hall - Chao Key 2"
 | |
| security_hall_chao_3   = "Security Hall - Chao Key 3"
 | |
| security_hall_pipe_1   = "Security Hall - Pipe 1"
 | |
| security_hall_hidden_1 = "Security Hall - Hidden 1"
 | |
| security_hall_omo_1    = "Security Hall - Omochao 1"
 | |
| security_hall_omo_2    = "Security Hall - Omochao 2"
 | |
| security_hall_omo_3    = "Security Hall - Omochao 3"
 | |
| security_hall_omo_4    = "Security Hall - Omochao 4"
 | |
| security_hall_omo_5    = "Security Hall - Omochao 5"
 | |
| security_hall_omo_6    = "Security Hall - Omochao 6"
 | |
| security_hall_omo_7    = "Security Hall - Omochao 7"
 | |
| security_hall_omo_8    = "Security Hall - Omochao 8"
 | |
| security_hall_omo_9    = "Security Hall - Omochao 9"
 | |
| security_hall_omo_10   = "Security Hall - Omochao 10"
 | |
| security_hall_omo_11   = "Security Hall - Omochao 11"
 | |
| security_hall_omo_12   = "Security Hall - Omochao 12"
 | |
| security_hall_beetle   = "Security Hall - Gold Beetle"
 | |
| security_hall_upgrade  = "Security Hall - Upgrade"
 | |
| route_280_1            = "Route 280 - 1"
 | |
| route_280_2            = "Route 280 - 2"
 | |
| route_280_3            = "Route 280 - 3"
 | |
| route_280_4            = "Route 280 - 4"
 | |
| route_280_5            = "Route 280 - 5"
 | |
| mad_space_1            = "Mad Space - 1"
 | |
| mad_space_2            = "Mad Space - 2"
 | |
| mad_space_3            = "Mad Space - 3"
 | |
| mad_space_4            = "Mad Space - 4"
 | |
| mad_space_5            = "Mad Space - 5"
 | |
| mad_space_chao_1       = "Mad Space - Chao Key 1"
 | |
| mad_space_chao_2       = "Mad Space - Chao Key 2"
 | |
| mad_space_chao_3       = "Mad Space - Chao Key 3"
 | |
| mad_space_pipe_1       = "Mad Space - Pipe 1"
 | |
| mad_space_pipe_2       = "Mad Space - Pipe 2"
 | |
| mad_space_pipe_3       = "Mad Space - Pipe 3"
 | |
| mad_space_pipe_4       = "Mad Space - Pipe 4"
 | |
| mad_space_omo_1        = "Mad Space - Omochao 1"
 | |
| mad_space_omo_2        = "Mad Space - Omochao 2"
 | |
| mad_space_omo_3        = "Mad Space - Omochao 3"
 | |
| mad_space_omo_4        = "Mad Space - Omochao 4"
 | |
| mad_space_omo_5        = "Mad Space - Omochao 5"
 | |
| mad_space_beetle       = "Mad Space - Gold Beetle"
 | |
| mad_space_upgrade      = "Mad Space - Upgrade"
 | |
| 
 | |
| # Final Mission Definitions
 | |
| cannon_core_1        = "Cannon Core - 1"
 | |
| cannon_core_2        = "Cannon Core - 2"
 | |
| cannon_core_3        = "Cannon Core - 3"
 | |
| cannon_core_4        = "Cannon Core - 4"
 | |
| cannon_core_5        = "Cannon Core - 5"
 | |
| cannon_core_chao_1   = "Cannon Core - Chao Key 1"
 | |
| cannon_core_chao_2   = "Cannon Core - Chao Key 2"
 | |
| cannon_core_chao_3   = "Cannon Core - Chao Key 3"
 | |
| cannon_core_pipe_1   = "Cannon Core - Pipe 1"
 | |
| cannon_core_pipe_2   = "Cannon Core - Pipe 2"
 | |
| cannon_core_pipe_3   = "Cannon Core - Pipe 3"
 | |
| cannon_core_pipe_4   = "Cannon Core - Pipe 4"
 | |
| cannon_core_pipe_5   = "Cannon Core - Pipe 5"
 | |
| cannon_core_omo_1    = "Cannon Core - Omochao 1"
 | |
| cannon_core_omo_2    = "Cannon Core - Omochao 2"
 | |
| cannon_core_omo_3    = "Cannon Core - Omochao 3"
 | |
| cannon_core_omo_4    = "Cannon Core - Omochao 4"
 | |
| cannon_core_omo_5    = "Cannon Core - Omochao 5"
 | |
| cannon_core_omo_6    = "Cannon Core - Omochao 6"
 | |
| cannon_core_omo_7    = "Cannon Core - Omochao 7"
 | |
| cannon_core_omo_8    = "Cannon Core - Omochao 8"
 | |
| cannon_core_omo_9    = "Cannon Core - Omochao 9"
 | |
| cannon_core_hidden_1 = "Cannon Core - Hidden 1"
 | |
| cannon_core_beetle   = "Cannon Core - Gold Beetle"
 | |
| 
 | |
| # Boss Definitions
 | |
| gate_1_boss = "Gate 1 Boss"
 | |
| gate_2_boss = "Gate 2 Boss"
 | |
| gate_3_boss = "Gate 3 Boss"
 | |
| gate_4_boss = "Gate 4 Boss"
 | |
| gate_5_boss = "Gate 5 Boss"
 | |
| 
 | |
| # Chao Garden Definitions
 | |
| chao_race_crab_pool_1       = "Chao Race - Beginner - Crab Pool 1"
 | |
| chao_race_crab_pool_2       = "Chao Race - Beginner - Crab Pool 2"
 | |
| chao_race_crab_pool_3       = "Chao Race - Beginner - Crab Pool 3"
 | |
| chao_race_stump_valley_1    = "Chao Race - Beginner - Stump Valley 1"
 | |
| chao_race_stump_valley_2    = "Chao Race - Beginner - Stump Valley 2"
 | |
| chao_race_stump_valley_3    = "Chao Race - Beginner - Stump Valley 3"
 | |
| chao_race_mushroom_forest_1 = "Chao Race - Beginner - Mushroom Forest 1"
 | |
| chao_race_mushroom_forest_2 = "Chao Race - Beginner - Mushroom Forest 2"
 | |
| chao_race_mushroom_forest_3 = "Chao Race - Beginner - Mushroom Forest 3"
 | |
| chao_race_block_canyon_1    = "Chao Race - Beginner - Block Canyon 1"
 | |
| chao_race_block_canyon_2    = "Chao Race - Beginner - Block Canyon 2"
 | |
| chao_race_block_canyon_3    = "Chao Race - Beginner - Block Canyon 3"
 | |
| 
 | |
| chao_race_aquamarine_1 = "Chao Race - Jewel - Aquamarine 1"
 | |
| chao_race_aquamarine_2 = "Chao Race - Jewel - Aquamarine 2"
 | |
| chao_race_aquamarine_3 = "Chao Race - Jewel - Aquamarine 3"
 | |
| chao_race_aquamarine_4 = "Chao Race - Jewel - Aquamarine 4"
 | |
| chao_race_aquamarine_5 = "Chao Race - Jewel - Aquamarine 5"
 | |
| chao_race_topaz_1      = "Chao Race - Jewel - Topaz 1"
 | |
| chao_race_topaz_2      = "Chao Race - Jewel - Topaz 2"
 | |
| chao_race_topaz_3      = "Chao Race - Jewel - Topaz 3"
 | |
| chao_race_topaz_4      = "Chao Race - Jewel - Topaz 4"
 | |
| chao_race_topaz_5      = "Chao Race - Jewel - Topaz 5"
 | |
| chao_race_peridot_1    = "Chao Race - Jewel - Peridot 1"
 | |
| chao_race_peridot_2    = "Chao Race - Jewel - Peridot 2"
 | |
| chao_race_peridot_3    = "Chao Race - Jewel - Peridot 3"
 | |
| chao_race_peridot_4    = "Chao Race - Jewel - Peridot 4"
 | |
| chao_race_peridot_5    = "Chao Race - Jewel - Peridot 5"
 | |
| chao_race_garnet_1     = "Chao Race - Jewel - Garnet 1"
 | |
| chao_race_garnet_2     = "Chao Race - Jewel - Garnet 2"
 | |
| chao_race_garnet_3     = "Chao Race - Jewel - Garnet 3"
 | |
| chao_race_garnet_4     = "Chao Race - Jewel - Garnet 4"
 | |
| chao_race_garnet_5     = "Chao Race - Jewel - Garnet 5"
 | |
| chao_race_onyx_1       = "Chao Race - Jewel - Onyx 1"
 | |
| chao_race_onyx_2       = "Chao Race - Jewel - Onyx 2"
 | |
| chao_race_onyx_3       = "Chao Race - Jewel - Onyx 3"
 | |
| chao_race_onyx_4       = "Chao Race - Jewel - Onyx 4"
 | |
| chao_race_onyx_5       = "Chao Race - Jewel - Onyx 5"
 | |
| chao_race_diamond_1    = "Chao Race - Jewel - Diamond 1"
 | |
| chao_race_diamond_2    = "Chao Race - Jewel - Diamond 2"
 | |
| chao_race_diamond_3    = "Chao Race - Jewel - Diamond 3"
 | |
| chao_race_diamond_4    = "Chao Race - Jewel - Diamond 4"
 | |
| chao_race_diamond_5    = "Chao Race - Jewel - Diamond 5"
 | |
| 
 | |
| chao_race_challenge_1  = "Chao Race - Challenge 1"
 | |
| chao_race_challenge_2  = "Chao Race - Challenge 2"
 | |
| chao_race_challenge_3  = "Chao Race - Challenge 3"
 | |
| chao_race_challenge_4  = "Chao Race - Challenge 4"
 | |
| chao_race_challenge_5  = "Chao Race - Challenge 5"
 | |
| chao_race_challenge_6  = "Chao Race - Challenge 6"
 | |
| chao_race_challenge_7  = "Chao Race - Challenge 7"
 | |
| chao_race_challenge_8  = "Chao Race - Challenge 8"
 | |
| chao_race_challenge_9  = "Chao Race - Challenge 9"
 | |
| chao_race_challenge_10 = "Chao Race - Challenge 10"
 | |
| chao_race_challenge_11 = "Chao Race - Challenge 11"
 | |
| chao_race_challenge_12 = "Chao Race - Challenge 12"
 | |
| 
 | |
| chao_race_hero_1 = "Chao Race - Hero 1"
 | |
| chao_race_hero_2 = "Chao Race - Hero 2"
 | |
| chao_race_hero_3 = "Chao Race - Hero 3"
 | |
| chao_race_hero_4 = "Chao Race - Hero 4"
 | |
| 
 | |
| chao_race_dark_1 = "Chao Race - Dark 1"
 | |
| chao_race_dark_2 = "Chao Race - Dark 2"
 | |
| chao_race_dark_3 = "Chao Race - Dark 3"
 | |
| chao_race_dark_4 = "Chao Race - Dark 4"
 | |
| 
 | |
| chao_beginner_karate = "Chao Karate - Beginner"
 | |
| chao_standard_karate = "Chao Karate - Standard"
 | |
| chao_expert_karate   = "Chao Karate - Expert"
 | |
| chao_super_karate    = "Chao Karate - Super"
 | |
| 
 | |
| # Kart Race Definitions
 | |
| kart_race_beginner_sonic    = "Kart Race - Beginner - Sonic"
 | |
| kart_race_beginner_tails    = "Kart Race - Beginner - Tails"
 | |
| kart_race_beginner_knuckles = "Kart Race - Beginner - Knuckles"
 | |
| kart_race_beginner_shadow   = "Kart Race - Beginner - Shadow"
 | |
| kart_race_beginner_eggman   = "Kart Race - Beginner - Eggman"
 | |
| kart_race_beginner_rouge    = "Kart Race - Beginner - Rouge"
 | |
| kart_race_standard_sonic    = "Kart Race - Standard - Sonic"
 | |
| kart_race_standard_tails    = "Kart Race - Standard - Tails"
 | |
| kart_race_standard_knuckles = "Kart Race - Standard - Knuckles"
 | |
| kart_race_standard_shadow   = "Kart Race - Standard - Shadow"
 | |
| kart_race_standard_eggman   = "Kart Race - Standard - Eggman"
 | |
| kart_race_standard_rouge    = "Kart Race - Standard - Rouge"
 | |
| kart_race_expert_sonic      = "Kart Race - Expert - Sonic"
 | |
| kart_race_expert_tails      = "Kart Race - Expert - Tails"
 | |
| kart_race_expert_knuckles   = "Kart Race - Expert - Knuckles"
 | |
| kart_race_expert_shadow     = "Kart Race - Expert - Shadow"
 | |
| kart_race_expert_eggman     = "Kart Race - Expert - Eggman"
 | |
| kart_race_expert_rouge      = "Kart Race - Expert - Rouge"
 | |
| 
 | |
| kart_race_beginner = "Kart Race - Beginner"
 | |
| kart_race_standard = "Kart Race - Standard"
 | |
| kart_race_expert   = "Kart Race - Expert"
 | |
| 
 | |
| # Other Definitions
 | |
| green_hill        = "Green Hill"
 | |
| green_hill_chao_1 = "Green Hill - Chao Key 1"
 | |
| biolizard         = "Biolizard"
 | |
| finalhazard       = "Finalhazard"
 | |
| 
 | |
| 
 | |
| # Region Definitions
 | |
| menu_region   = "Menu"
 | |
| gate_0_region = "Gate 0"
 | |
| gate_1_region = "Gate 1"
 | |
| gate_2_region = "Gate 2"
 | |
| gate_3_region = "Gate 3"
 | |
| gate_4_region = "Gate 4"
 | |
| gate_5_region = "Gate 5"
 | |
| 
 | |
| gate_1_boss_region = "Gate 1 Boss"
 | |
| gate_2_boss_region = "Gate 2 Boss"
 | |
| gate_3_boss_region = "Gate 3 Boss"
 | |
| gate_4_boss_region = "Gate 4 Boss"
 | |
| gate_5_boss_region = "Gate 5 Boss"
 | |
| 
 | |
| city_escape_region  = "City Escape"
 | |
| metal_harbor_region = "Metal Harbor"
 | |
| green_forest_region = "Green Forest"
 | |
| pyramid_cave_region = "Pyramid Cave"
 | |
| crazy_gadget_region = "Crazy Gadget"
 | |
| final_rush_region   = "Final Rush"
 | |
| 
 | |
| prison_lane_region    = "Prison Lane"
 | |
| mission_street_region = "Mission Street"
 | |
| route_101_region      = "Route 101"
 | |
| hidden_base_region    = "Hidden Base"
 | |
| eternal_engine_region = "Eternal Engine"
 | |
| 
 | |
| wild_canyon_region   = "Wild Canyon"
 | |
| pumpkin_hill_region  = "Pumpkin Hill"
 | |
| aquatic_mine_region  = "Aquatic Mine"
 | |
| death_chamber_region = "Death Chamber"
 | |
| meteor_herd_region   = "Meteor Herd"
 | |
| 
 | |
| radical_highway_region = "Radical Highway"
 | |
| white_jungle_region    = "White Jungle"
 | |
| sky_rail_region        = "Sky Rail"
 | |
| final_chase_region     = "Final Chase"
 | |
| 
 | |
| iron_gate_region   = "Iron Gate"
 | |
| sand_ocean_region  = "Sand Ocean"
 | |
| lost_colony_region = "Lost Colony"
 | |
| weapons_bed_region = "Weapons Bed"
 | |
| cosmic_wall_region = "Cosmic Wall"
 | |
| 
 | |
| dry_lagoon_region    = "Dry Lagoon"
 | |
| egg_quarters_region  = "Egg Quarters"
 | |
| security_hall_region = "Security Hall"
 | |
| route_280_region     = "Route 280"
 | |
| mad_space_region     = "Mad Space"
 | |
| 
 | |
| cannon_core_region = "Cannon Core"
 | |
| 
 | |
| biolizard_region = "Biolizard"
 | |
| 
 | |
| green_hill_region  = "Green Hill"
 | |
| 
 | |
| grand_prix        = "Grand Prix"
 | |
| grand_prix_region = "Grand Prix"
 | |
| 
 | |
| chao_garden_beginner_region     = "Chao Garden - Beginner"
 | |
| chao_garden_intermediate_region = "Chao Garden - Intermediate"
 | |
| chao_garden_expert_region       = "Chao Garden - Expert"
 | |
| 
 | |
| kart_race_beginner_region = "Kart Race - Beginner"
 | |
| kart_race_standard_region = "Kart Race - Intermediate"
 | |
| kart_race_expert_region   = "Kart Race - Expert"
 |