Feed The Beast Wiki

Follow the Feed The Beast Wiki on Discord or Mastodon!

READ MORE

Feed The Beast Wiki
Register
Advertisement

Documentation for this module may be created at Module:Infobox/pack/en/doc

-- <languages />
-- <pre>
local p = {}

p.docLead = [=[It has been specifically designed for Mod Pack articles.]=]

p.format = {
    {
        title={arg="name", desc = [=[The name of the mod pack.]=]},
        {
            { {arg="image", type="image", desc = [=[A picture used to identify the mod pack.]=]}},
            { [=[Maintained by]=], {arg="maintainer", desc = [=[The current maintainer of the mod pack.]=]}},
			{ [=[Modpack code]=], {arg="code", desc = [=[The modpack's code on the FTB launcher.]=]}}
        }
    },
    {
        title = [=[Description]=],
        {
            { cellstyle="text-align: left", {arg="description", desc= [=[The description of the mod pack.]=]}}
        }
    },
    {
        title = [=[Version info]=],
        {
            { [=[Current stable]=], {arg="stableversion", desc = [=[The currently stable version of the mod pack.]=]}},
            { [=[Latest]=], {arg="latestversion", desc= [=[The latest version of the mod pack.]=]}}
        },
        {
            { [=[Minecraft]=], {arg="mcversion", desc= [=[The version of Minecraft the mod pack uses.]=]}},
            { [=[Forge]=], {arg="forgeversion", desc= [=[The version of Forge the mod pack uses.]=]}}
        }
    }
}

p.examples = {
    {
        [=[{{Infobox pack
| name = Some pack
| mcversion = 1.1.1
| forgeversion = 9001
| stableversion = 100
| maintainer = Someone
| description = Some description
}}]=]
    }
}

return p
-- </pre>
Advertisement