Module:Indian Premier League teams

MyWikiBiz, Author Your Legacy — Sunday June 02, 2024
Jump to navigationJump to search

Documentation for this module may be created at Module:Indian Premier League teams/doc

--[[
    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.
    endYear: The year in which the team last played. (For inactive/disbanded/terminated teams only)

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

return {

    {
        code       = "CSK",
        fullName   = "Chennai Super Kings",
        shortName  = "Chennai",
        pageName   = "Chennai Super Kings",
        startYear  = 2008,
    },

    {
        code       = "DC",
        fullName   = "Deccan Chargers",
        shortName  = "Deccan",
        pageName   = "Deccan Chargers",
        startYear  = 2008,
        endYear    = 2012,
    },

    {
        code       = "DD",
        fullName   = "Delhi Daredevils",
        shortName  = "Delhi",
        pageName   = "Delhi Capitals",
        startYear  = 2008,
        endYear    = 2018,
    },

    {
        code       = "KKR",
        fullName   = "Kolkata Knight Riders",
        shortName  = "Kolkata",
        pageName   = "Kolkata Knight Riders",
        startYear  = 2008,
    },

    {
        code       = "KTK",
        fullName   = "Kochi Tuskers Kerala",
        shortName  = "Kochi",
        pageName   = "Kochi Tuskers Kerala",
        startYear  = 2011,
        endYear    = 2011,
    },

    {
        code       = "KXIP",
        fullName   = "Kings XI Punjab",
        shortName  = "Punjab",
        pageName   = "Kings XI Punjab",
        startYear  = 2008,
    },

    {
        code       = "MI",
        fullName   = "Mumbai Indians",
        shortName  = "Mumbai",
        pageName   = "Mumbai Indians",
        startYear  = 2008,
    },

    {
        code       = "PWI",
        fullName   = "Pune Warriors India",
        shortName  = "Pune",
        pageName   = "Pune Warriors India",
        startYear  = 2011,
        endYear    = 2013,
    },

    {
        code       = "SRH",
        fullName   = "Sunrisers Hyderabad",
        shortName  = "Hyderabad",
        pageName   = "Sunrisers Hyderabad",
        startYear  = 2013,
    },

    {
        code       = "RCB",
        fullName   = "Royal Challengers Bangalore",
        shortName  = "Bangalore",
        pageName   = "Royal Challengers Bangalore",
        startYear  = 2008,
    },

    {
        code       = "RR",
        fullName   = "Rajasthan Royals",
        shortName  = "Rajasthan",
        pageName   = "Rajasthan Royals",
        startYear  = 2008,
    },

    {
        code       = "RPS",
        fullName   = "Rising Pune Supergiant",
        shortName  = "Pune",
        pageName   = "Rising Pune Supergiant",
        startYear  = 2016,
    },

    {
        code       = "GL",
        fullName   = "Gujarat Lions",
        shortName  = "Gujarat",
        pageName   = "Gujarat Lions",
        startYear  = 2016,
    },

    {
        code       = "DCL",
        fullName   = "Delhi Capitals",
        shortName  = "Delhi",
        abbr       = "DC",
        pageName   = "Delhi Capitals",
        startYear  = 2019,
    },

   {
        code       = "PBKS",
        fullName   = "Punjab Kings",
        shortName  = "Punjab",
        pageName   = "Punjab Kings",
        startYear  = 2021,
    },

}