Feed The Beast Wiki

Follow the Feed The Beast Wiki on Discord or Mastodon!

READ MORE

Feed The Beast Wiki
Advertisement

Documentation for this module may be created at Module:Navbox/Charset/en/doc

local p = {}
p.navbox = function(navbox, highlightline, group, list, line, ni, nid, l)

local charset = l{"Charset", [=[Charset]=]}

local audio = [=[Audio]=]
local crafting = [=[Crafting]=]
local decoration = [=[Decoration]=]
local storage = [=[Storage]=]
local tools = [=[Tools]=]
local transport = [=[Transport]=]
local tweaks = [=[Tweaks]=]
local other = [=[Other]=]

local removed = [=[Removed content]=]
local gates = [=[Gates (&)]=]
local pipes = [=[Pipes]=]
local wires = [=[Wires (+)]=]

return navbox{title = charset, mod = "CHAR", modname = "Charset",
	list{title = audio,
		ni{"Audio Cable"},
		ni{"Hovering Audio Cable"},
		ni{"Quartz Disc"},
		ni{"Record Player"}
	},
	list{title = crafting,
		nid{"Compression Crafter"},
		nid{"Pocket Crafting Table"}
	},
	list{title = decoration,
		nid{"Scaffold"}
	},
	list{title = storage,
		nid{"Master Key"},
		nid{"Key"},
		nid{"Lock"},
		ni{mod = "FZ", "Barrel", "Barrel (Charset)", [=[Barrel]=]},
		ni{"Barrel Cart Creative Bedrock Barrel", "Barrel Cart", [=[Barrel Cart]=]},
		nid{"Tank"},
		nid{"Keyring"}
	},
	list{title = tools,
		nid{"Wrench"}
	},
	list{title = transport,
		ni{"Crossing Rail"}
	},
	list{title = tweaks,
		nid{"Glass Shard"},
		nid{"Graphite"},
		l{"Charset Tweaks", [=[Charset Tweaks]=]}
	},
	list{title = other,
		ni{"Drama in a Bottle"},
		ni{"Tablet"}
	},
	group{name = "removed", title = removed,
		list{title = audio,
			nid{"Iron Note Block"},
			ni{"Tape Drive"},
			ni{"Iron Tape"},
			ni{"Gold Tape"},
			ni{"Diamond Tape"},
			ni{"Emerald Tape"},
			ni{"Quartz Tape"},
			ni{"Ruby Tape"},
			ni{"Sapphire Tape"},
			ni{"Dark Iron Tape"},
			ni{"Magnetic Tape"},
			ni{"Tape Reel"}
		},
		list{title = decoration,
			ni{"Poster"}
		},
		list{title = gates,
			nid{"NAND Gate"},
			nid{"AND Gate"},
			nid{"NOR Gate"},
			nid{"OR Gate"},
			nid{"XOR Gate"},
			nid{"XNOR Gate"},
			nid{"Buffer Gate"},
			ni{"Inverted Buffer Gate"},
			nid{"Pulse Former"},
			nid{"Multiplexer"},
			nid{"RS Latch"},
			nid{"Screwdriver"}
		},
		list{title = pipes,
			nid{"Pipe"},
			nid{"Shifter"}
		},
		list{title = storage,
			nid{"Backpack"}
		},
		list{title = wires,
			ni{"Redstone Cable"},
			ni{"Red Insulated Cable", "Insulated Cable", [=[Insulated Cable]=]},
			ni{"Freestanding Redstone Cable"},
			nid{"Bundled Cable"},
			ni{"Freestanding Bundled Cable"}
		}
	}
}

end
return p
Advertisement