Feed The Beast Wiki

Follow the Feed The Beast Wiki on Discord or Mastodon!

READ MORE

Feed The Beast Wiki
(Importing a new version from external source)
 
(Updating to match new version of source page)
Line 12: Line 12:
 
title = [=[Description]=],
 
title = [=[Description]=],
 
{
 
{
{{arg="description", desc= [=[The description of the mod pack.]=]}}
+
{ cellstyle="text-align: left", {arg="description", desc= [=[The description of the mod pack.]=]}}
 
}
 
}
 
},
 
},

Revision as of 11:28, 4 January 2015

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

local p = {}

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. Use the ''complete'' filename, like '''Pack_Ultimate.png'''.]=]}},
            { [=[Maintained By]=], {arg="maintainer", desc = [=[The current maintainer of the mod pack.]=]}}
        }
    },
    {
        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.]=]}}
        }
    }
}

return p