Module:Recipes

From Guinea Isles Wiki
Revision as of 14:21, 20 September 2025 by Squeaky (talk | contribs)

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 recipes
------------------------
local data = mw.loadData( '/json.data' )

local p = {}

function p.main(frame)
	local args = frame:getParent().args
	
	return "Cats"
end

return p