forked from acmgit/cucina_vegana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
recipes_cook.lua
158 lines (135 loc) · 3.4 KB
/
recipes_cook.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
-- *******************************************
-- ***** Cookings *****
-- *******************************************
minetest.register_craft({
type = "cooking",
cooktime = 18,
output = "cucina_vegana:asparagus_hollandaise_cooked",
recipe = "cucina_vegana:asparagus_hollandaise"
})
minetest.register_craft({
type = "cooking",
cooktime = 10,
output = "cucina_vegana:asparagus_rice_cooked",
recipe = "cucina_vegana:asparagus_rice"
})
minetest.register_craft({
type = "cooking",
cooktime = 15,
output = "cucina_vegana:asparagus_soup_cooked",
recipe = "cucina_vegana:asparagus_soup"
})
minetest.register_craft({
type = "cooking",
cooktime = 25,
output = "cucina_vegana:blueberry_pot_cooked",
recipe = "cucina_vegana:blueberry_pot"
})
minetest.register_craft({
type = "cooking",
cooktime = 20,
output = "cucina_vegana:bowl_rice_cooked",
recipe = "cucina_vegana:bowl_rice"
})
minetest.register_craft({
type = "cooking",
cooktime = 17,
output = "cucina_vegana:ciabatta_bread",
recipe = "cucina_vegana:ciabatta_dough"
})
minetest.register_craft({
type = "cooking",
cooktime = 20,
output = "cucina_vegana:dandelion_suds_cooking",
recipe = "cucina_vegana:dandelion_suds"
})
minetest.register_craft({
type = "cooking",
cooktime = 7,
output = "cucina_vegana:edamame_cooked",
recipe = "cucina_vegana:edamame"
})
minetest.register_craft({
type = "cooking",
cooktime = 25,
output = "cucina_vegana:fryer",
recipe = "cucina_vegana:fryer_raw"
})
minetest.register_craft({
type = "cooking",
cooktime = 18,
output = "cucina_vegana:fish_parsley_rosemary_cooked",
recipe = "cucina_vegana:fish_parsley_rosemary"
})
minetest.register_craft({
type = "cooking",
cooktime = 20,
output = "cucina_vegana:kohlrabi_roasted",
recipe = "cucina_vegana:kohlrabi"
})
minetest.register_craft({
type = "cooking",
cooktime = 15,
output = "cucina_vegana:kohlrabi_soup_cooked",
recipe = "cucina_vegana:kohlrabi_soup"
})
minetest.register_craft({
type = "cooking",
output = "cucina_vegana:peanut",
recipe = "group:seed_peanut",
cooktime = 5,
})
minetest.register_craft({
type = "cooking",
cooktime = 18,
output = "cucina_vegana:pizza_vegana",
recipe = "cucina_vegana:pizza_vegana_raw"
})
minetest.register_craft({
type = "cooking",
cooktime = 18,
output = "cucina_vegana:pizza_funghi",
recipe = "cucina_vegana:pizza_funghi_raw"
})
minetest.register_craft({
type = "cooking",
cooktime = 15,
output = "cucina_vegana:soy_soup_cooked",
recipe = "cucina_vegana:soy_soup"
})
minetest.register_craft({
type = "cooking",
cooktime = 14,
output = "bushes:sugar",
recipe = "cucina_vegana:molasses",
replacements = {{"cucina_vegana:molasses", "vessels:drinking_glass"}}
})
minetest.register_craft({
type = "cooking",
cooktime = 15,
output = "cucina_vegana:sunflower_seeds_bread",
recipe = "cucina_vegana:sunflower_seeds_dough"
})
minetest.register_craft({
type = "cooking",
output = "cucina_vegana:sunflower_seeds_roasted",
recipe = "cucina_vegana:sunflower_seeds"
})
minetest.register_craft({
type = "cooking",
cooktime = 18,
output = "cucina_vegana:tofu_chives_rosemary_cooked",
recipe = "cucina_vegana:tofu_chives_rosemary"
})
minetest.register_craft({
type = "cooking",
output = "cucina_vegana:tofu_cooked",
recipe = "cucina_vegana:tofu",
cooktime = 5,
})
minetest.register_craft({
type = "cooking",
output = "cucina_vegana:flax_roasted",
recipe = "cucina_vegana:flax",
cooktime = 10,
})