From e8096b9d7af8ba9db75b4a065938fc84409ef37f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Florian=20Schr=C3=B6der?=
 <fschroeder@techfak.uni-bielefeld.de>
Date: Sat, 20 Jan 2024 02:21:50 +0100
Subject: [PATCH] update item info debug

---
 .../game_content/item_info_debug.yaml         | 105 +++++++++++++++++-
 1 file changed, 99 insertions(+), 6 deletions(-)

diff --git a/overcooked_simulator/game_content/item_info_debug.yaml b/overcooked_simulator/game_content/item_info_debug.yaml
index 32c86966..a7724749 100644
--- a/overcooked_simulator/game_content/item_info_debug.yaml
+++ b/overcooked_simulator/game_content/item_info_debug.yaml
@@ -7,6 +7,12 @@ Sink:
 Stove:
   type: Equipment
 
+DeepFryer:
+  type: Equipment
+
+Oven:
+  type: Equipment
+
 Pot:
   type: Equipment
   equipment: Stove
@@ -15,13 +21,21 @@ Pan:
   type: Equipment
   equipment: Stove
 
+Basket:
+  type: Equipment
+  equipment: DeepFryer
+
+Peel:
+  type: Equipment
+  equipment: Oven
+
 DirtyPlate:
   type: Equipment
 
 Plate:
   type: Equipment
   needs: [ DirtyPlate ]
-  seconds: 1.0
+  seconds: 0.1
   equipment: Sink
 
 # --------------------------------------------------------------------------------
@@ -41,6 +55,21 @@ Meat:
 Bun:
   type: Ingredient
 
+Potato:
+  type: Ingredient
+
+Fish:
+  type: Ingredient
+
+Dough:
+  type: Ingredient
+
+Cheese:
+  type: Ingredient
+
+Sausage:
+  type: Ingredient
+
 ChoppedTomato:
   type: Ingredient
   needs: [ Tomato ]
@@ -59,18 +88,61 @@ ChoppedOnion:
   seconds: 0.1
   equipment: CuttingBoard
 
-ChoppedMeat:
+Patty:
   type: Ingredient
   needs: [ Meat ]
   seconds: 0.1
   equipment: CuttingBoard
 
+ChipsSticks:
+  type: Ingredient
+  needs: [ Potato ]
+  seconds: 0.1
+  equipment: CuttingBoard
+
+ChoppedFish:
+  type: Ingredient
+  needs: [ Fish ]
+  seconds: 0.1
+  equipment: CuttingBoard
+
+PizzaBase:
+  type: Ingredient
+  needs: [ Dough ]
+  seconds: 0.1
+  equipment: CuttingBoard
+
+GratedCheese:
+  type: Ingredient
+  needs: [ Cheese ]
+  seconds: 0.1
+  equipment: CuttingBoard
+
+ChoppedSausage:
+  type: Ingredient
+  needs: [ Sausage ]
+  seconds: 0.1
+  equipment: CuttingBoard
+
 CookedPatty:
   type: Ingredient
-  seconds: 2.0
-  needs: [ ChoppedMeat ]
+  seconds: 0.1
+  needs: [ Patty ]
   equipment: Pan
 
+FriedChips:
+  type: Ingredient
+  seconds: 0.1
+  needs: [ ChipsSticks ]
+  equipment: Basket
+
+FriedFish:
+  type: Ingredient
+  seconds: 0.1
+  needs: [ ChoppedFish ]
+  equipment: Basket
+
+
 # --------------------------------------------------------------------------------
 
 Burger:
@@ -86,11 +158,32 @@ Salad:
 TomatoSoup:
   type: Meal
   needs: [ ChoppedTomato, ChoppedTomato, ChoppedTomato ]
-  seconds: 3.0
+  seconds: 0.1
   equipment: Pot
 
 OnionSoup:
   type: Meal
   needs: [ ChoppedOnion, ChoppedOnion, ChoppedOnion ]
-  seconds: 3.0
+  seconds: 0.1
   equipment: Pot
+
+Chips:
+  type: Meal
+  needs: [ FriedChips ]
+  equipment: ~
+
+FishMeal:
+  type: Meal
+  needs: [ FriedFish ]
+  equipment: ~
+
+FishAndChips:
+  type: Meal
+  needs: [ FriedFish, FriedChips ]
+  equipment: ~
+
+Pizza:
+  type: Meal
+  needs: [ PizzaBase, ChoppedTomato, GratedCheese, ChoppedSausage ]
+  seconds: 0.1
+  equipment: Peel
-- 
GitLab