Jump to: navigation, search

Module:Smelting

Revision as of 14:05, 12 May 2017 by CraftSpider (talk | contribs) (Updated to new version)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Documentation

This module implements {{smelting}}.

Dependencies

See also

The above documentation is transcluded from Module:Smelting/doc.

This module implements {{smelting}}.

Dependencies

See also


local p = {}

local i18n = {
	categoryUpcoming = 'Category:Upcoming',
	defaultFuel = 'Any fuel',
	moduleArgs = [[Module:ProcessArgs]],
	moduleRecipe = [[Module:Recipe table]],
	type = 'Smelting',
}
p.i18n = i18n

local recipeTable = require( i18n.moduleRecipe ).table

function p.table( f )
	local args = f
	if f == mw.getCurrentFrame() then
		args = require( i18n.moduleArgs ).merge( true )
	else
		f = mw.getCurrentFrame()
	end
	
	args.Input = args[1]
	args.Output = args[2]
	args.Fuel = args.fuel or i18n.defaultFuel
	
	local out = recipeTable( args, {
		uiFunc = 'furnace',
		type = i18n.type,
		ingredientArgs = { 'Input', 'Fuel' },
		outputArgs = { 'Output' },
	} )
	
	local title = mw.title.getCurrentTitle()
	local category
	if args.upcoming and args.nocat ~= '1' and title.namespace == 0 and not title.isSubpage then
		category = '[[' .. i18n.categoryUpcoming .. ']]'
	end
	
	return out, category
end

return p


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