Feed The Beast Wiki

Follow the Feed The Beast Wiki on Discord or Mastodon!

READ MORE

Feed The Beast Wiki
Register
Advertisement

--

local p = {}

p.docLead = [=[It is for use with mod author pages.]=]

local genders = { male = [=[Male]=], female = [=[Female]=], other = [=[Other]=] }

p.format = {
    {
        title = {arg="name", desc=[=[The author's name.]=]},
        {
            { {arg="image", type="image", desc=[=[The big picture.]=] } },
            { [=[Gender]=], {arg="gender", type="switch", allowedValues = genders, desc=[=[The gender of the mod author.]=]}},
            { [=[Date of Birth]=], {arg="birthday", desc=[=[The date of birth of the mod author. Use mm/dd/yyyy format.]=]}},
            { [=[Location]=], {arg="location", desc=[=[Where in the world the mod author resides.]=]}}
        },
        {
            { [=[Website]=], {arg="site", desc=[=[The mod author's website.]=]}},
            { [=[Twitter]=], {arg="twitter", desc=[=[The mod author's Twitter account.]=]}},
            { [=[Player.me]=], {arg="player", desc=[=[The mod author's player.me account.]=]}},
            { [=[Occupation]=], {arg="occupation", desc=[=[The mod author's occupation, or job.]=]}}
        },
        {
            { [=[Mods]=], {arg="mods", desc=[=[The mods that the author has created. Use <br/> in between mod names.]=]}},
            { [=[Discontinued Mods]=], {arg="disconmods", desc=[=[Mods that the author has discontinued, or passed on to another author. Use <br/> in between mod names.]=]}},
            { [=[Modpacks]=], {arg="modpack", desc=[=[If the person has released a modpack. Use an internal link if it is on the FTB Launcher; external if not. Use <br/> between modpacks.]=]}},
            { [=[Projects]=], {arg="projects", desc=[=[Projects that are Minecraft-related that are not mods or modpacks. Use internal links. Use <br/> in between project names.]=]}}
        }
    },
    {
        title = [=[IRC]=],
        {
            { [=[Server]=], {arg="server", desc=[=[The IRC server that their channel is on. This is often irc.esper.net]=]}},
            { [=[Channel]=], {arg="channel", desc=[=[The author's IRC channel. Use <br/> between channels ]=]}},

        }
    }
}

p.examples = {
    { [=[{{infobox author
|name=Myrathi
|image=Myrathi.png
|gender=Male
|birthday=01/01/1901
|location=Place
|site=http://nowebsite.com
|twitter=https://twitter.com/Myrathi
|player=http://player.me/test
|occupation=Licking eyeballs
|mods=[[ChargePads]]<br/>[[FinndusFillies]]<br/>[[FlatSigns]]<br/>
[[InfiniBows]]<br/>[[ObsidiPlates]]<br/>[[Switches]]<br/>
[[MagicFarmBalance]]<br/>[[SizzleBalance]]
|disconmods=Nothing
|server=irc.esper.net
|channel=#Nothing<br/>#Eyeballs
}}]=] }
}

return p
--
Advertisement