Jump to content

Module:The Hundred teams

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by Vestrian24Bio (talk | contribs) at 09:07, 26 May 2025 (Created page with '--[[ Each team must have a table with the following keys: code: A short code of 2-4 letters (uppercase) to represent the team. fullName: The full name of the team. shortName: The short name of the team, usually the location in which it is based. pageName: The title of the team's article on Wikipedia. This is usually the team's full name, but if disambiguation is needed, it may be different. startYear: The year in which...'). The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
--[[
    Each team must have a table with the following keys:
    code: A short code of 2-4 letters (uppercase) to represent the team.
    fullName: The full name of the team.
    shortName: The short name of the team, usually the location in which it is based.
    pageName: The title of the team's article on Wikipedia. This is usually the team's full name, but if disambiguation is
              needed, it may be different.
    startYear: The year in which the team first played with that name.
    endYear: The year in which the team last played with that name (for renamed teams) or last played (for defunct teams)

    This module is to be used with mw.loadData(). It should NOT contain functions!
]]

return {

    {
        code       = "BP",
        fullName   = "Birmingham Phoenix",
        shortName  = "Birmingham",
        pageName   = "Birmingham Phoenix",
        startYear  = 2021,
    },

    {
        code       = "LS",
        fullName   = "London Spirit",
        shortName  = "London",
        pageName   = "London Spirit",
        startYear  = 2021,
    },

    {
        code       = "MO",
        fullName   = "Manchester Originals",
        shortName  = "Manchester",
        pageName   = "Manchester Originals",
        startYear  = 2021,
    },

    {
        code       = "NSC",
        fullName   = "Northern Superchargers",
        shortName  = "Leeds",
        pageName   = "Northern Superchargers",
        startYear  = 2021,
    },

    {
        code       = "OI",
        fullName   = "Oval Invincibles",
        shortName  = "Oval",
        pageName   = "Oval Invincibles",
        startYear  = 2021,
    },

    {
        code       = "SB",
        fullName   = "Southern Brave",
        shortName  = "Southampton",
        pageName   = "Southern Brave",
        startYear  = 2021,
    },

    {
        code       = "TR",
        fullName   = "Trent Rockets",
        shortName  = "Nottingham",
        pageName   = "Trent Rockets",
        startYear  = 2021,
    },

    {
        code       = "WF",
        fullName   = "Welsh Fire",
        shortName  = "Cardiff",
        pageName   = "Welsh Fire",
        startYear  = 2021,
    },
}