81 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Python
		
	
	
	
class CCRoom:
 | 
						|
    pantry = "Pantry"
 | 
						|
    crafts_room = "Crafts Room"
 | 
						|
    fish_tank = "Fish Tank"
 | 
						|
    bulletin_board = "Bulletin Board"
 | 
						|
    vault = "Vault"
 | 
						|
    boiler_room = "Boiler Room"
 | 
						|
    abandoned_joja_mart = "Abandoned Joja Mart"
 | 
						|
 | 
						|
 | 
						|
class BundleName:
 | 
						|
    spring_foraging = "Spring Foraging Bundle"
 | 
						|
    summer_foraging = "Summer Foraging Bundle"
 | 
						|
    fall_foraging = "Fall Foraging Bundle"
 | 
						|
    winter_foraging = "Winter Foraging Bundle"
 | 
						|
    construction = "Construction Bundle"
 | 
						|
    exotic_foraging = "Exotic Foraging Bundle"
 | 
						|
    beach_foraging = "Beach Foraging Bundle"
 | 
						|
    mines_foraging = "Mines Foraging Bundle"
 | 
						|
    desert_foraging = "Desert Foraging Bundle"
 | 
						|
    island_foraging = "Island Foraging Bundle"
 | 
						|
    sticky = "Sticky Bundle"
 | 
						|
    wild_medicine = "Wild Medicine Bundle"
 | 
						|
    quality_foraging = "Quality Foraging Bundle"
 | 
						|
    spring_crops = "Spring Crops Bundle"
 | 
						|
    summer_crops = "Summer Crops Bundle"
 | 
						|
    fall_crops = "Fall Crops Bundle"
 | 
						|
    quality_crops = "Quality Crops Bundle"
 | 
						|
    animal = "Animal Bundle"
 | 
						|
    artisan = "Artisan Bundle"
 | 
						|
    rare_crops = "Rare Crops Bundle"
 | 
						|
    fish_farmer = "Fish Farmer's Bundle"
 | 
						|
    garden = "Garden Bundle"
 | 
						|
    brewer = "Brewer's Bundle"
 | 
						|
    orchard = "Orchard Bundle"
 | 
						|
    island_crops = "Island Crops Bundle"
 | 
						|
    agronomist = "Agronomist's Bundle"
 | 
						|
    slime_farmer = "Slime Farmer Bundle"
 | 
						|
    river_fish = "River Fish Bundle"
 | 
						|
    lake_fish = "Lake Fish Bundle"
 | 
						|
    ocean_fish = "Ocean Fish Bundle"
 | 
						|
    night_fish = "Night Fishing Bundle"
 | 
						|
    crab_pot = "Crab Pot Bundle"
 | 
						|
    trash = "Trash Bundle"
 | 
						|
    recycling = "Recycling Bundle"
 | 
						|
    specialty_fish = "Specialty Fish Bundle"
 | 
						|
    spring_fish = "Spring Fishing Bundle"
 | 
						|
    summer_fish = "Summer Fishing Bundle"
 | 
						|
    fall_fish = "Fall Fishing Bundle"
 | 
						|
    winter_fish = "Winter Fishing Bundle"
 | 
						|
    rain_fish = "Rain Fishing Bundle"
 | 
						|
    quality_fish = "Quality Fish Bundle"
 | 
						|
    master_fisher = "Master Fisher's Bundle"
 | 
						|
    legendary_fish = "Legendary Fish Bundle"
 | 
						|
    island_fish = "Island Fish Bundle"
 | 
						|
    deep_fishing = "Deep Fishing Bundle"
 | 
						|
    tackle = "Tackle Bundle"
 | 
						|
    bait = "Master Baiter Bundle"
 | 
						|
    blacksmith = "Blacksmith's Bundle"
 | 
						|
    geologist = "Geologist's Bundle"
 | 
						|
    adventurer = "Adventurer's Bundle"
 | 
						|
    treasure_hunter = "Treasure Hunter's Bundle"
 | 
						|
    engineer = "Engineer's Bundle"
 | 
						|
    demolition = "Demolition Bundle"
 | 
						|
    paleontologist = "Paleontologist's Bundle"
 | 
						|
    archaeologist = "Archaeologist's Bundle"
 | 
						|
    chef = "Chef's Bundle"
 | 
						|
    dye = "Dye Bundle"
 | 
						|
    field_research = "Field Research Bundle"
 | 
						|
    fodder = "Fodder Bundle"
 | 
						|
    enchanter = "Enchanter's Bundle"
 | 
						|
    children = "Children's Bundle"
 | 
						|
    forager = "Forager's Bundle"
 | 
						|
    home_cook = "Home Cook's Bundle"
 | 
						|
    bartender = "Bartender's Bundle"
 | 
						|
    gambler = "Gambler's Bundle"
 | 
						|
    carnival = "Carnival Bundle"
 | 
						|
    walnut_hunter = "Walnut Hunter Bundle"
 | 
						|
    qi_helper = "Qi's Helper Bundle"
 | 
						|
    missing_bundle = "The Missing Bundle"
 |