More actions
Documentation for this module may be created at Module:Recipe/doc
local recipelist = mw.text.jsonDecode(mw.getCurrentFrame():expandTemplate{title='Template:Recipes.json'})
local p = {}
local i = 0
local subs = {}
p.getRecipe = function(frame)
local result = frame.args[1]
for k, v in pairs(recipelist) do
if v['output-name'] == result then
output_name = '[[Image:' .. 'veloren_' .. v['output-name'] .. '.png|link=]] ' .. v['output-name']
end
for k1, v1 in (recipelist[3]) do
inputs = v1[1]
end
end
txt = frame:expandTemplate{ title = 'Recipe', args = { result = output_name , ingredients = inputs} }
return txt
end
return p