Minecraft Wiki
Advertisement
[view | edit | history | purge]DocumentationJump to code ↴

This module implements {{brewing}}.

Dependencies[]

See also[]

[view | edit | history | purge]The above documentation is transcluded from Module:Brewing/doc.
local p = {}

local i18n = {
	defaultBasePotion = 'Awkward Potion',
	moduleArgs = [[Module:ProcessArgs]],
	moduleRecipe = [[Module:Recipe table]],
	type = 'Brewing',
}
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]
	
	if not args.base then
		args.base = i18n.defaultBasePotion
	end
	
	if args.showbase then
		args.Output1 = args.base2
		args.Output2 = args.base
		args.Output3 = args.base3
	else
		args.Output1 = args[3]
		args.Output2 = args[2]
		args.Output3 = args[4]
	end
	
	local out = recipeTable( args, {
		uiFunc = 'brewingStand',
		type = i18n.type,
		ingredientArgs = { 'Input', 'base' },
		outputArgs = { 'Output1', 'Output2', 'Output3' },
	} )
	
	local title = mw.title.getCurrentTitle()
	
	return out, category
end

return p
Advertisement