summaryrefslogtreecommitdiff
path: root/foods.lua
blob: 663e3da6ff65c8ba1f401f0be0a96b8030bfbacf (plain)
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
local foods = {}
local function f(name,tags,ing)
	table.insert(foods,{
		name=name,
		tags=tags,
		ing=ing or {},
	})
end

f('*',{})
f('mj spghet',{'tomato'},{
	broccoli=.5,
	passata=1,
	spaghetti=.3})
f('mj curry',{'curry','tomato'},{
	broccoli=.5,
	passata=1,
	rice=.3})
f('chilli',{'meat','beans'})
f('stir fry',{'greens'},{
	kale=.3,
	broccoli=.5,
	noodles=1.5,
	sweetcorn=.5,
	mangetout=.5})
f('jacket beans',{'potato'},{
	potatoes=5,
	beans=2})
f('mash',{'potato'},{
	potatoes=5,
	peas=.3})
f('vesto/egg',{},{
	egg=2,
	vesto=.5,
	['black beans']=1,
	spaghetti=.2})
f('fast ramen',{'greens'},{
	['instant ramen']=2,
	broccoli=.5,
	sweetcorn=.5})
f('ramen',{'greens'},{
	['ramen ingredients']=1})
f('tomato soup',{'soup','tomato'},{
	['tinned tomatoes']=3,
	['coconut milk']=1,
	garlic=.5})
f('squash soup',{'soup'},{
	squash=1,
	onion=1,
	garlic=.5,
	['vegetable stock']=.15,
	['coconut milk']=1})
f('bean soup',{'soup','beans'},{
	onion=1,
	garlic=.5,
	pepper=1,
	['black beans']=3,
	['tinned tomatoes']=1,
	['vegetable stock']=.15,
	lime=1})
f('gurger',{'meat'},{
	['bean burger']=2,
	['minced meat']=.25,
	chips=1,
	egg=1,
	bun=4})
f('chickpea curry',{'curry','chickpea'},{
	chickpea=2,
	['chopped tomato']=2,
	lemon=1,
	onion=2,
	garlic=.5,
	ginger=.5,
	chilli=1})
f('chickpea thing',{'chickpea'},{
	chickpea=1,
	garlic=.5,
	ginger=.5,
	chilli=1,
	rice=.3,
})
f('pizza',{},{
	pizza=2,
})
f('daniel beans',{},{
	['black beans']=1,
	pepper=.5,
	garlic=.5,
	rice=.3,
})


	

return foods