View source for Module:CraftingTable
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local p = {}
function p.crafttable(f)
local args = f:getParent().args
local lang = f.args[1]
local data = mw.loadData('Module:CraftingTable/i18n')
--Recipe1
local CSs = ''
if not args[data[lang]['CraftingStation']] then
error( data[lang]['ErrorCraftingStation'] )
else
f:callParserFunction( '#Set', 'CraftingStation', args[data[lang]['CraftingStation']] )
local v = {} ; v = mw.text.split(args[data[lang]['CraftingStation']], "%s*,%s*")
for i, item in ipairs(v) do
if i > 1 then CSs = CSs .. '<br />' end
if item ~= '' then
CSs = CSs .. f:expandTemplate{ title = data[lang]['TemplateName'], args = { item } }
else
000
1:0
Template used on this page:
Return to Module:CraftingTable.