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