Module:Infobox/mod
Documentation for this module may be created at Module:Infobox/mod/doc
local p = {} p.docLead = [=[<translate><!--T:1--> This one is for mods</translate>]=] p.format = { { title = {arg="name", desc=[=[<translate><!--T:2--> The title that will be displayed at the top of the info box.</translate>]=]}, { {{arg={"image"}, type="image", desc=[=[<translate><!--T:3--> The big picture.</translate>]=]}} }, { {[=[<translate><!--T:4--> Current developers</translate>]=], {arg="author", desc=[=[<translate><!--T:5--> Current author or authors of the mod. Separate multiple authors by commas or linebreaks.</translate>]=]}}, {[=[<translate><!--T:6--> Past developers</translate>]=], {arg="pastauthor", desc=[=[<translate><!--T:7--> Previous author(s) of the mod.</translate>]=]}} }, { {[=[<translate><!--T:8--> Latest version</translate>]=], {arg="version", desc=[=[<translate><!--T:9--> The current mod version.</translate>]=]}}, {[=[<translate><!--T:34--> Latest Minecraft version</translate>]=], {arg="mcversion", desc=[=[<translate><!--T:35--> The latest Minecraft version that supports the mod.</translate>]=]}}, {[=[<translate><!--T:10--> Depends on</translate>]=], {arg={"requires", "dependency"}, desc=[=[<translate><!--T:11--> If the mod is an addon to another mod.</translate>]=]}}, {[=[<translate><!--T:12--> Needed for</translate>]=], {arg="neededfor", desc=[=[<translate><!--T:13--> If the mod is a dependency to another mod.</translate>]=]}}, {[=[<translate><!--T:14--> Previously depended on</translate>]=], {arg={"requirespast", "dependencypast"}, desc=[=[<translate><!--T:15--> If the mod was dependent on another mod, but is no longer.</translate>]=]}}, {[=[<translate><!--T:16--> Previously needed for</translate>]=], {arg="neededforpast", desc=[=[<translate><!--T:17--> If the mod had a dependency to another mod, but it is no longer needed.</translate>]=]}}, {[=[<translate><!--T:18--> URL</translate>]=], {arg="url", type="link", desc=[=[<translate><!--T:19--> URL to the mod's main page. Can be a dedicated forum thread or website.</translate>]=]}} }, { {[=[<translate><!--T:25--> Discord server</translate>]=], {arg="discord", type="link", desc=[=[<translate><!--T:26--> The Discord server for the mod.</translate>]=]}}, {[=[<translate><!--T:27--> IRC channel</translate>]=], {arg="irc", type="templateCall", template="IRC", desc=[=[<translate><!--T:28--> The IRC server and channel for the mod. Formatted as server@channel, for example: esper.net@TheSteamTank.</translate>]=]}} }, { {[=[<translate><!--T:36--> Mod ID</translate>]=], {arg="id", desc=[=[<translate><!--T:37--> The mod's mod ID</translate>]=]} } }, }, { name="Packs", title=[=[<translate><!--T:20--> Modpacks</translate>]=], { {{arg="modpacks", desc=[=[<translate><!--T:21--> What modpacks include this mod.</translate>]=]}} } } } p.examples = { {[=[<translate><!--T:22--> {{Infobox mod |name=Thaumcraft 4 |image=Modicon Thaumcraft4.png |requires={{L|Baubles}} |neededfor={{L|Magic Bees}}<br />{{L|Thaumic Tinkerer}} |author=Azanor |pastauthor=Still Azanor |version=4.1 |modpacks={{L|FTB Unleashed}}<br />{{L|FTB Unhinged}} |url=http://www.minecraftforum.net/topic/2011841-thaumcraft-410g-updated-1032014/ }}</translate>]=]} } return p