annadeichler commited on
Commit
6d68930
·
1 Parent(s): 620c3ff

update recording data

Browse files
Files changed (1) hide show
  1. data/recipes/recipes.json +116 -0
data/recipes/recipes.json ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "surface_map":
3
+ {
4
+ "0": "table",
5
+ "1": "countertop",
6
+ "2": "top shelf",
7
+ "3": "window surface"
8
+ },
9
+ "recipes": [
10
+ {
11
+ "id": 1,
12
+ "name": "Classic Grilled Cheese Sandwich",
13
+ "ingredients": [
14
+ {"name": "Bread", "location": 66, "surface": 2},
15
+ {"name": "Cheese", "location": 24, "surface": 0},
16
+ {"name": "Red Paprika", "location": 38, "surface": 0},
17
+ {"name": "Plate", "location": 20, "surface": 0},
18
+ {"name": "Knife", "location": 57, "surface": 1}
19
+ ],
20
+ "steps": [
21
+ "Lay the bread on a plate.",
22
+ "Use a knife to slice the paprika.",
23
+ "Place the sliced paprika on the bread and sprinkle with cheese."
24
+ ]
25
+ },
26
+ {
27
+ "id": 2,
28
+ "name": "Quick Carrot Spaghetti",
29
+ "ingredients": [
30
+ {"name": "Carrot", "location": 30, "surface": 0},
31
+ {"name": "Jar of tomato pasta sauce", "location": 60, "surface": 2},
32
+ {"name": "Spaghetti", "location": 45, "surface": 1},
33
+ {"name": "Pan", "location": 53, "surface": 1},
34
+ {"name": "Pot", "location": 34, "surface": 0},
35
+ {"name": "Sink", "location": "sink", "surface": 1},
36
+ {"name": "Knife", "location": 57, "surface": 1}
37
+ ],
38
+ "steps": [
39
+ "Heat a large, wide frying pan.",
40
+ "Cut the carrot into pieces with a knife.",
41
+ "Add the carrot pieces to the pan and fry for a few minutes until they begin to soften.",
42
+ "Pour in the tomato sauce and heat until bubbling.",
43
+ "Meanwhile, boil the spaghetti in water until cooked. Drain and add it to the sauce.",
44
+ "Mix well until the spaghetti is completely coated in the sauce."
45
+ ]
46
+ },
47
+ {
48
+ "id": 3,
49
+ "name": "Classic Mushroom, Paprika Penne",
50
+ "ingredients": [
51
+ {"name": "Penne", "location": 46, "surface": 1},
52
+ {"name": "Mushroom", "location": 59, "surface": 2},
53
+ {"name": "Green Paprika", "location": 35, "surface": 0},
54
+ {"name": "Chili Pepper", "location": 63, "surface": 2},
55
+ {"name": "Pot", "location": 34, "surface": 0},
56
+ {"name": "Pan", "location": 53, "surface": 1},
57
+ {"name": "Sink", "location": 0, "surface": 1},
58
+ {"name": "Knife", "location": 57, "surface": 1}
59
+ ],
60
+ "steps": [
61
+ "Boil a pot of water and cook the penne for 8-10 minutes until al dente. Drain and set aside.",
62
+ "Heat a pan and sauté the mushrooms.",
63
+ "Cut the green paprika into pieces with a knife.",
64
+ "Add the cooked penne and green paprika pieces to the pan.",
65
+ "Season with chili pepper to taste and serve hot."
66
+ ]
67
+ },
68
+ {
69
+ "id": 4,
70
+ "name": "Simple Wheat Flour Pancakes",
71
+ "ingredients": [
72
+ {"name": "Wheat flour", "location": 46, "surface": 1},
73
+ {"name": "Sink", "location": "sink", "surface": 1},
74
+ {"name": "Sugar", "location": 55, "surface": 1},
75
+ {"name": "Parmesan Cheese", "location": 39, "surface": 0},
76
+ {"name": "Knife", "location": 77, "surface": 3},
77
+ {"name": "Chili Mayo", "location": 52, "surface": 1},
78
+ {"name": "Beige Bowl", "location": 73, "surface": 3},
79
+ {"name": "Pan", "location": 53, "surface": 1},
80
+ {"name": "Plate", "location": 20, "surface": 0}
81
+ ],
82
+ "steps": [
83
+ "Use a cheese plane to shave thin slices of Parmesan cheese.",
84
+ "Mix the wheat flour with water in a bowl, then stir in some Parmesan cheese.",
85
+ "Heat a pan, pour in the batter, and spread it evenly.",
86
+ "Cook on low heat until both sides are golden brown. Transfer to a dish.",
87
+ "Add sugar and chili mayo to the pancake before serving."
88
+ ]
89
+ },
90
+ {
91
+ "id": 5,
92
+ "name": "Quick Salad",
93
+ "ingredients": [
94
+ {"name": "Carrot", "location": 30, "surface": 0},
95
+ {"name": "Arugula", "location": 17, "surface": 0},
96
+ {"name": "Spinach", "location": 26, "surface": 0},
97
+ {"name": "Red Paprika", "location": 38, "surface": 0},
98
+ {"name": "Apple", "location": 79, "surface": 3},
99
+ {"name": "Lemon", "location": 78, "surface": 3},
100
+ {"name": "Large Bowl", "location": 42, "surface": 1},
101
+ {"name": "Small spoon", "location": 43, "surface": 1},
102
+ {"name": "Knife", "location": 57, "surface": 1},
103
+ {"name": "Chili Mayo", "location": 52, "surface": 1}
104
+ ],
105
+ "steps": [
106
+ "Cut the carrot into small sticks with a knife.",
107
+ "Cut the red paprika into small pieces with a knife.",
108
+ "Slice the apple into thin pieces with a knife.",
109
+ "Slice the lemon into thin pieces with a knife.",
110
+ "Add all the prepared ingredients, along with the arugula and spinach, to a large bowl.",
111
+ "Add Chili Mayo and sprinkle with salt.",
112
+ "Use a spoon to toss and mix everything in the bowl."
113
+ ]
114
+ }
115
+ ]
116
+ }