Module:Recipe: Difference between revisions

From Veloren Wiki
Content added Content deleted
No edit summary
No edit summary
Line 7: Line 7:
for i=1, #recipelist, 1 do
for i=1, #recipelist, 1 do
if recipelist[i]["output-name"] == result then
if recipelist[i]["output-name"] == result then
local txt = frame.expandTemplate{ title = "Recipe", args = { result = recipelist[i]["output-name"] } }
local txt = frame:expandTemplate{ title = "Recipe", args = { result = recipelist[i]["output-name"] } }
end
end
end
end

Revision as of 19:23, 16 February 2022

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 = {}

p.getRecipe = function(frame)
	local result = frame.args[1]
	for i=1, #recipelist, 1 do
		if recipelist[i]["output-name"] == result then
			local txt = frame:expandTemplate{ title = "Recipe", args = { result = recipelist[i]["output-name"] } }
		end
	end
	return txt
end

return p
Cookies help us deliver our services. By using our services, you agree to our use of cookies.