Module:RecipeUtils
From Eco - English Wiki
Documentation for this module may be created at Module:RecipeUtils/doc
local Utils = require('Module:Utils')
local RecipesData = require('Module:RecipesData')
local ItemsData = require('Module:ItemData')
local p = {}
function p.ItemCraft(ItemName)
local Recipes = ""
for RecipeName,RecipeData in pairs(RecipesData.recipes) do
for IngredientName,IngredientData in pairs(RecipeData.Ingredients) do
if IngredientName == ItemName then
if (Recipes == "") then Recipes = Recipes .. RecipeName else Recipes = Recipes .. ", " .. RecipeName end
end
end
end
return Recipes
end
return p