Skip to content

Commit

Permalink
new fish dishes
Browse files Browse the repository at this point in the history
  • Loading branch information
brightrim committed Apr 30, 2023
1 parent 5138981 commit dbdc934
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
32 changes: 32 additions & 0 deletions craft/final/cooking.lua
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,15 @@ product:addIngredient(2493, 3) -- carrots
product:addIngredient(517, 1) -- bottle of rum
product:addRemnant(518, 1) -- empty rum bottle

product = cooking:addProduct(catId, Item.rosefishDish, 1)
product:addIngredient(Item.woodenPlate, 1)
product:addIngredient(Item.smokedRosefish, 1)
product:addIngredient(Item.carrots, 3)
product:addIngredient(Item.tomato, 3)
product:addIngredient(Item.cabbage, 3)
product:addIngredient(Item.bottleOfBearSlayer, 1)
product:addRemnant(Item.emptyLiquorBottle, 1)

catId = cooking:addCategory("Bowl recipes", "Schüsselgerichte")

-- mushroom soup
Expand Down Expand Up @@ -203,6 +212,16 @@ product:addIngredient(2502, 1) -- bottle of milk
product:addRemnant(2498, 1) -- large empty bottle
product:addIngredient(3573, 2) -- cheese

product = cooking:addProduct(catId, Item.mackerelSalad, 1)
product:addIngredient(Item.soupBowl, 1)
product:addIngredient(Item.smokedHorsemackerel, 2)
product:addIngredient(Item.bottleOfMilk, 1)
product:addIngredient(Item.potato, 3)
product:addIngredient(Item.onion, 1)
product:addIngredient(Item.flour, 1)
product:addIngredient(Item.cabbage, 2)
product:addRemnant(Item.largeEmptyBottle, 1)

-- goulash
product = cooking:addProduct(catId, 3711, 1)
product:addIngredient(2935, 1) -- soup bowl
Expand All @@ -224,5 +243,18 @@ product:addIngredient(52, 1) -- bucket of water
product:addRemnant(51, 1) -- bucket
product:addRemnant(790,1) -- empty juice bottle

product = cooking:addProduct(catId, Item.rosefishStew, 1)
product:addIngredient(Item.soupBowl, 1)
product:addIngredient(Item.roseFish, 1)
product:addIngredient(Item.tomato, 3)
product:addIngredient(Item.onion, 2)
product:addIngredient(Item.potato, 2)
product:addIngredient(Item.bottleOfBerryBooze, 1)
product:addIngredient(Item.bucketOfWater, 1)
product:addRemnant(Item.bucket, 1)
product:addRemnant(Item.emptyLiquorBottle, 1)



M.cooking = cooking
return M
3 changes: 3 additions & 0 deletions item/food.lua
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ M.foodList[Item.steakDish] = {crafted = true, leftOver = 2952, buffs = {willpowe
M.foodList[Item.fishSoup] = {crafted = true, leftOver = 2935, buffs = {strength = 1, constitution = 2}}
M.foodList[Item.eggSaladSandwich] = {crafted = true, buffs = {dexterity = 2, agility = 1}}
-- Tier 5 Food
M.foodList[Item.mackerelSalad] = {crafted = true, leftOver = Item.soupBowl, buffs = {essence = 1, willpower = 2, intelligence = 1}}
M.foodList[Item.rosefishDish] = {crafted = true, leftOver = Item.woodenPlate, buffs = {essence = 2, intelligence = 2}}
M.foodList[Item.rosefishStew] = {crafted = true, leftOver = Item.soupBowl, buffs = {perception = 2, agility = 2}}
M.foodList[Item.rabbitDish] = {crafted = true, leftOver = 2952, buffs = {strength = 2, constitution = 2}}
M.foodList[Item.beerSoup] = {crafted = true, leftOver = 2935, buffs = {essence = 1, perception = 2, intelligence = 1}}
M.foodList[Item.strawberryCake] = {crafted = true, buffs = {dexterity = 2, agility = 2}}
Expand Down

0 comments on commit dbdc934

Please sign in to comment.