 205ca7fa37
			
		
	
	205ca7fa37
	
	
	
		
			
			* Fix logic bug on daggerfish * Make new region for pond. * Fix SVE logic for crops * Fix Distant Lands Cropsanity * Fix failing tests. * Reverting removing these for now. * Fix bugs, add combat requirement * convert str into tuple directly * add ginger island to mod tests * Move a lot of mod item logic to content pack * Gut the rules from DL while we're at it. * Import nuke * Fix alecto * Move back some rules for now. * Move archaeology rules * Add some comments why its done. * Clean up archaeology and fix sve * Moved dulse to water item class * Remove digging like worms for now * fix * Add missing shipsanity location * Move background names around or something idk * Revert ArchaeologyTrash for now --------- Co-authored-by: Jouramie <jouramie@hotmail.com>
		
			
				
	
	
		
			132 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			132 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| class Meal:
 | |
|     banana_pudding = "Banana Pudding"
 | |
|     poi = "Poi"
 | |
|     mango_sticky_rice = "Mango Sticky Rice"
 | |
|     algae_soup = "Algae Soup"
 | |
|     artichoke_dip = "Artichoke Dip"
 | |
|     autumn_bounty = "Autumn's Bounty"
 | |
|     baked_fish = "Baked Fish"
 | |
|     bean_hotpot = "Bean Hotpot"
 | |
|     blackberry_cobbler = "Blackberry Cobbler"
 | |
|     blueberry_tart = "Blueberry Tart"
 | |
|     bread = "Bread"
 | |
|     bruschetta = "Bruschetta"
 | |
|     carp_surprise = "Carp Surprise"
 | |
|     cheese_cauliflower = "Cheese Cauliflower"
 | |
|     chocolate_cake = "Chocolate Cake"
 | |
|     chowder = "Chowder"
 | |
|     coleslaw = "Coleslaw"
 | |
|     complete_breakfast = "Complete Breakfast"
 | |
|     cookie = "Cookies"
 | |
|     crab_cakes = "Crab Cakes"
 | |
|     cranberry_candy = "Cranberry Candy"
 | |
|     cranberry_sauce = "Cranberry Sauce"
 | |
|     crispy_bass = "Crispy Bass"
 | |
|     dish_o_the_sea = "Dish O' The Sea"
 | |
|     eggplant_parmesan = "Eggplant Parmesan"
 | |
|     escargot = "Escargot"
 | |
|     farmer_lunch = "Farmer's Lunch"
 | |
|     fiddlehead_risotto = "Fiddlehead Risotto"
 | |
|     fish_stew = "Fish Stew"
 | |
|     fish_taco = "Fish Taco"
 | |
|     fried_calamari = "Fried Calamari"
 | |
|     fried_eel = "Fried Eel"
 | |
|     fried_egg = "Fried Egg"
 | |
|     fried_mushroom = "Fried Mushroom"
 | |
|     fruit_salad = "Fruit Salad"
 | |
|     glazed_yams = "Glazed Yams"
 | |
|     hashbrowns = "Hashbrowns"
 | |
|     ice_cream = "Ice Cream"
 | |
|     lobster_bisque = "Lobster Bisque"
 | |
|     lucky_lunch = "Lucky Lunch"
 | |
|     maki_roll = "Maki Roll"
 | |
|     maple_bar = "Maple Bar"
 | |
|     miners_treat = "Miner's Treat"
 | |
|     moss_soup = "Moss Soup"
 | |
|     omelet = "Omelet"
 | |
|     pale_broth = "Pale Broth"
 | |
|     pancakes = "Pancakes"
 | |
|     parsnip_soup = "Parsnip Soup"
 | |
|     pepper_poppers = "Pepper Poppers"
 | |
|     pink_cake = "Pink Cake"
 | |
|     pizza = "Pizza"
 | |
|     plum_pudding = "Plum Pudding"
 | |
|     poppyseed_muffin = "Poppyseed Muffin"
 | |
|     pumpkin_pie = "Pumpkin Pie"
 | |
|     pumpkin_soup = "Pumpkin Soup"
 | |
|     radish_salad = "Radish Salad"
 | |
|     red_plate = "Red Plate"
 | |
|     rhubarb_pie = "Rhubarb Pie"
 | |
|     rice_pudding = "Rice Pudding"
 | |
|     roasted_hazelnuts = "Roasted Hazelnuts"
 | |
|     roots_platter = "Roots Platter"
 | |
|     salad = "Salad"
 | |
|     salmon_dinner = "Salmon Dinner"
 | |
|     sashimi = "Sashimi"
 | |
|     seafoam_pudding = "Seafoam Pudding"
 | |
|     shrimp_cocktail = "Shrimp Cocktail"
 | |
|     spaghetti = "Spaghetti"
 | |
|     spicy_eel = "Spicy Eel"
 | |
|     squid_ink_ravioli = "Squid Ink Ravioli"
 | |
|     stir_fry = "Stir Fry"
 | |
|     strange_bun = "Strange Bun"
 | |
|     stuffing = "Stuffing"
 | |
|     super_meal = "Super Meal"
 | |
|     survival_burger = "Survival Burger"
 | |
|     tom_kha_soup = "Tom Kha Soup"
 | |
|     tortilla = "Tortilla"
 | |
|     tropical_curry = "Tropical Curry"
 | |
|     trout_soup = "Trout Soup"
 | |
|     vegetable_medley = "Vegetable Medley"
 | |
|     magic_rock_candy = "Magic Rock Candy"
 | |
| 
 | |
| 
 | |
| class Beverage:
 | |
|     pina_colada = "Pina Colada"
 | |
|     ginger_ale = "Ginger Ale"
 | |
|     coffee = "Coffee"
 | |
|     triple_shot_espresso = "Triple Shot Espresso"
 | |
|     beer = "Beer"
 | |
|     joja_cola = "Joja Cola"
 | |
| 
 | |
| 
 | |
| class SVEMeal:
 | |
|     baked_berry_oatmeal = "Baked Berry Oatmeal"
 | |
|     big_bark_burger = "Big Bark Burger"
 | |
|     flower_cookie = "Flower Cookie"
 | |
|     frog_legs = "Frog Legs"
 | |
|     glazed_butterfish = "Glazed Butterfish"
 | |
|     mixed_berry_pie = "Mixed Berry Pie"
 | |
|     mushroom_berry_rice = "Mushroom Berry Rice"
 | |
|     seaweed_salad = "Seaweed Salad"
 | |
|     void_delight = "Void Delight"
 | |
|     void_salmon_sushi = "Void Salmon Sushi"
 | |
|     grampleton_orange_chicken = "Grampleton Orange Chicken"
 | |
|     stamina_capsule = "Stamina Capsule"
 | |
| 
 | |
| 
 | |
| class TrashyMeal:
 | |
|     grilled_cheese = "Grilled Cheese"
 | |
|     fish_casserole = "Fish Casserole"
 | |
| 
 | |
| 
 | |
| class ArchaeologyMeal:
 | |
|     diggers_delight = "Digger's Delight"
 | |
|     rocky_root = "Rocky Root Coffee"
 | |
|     ancient_jello = "Ancient Jello"
 | |
| 
 | |
| 
 | |
| class SVEBeverage:
 | |
|     sports_drink = "Sports Drink"
 | |
| 
 | |
| 
 | |
| class DistantLandsMeal:
 | |
|     mushroom_kebab = "Mushroom Kebab"
 | |
|     crayfish_soup = "Crayfish Soup"
 | |
|     pemmican = "Pemmican"
 | |
|     void_mint_tea = "Void Mint Tea"
 | |
| 
 | |
| 
 | |
| class BoardingHouseMeal:
 | |
|     special_pumpkin_soup = "Special Pumpkin Soup"
 |