From 382fc55af67bb767c226c4cacccdd444b9de63e3 Mon Sep 17 00:00:00 2001 From: arvay5 <74936474+arvay5@users.noreply.github.com> Date: Thu, 29 Feb 2024 21:18:04 -0500 Subject: [PATCH] fix: lobster harvesting (#4273) * Lobsterfest -Made lobsters drop lobster when harvested. -Added items and recipes for lobster, cooked lobster, smoked lobster, dehydrated lobster/rehydrated lobster, pickled lobster, salted lobster, canned lobster, lobster soup, and lobster rolls -Food item groups updated to include lobster-based items at a reduced chance compared to fish. * Lobsterfest 2, also soup -Made lobsters drop lobster when harvested. -Added items and recipes for lobster, cooked lobster, smoked lobster, dehydrated lobster/rehydrated lobster, pickled lobster, salted lobster, canned lobster, lobster soup, and lobster rolls -Food item groups updated to include lobster-based items at a reduced chance compared to fish. Fixed Lobster roll calories I think so github will stop throwing a fit. Also made it only cost 1 butter. -Changes to soup, broth, and curry fun values because they're very inconsistent Soup is good * Update harvest.json --- data/json/harvest.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/data/json/harvest.json b/data/json/harvest.json index 1b7b3cc2af06..13b726edb4e0 100644 --- a/data/json/harvest.json +++ b/data/json/harvest.json @@ -56,6 +56,16 @@ { "drop": "chitin_piece", "type": "skin", "mass_ratio": 0.1 } ] }, + { + "id": "lobster", + "type": "harvest", + "message": "You carefully crack open the lobster's exoskeleton to get at the delicious flesh beneath.", + "entries": [ + { "drop": "lobster", "type": "flesh", "mass_ratio": 0.32 }, + { "drop": "meat_scrap", "type": "flesh", "mass_ratio": 0.03 }, + { "drop": "chitin_piece", "type": "skin", "mass_ratio": 0.1 } + ] + }, { "id": "mutant_shellfish", "type": "harvest",