Ratchet & Clank Wiki
Advertisement
This page contains Lua code for templates such as {{cite}}, and link templates. Codenames are also commonly used in templates as names, parameter names, parameter inputs, and parameter values..

-- Data used to fetch game/movie shortname, link, icon and site from their codename
-- Used in other modules, such as Module:Appearances and Module:Cite
return {
    ['rc02'] = {
        ['title'] = 'Ratchet & Clank',
        ['link'] = 'Ratchet & Clank (2002 game)',
        ['appendix'] = '(2002 game)',
        ['release'] = '2002/11/4',
        ['icon'] = 'Ratchet & Clank (2002) logo.png',
        ['manual'] = {
            ['NTSC-U/C'] = '[[:File:Ratchet and Clank (2002) manual (NTSC-U/C).pdf|game manual (NTSC-U/C)]]',
            ['PAL'] = '[[:File:Ratchet and Clank (2002) manual (PAL).pdf|game manual (PAL)]]',
        },
    },
    ['gc'] = {
        ['title'] = 'Ratchet & Clank: Going Commando',
        ['link'] = 'Ratchet & Clank: Going Commando',
        ['release'] = '2003/11/11',
        ['icon'] = 'Going Commando logo.png',
    },
    ['uya'] = {
        ['title'] = 'Ratchet & Clank: Up Your Arsenal',
        ['link'] = 'Ratchet & Clank: Up Your Arsenal',
        ['release'] = '2004/11/2',
        ['icon'] = 'Up Your Arsenal logo.png',
        ['guide'] = '[[Ratchet & Clank: Up Your Arsenal strategy guide|strategy guide]]',
    },
    ['dl'] = {
        ['title'] = 'Ratchet: Deadlocked',
        ['link'] = 'Ratchet: Deadlocked',
        ['release'] = '2005/10/25',
        ['icon'] = 'Deadlocked logo.png',
    },
    ['gm'] = {
        ['title'] = 'Ratchet & Clank: Going Mobile',
        ['link'] = 'Ratchet & Clank: Going Mobile',
        ['release'] = '2005/11/2',
        ['icon'] = 'Going Mobile logo.png',
    },
    ['sm'] = {
        ['title'] = 'Ratchet & Clank: Size Matters',
        ['link'] = 'Ratchet & Clank: Size Matters',
        ['release'] = '2007/2/13',
        ['icon'] = 'Size Matters logo.png',
    },
    ['sac'] = {
        ['title'] = 'Secret Agent Clank',
        ['link'] = 'Secret Agent Clank',
        ['release'] = '2008/6/17',
        ['icon'] = 'Secret Agent Clank logo.png',
    },
    ['tod'] = {
        ['title'] = 'Ratchet & Clank Future: Tools of Destruction',
        ['link'] = 'Ratchet & Clank Future: Tools of Destruction',
        ['release'] = '2007/10/23',
        ['icon'] = 'Tools of Destruction logo.png',
    },
    ['qfb'] = {
        ['title'] = 'Ratchet & Clank Future: Quest for Booty',
        ['link'] = 'Ratchet & Clank Future: Quest for Booty',
        ['release'] = '2008/8/21',
        ['icon'] = 'Quest for Booty logo.png',
    },
    ['acit'] = {
        ['title'] = 'Ratchet & Clank Future: A Crack in Time',
        ['link'] = 'Ratchet & Clank Future: A Crack in Time',
        ['release'] = '2009/10/27',
        ['icon'] = 'A Crack in Time logo.png',
    },
    ['a4o'] = {
        ['title'] = 'Ratchet & Clank: All 4 One',
        ['link'] = 'Ratchet & Clank: All 4 One',
        ['release'] = '2011/10/18',
        ['icon'] = 'All 4 One logo.png',
    },
    ['ffa'] = {
        ['title'] = 'Ratchet & Clank: Full Frontal Assault',
        ['link'] = 'Ratchet & Clank: Full Frontal Assault',
        ['release'] = '2012/11/27',
        ['icon'] = 'Full Frontal Assault logo.png',
    },
    ['btn'] = {
        ['title'] = 'Ratchet & Clank: Before the Nexus',
        ['link'] = 'Ratchet & Clank: Before the Nexus',
        ['release'] = '2013/12/18',
        ['icon'] = 'Before the Nexus logo.png',
    },
    ['itn'] = {
        ['title'] = 'Ratchet & Clank: Into the Nexus',
        ['link'] = 'Ratchet & Clank: Into the Nexus',
        ['release'] = '2013/11/6',
        ['icon'] = 'Into the Nexus logo.png',
    },
    ['rc16'] = {
        ['title'] = 'Ratchet & Clank',
        ['link'] = 'Ratchet & Clank (2016 game)',
        ['appendix'] = '(2016 game)',
        ['release'] = '2016/4/12',
        ['icon'] = 'Ratchet & Clank (2016) logo.png',
    },
    ['mov16'] = {
        ['title'] = 'Ratchet & Clank',
        ['link'] = 'Ratchet & Clank (2016 movie)',
        ['appendix'] = '(2016 movie)',
        ['release'] = '2016/4/29',
        ['icon'] = 'Ratchet & Clank (2016) logo.png',
    },
    ['com'] = {
        ['title'] = 'Ratchet & Clank comic',
        ['link'] = 'Ratchet & Clank (comic)',
        ['appendix'] = 'comic series',
        ['release'] = '2010/9/9',
        ['icon'] = 'Ratchet & Clank comic logo.png',
    },
}
Advertisement