Feed The Beast Wiki

Follow the Feed The Beast Wiki on Discord or Mastodon!

READ MORE

Feed The Beast Wiki
Register
(Importing a new version from external source)
 
(Updating to match new version of source page)
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
local p = {}
 
local p = {}
  +
  +
p.docLead = [=[It has been specifically designed for Mod Pack articles.]=]
   
 
p.format = {
 
p.format = {
Line 5: Line 7:
 
title={arg="name", desc = [=[The name of the mod pack.]=]},
 
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'''.]=]}},
+
{{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.]=]}}
+
{[=[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.]=]}}
 
}
 
}
 
},
 
},
Line 12: Line 15:
 
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.]=]}}
 
}
 
}
 
},
 
},
 
{
 
{
−
title = [=[Version Info]=],
+
title = [=[Version info]=],
 
{
 
{
−
{ [=[Current Stable]=], {arg="stableversion", desc = [=[The currently stable version of the mod pack.]=]}},
+
{[=[Current stable]=], {arg="stableversion", desc = [=[The currently stable version of the mod pack.]=]}},
−
{ [=[Latest]=], {arg="latestversion", desc= [=[The latest 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.]=]}},
+
{[=[Minecraft]=], {arg="mcversion", desc= [=[The version of Minecraft the mod pack uses.]=]}},
−
{ [=[Forge]=], {arg="forgeversion", desc= [=[The version of Forge the mod pack uses.]=]}}
+
{[=[Forge]=], {arg="forgeversion", desc= [=[The version of Forge the mod pack uses.]=]}}
 
}
 
}
 
}
 
}
 
}
 
}
  +
  +
p.examples = {{[=[{{Infobox pack
  +
|name=Panilla
  +
|image=Panilla.png
  +
|mcversion=1.11.2
  +
|maintainer=Xbony2
  +
|stableversion=1.1.0a
  +
}}]=]}}
   
 
return p
 
return p

Latest revision as of 00:26, 14 October 2017

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

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=Panilla
|image=Panilla.png
|mcversion=1.11.2
|maintainer=Xbony2
|stableversion=1.1.0a
}}]=]}}

return p