Module:Recipes: Difference between revisions

From Guinea Isles Wiki
No edit summary
No edit summary
Line 20: Line 20:
end
end
return "Dogs"
return "No recipe found with id " .. id
end
end


return p
return p

Revision as of 14:41, 20 September 2025

Module:Recipes is a module designed around managing the data of in-game recipes of all kinds. It allows users to query Module:Recipes/data.json, which contains this information in JSON format.

Functions


--------------------------
-- Module for crafting recipe data
------------------------
local data = mw.loadJsonData('Module:Recipes/data.json')

local p = {}

function p.get_recipe(frame)
	local args = frame:getParent().args
	
	local id = nil
	if args["id"] ~= nil then
		id = args["id"]
	else
		id = mw.title.getCurrentTitle()
	end
	
	if data[id] ~= nil then
		return data[id]
	end
	
	return "No recipe found with id " .. id 
end

return p