Fandom Developers Wiki
Advertisement
Documentation icon Module documentation

The documentation for this module is missing. Click here to create it.

-- <nowiki>
-- Example of a module for auto-filling referencesto different local materials
-- The w:c: links are not needed for a real reference template; this is done to prevent redlinks on Dev Wiki
return {
	['ffvii'] = {
		title = 'Final Fantasy VII',
		link = 'w:c:finalfantasy:Final Fantasy VII',
		media = 'game',
	    year = '1997',
	    month = '1',
	    day = '31',
		platform = '[[wikipedia:PlayStation|PlayStation]]',
		developer = '[[wikipedia:Square Enix|Square Co., Ltd.]]',
		publisher = '[[wikipedia:Square Enix|Square Co., Ltd.]]',
		versions = {
		    ['nintendo switch'] = {
		        name = '(Nintendo Switch)',
		        developer = '[[wikipedia:Square Enix|Square Enix]], DotEmu',
		        publisher = '[[wikipedia:Square Enix|Square Enix]]',
		        platform = '[[wikipedia:Nintendo Switch|Nintendo Switch]]',
		        year = '2019',
	            month = '3',
	            day = '26',
			},
		},
	},
    ['jak2'] = {
        ['title'] = 'Jak II',
        ['link'] = 'w:c:jakanddaxter:Jak II',
        ['year'] = '2003',
        ['month'] = '10',
        ['day'] = '14',
        ['media'] = 'game',
        ['developer'] = '[[wikipedia:Naughty Dog|Naughty Dog]]',
        ['platform'] = '[[wikipedia:PlayStation 2|PlayStation 2]]',
        ['publisher'] = '[[wikipedia:Sony Interactive Entertainment|Sony Computer Entertainment]]',
        ['guide'] = {
			['piggyback'] = {
				['author'] = { 'Nathali', 'Schrader' },
		        ['year'] = '2003',
		        ['month'] = '10',
		        ['day'] = '13',
				['title'] = 'The Complete Official Guide to Jak II: Renegade',
				['additional-authors'] = '[[wikipedia:Naughty Dog|Naughty Dog]]',
				['publisher'] = 'Piggyback Interactive, [[wikipedia:Sony Interactive Entertainment|Sony Computer Entertainment]]',
				['isbn'] = '1903511453',
			},
			['bradygames'] = {
				['author'] = { 'Greg', 'Off' },
		        ['year'] = '2003',
		        ['month'] = '10',
		        ['day'] = '18',
				['title'] = 'Jak II Official Strategy Guide',
				['additional-authors'] = '[[wikipedia:Naughty Dog|Naughty Dog]]',
				['publisher'] = '[[wikipedia:DK (publisher)#BradyGames|BradyGames]], [[wikipedia:Sony Interactive Entertainment|Sony Computer Entertainment]]',
				['isbn'] = '0744003016',
			},
        },
		['db'] = {
			['author'] = '[[wikipedia:Naughty Dog|Naughty Dog]]',
	        ['year'] = {'2002', '2019'},
			['title'] = 'Jak II Design Bible — Original Production Binder',
			['additional-authors'] = '[[wikipedia:Limited Run Games|Limited Run Games]]',
			['publisher'] = '[[wikipedia:Sony Interactive Entertainment|Sony Interactive Entertainment]]',
		},
    },
	['sm1'] = {
		title = 'Spider-Man',
		link = 'wikipedia:Spider-Man (2002 film)',
		media = 'film',
	    year = '2002',
	    month = '5',
	    day = '3',
		director = {'Sam', 'Raimi'},
		studio = 'Sony Pictures Releasing',
	},
	['atla'] = {
		title = 'Avatar: The Last Airbender',
		link = 'w:c:avatar:Avatar: The Last Airbender',
		media = 'series',
	    year = '2005-2008',
		executive = {{'Michael Dante', 'DiMartino'}, {'Bryan', 'Konietzko'}},
		studio = '[[wikipedia:Nickelodeon Animation Studios|Nickelodeon Animation Studios]]',
	},
	['futurama'] = {
		title = 'Futurama',
		link = 'w:c:futurama:Futurama',
		media = 'series',
	    year = {'1999–2003', '2008–2013'},
		executive = {{'Matt', 'Groening'}, {'David X.', 'Cohen'}},
		studio = 'The Curiosity Company; 20th Century Fox Television',
	},
	['war is the h-word'] = {
		title = 'War Is the H-Word',
		link = 'w:c:futurama:War Is the H-Word',
		media = 'episode',
	    year = '2000',
	    month = '11',
	    day = '26',
	    season = 'Season 3',
	    number = 'Episode 17',
		writer = {'Eric', 'Horsted'},
	    director = {'Ron', 'Hugart'},
		studio = 'The Curiosity Company; 20th Century Fox Television',
	    series = 'futurama'
	},
	['tpab'] = {
		title = 'To Pimp a Butterfly',
		link = 'wikipedia:To Pimp a Butterfly',
		media = 'album',
	    year = '2015',
	    month = '3',
	    day = '15',
	    artist = {'Kendrick', 'Lamar'},
		label = 'Aftermath Entertainment; Interscope Records; Top Dawg Entertainment'
	},
	['keep ya head up'] = {
		title = 'Keep Ya Head Up',
		link = 'wikipedia:Keep Ya Head Up',
	    album = '[[wikipedia:Strictly 4 My N.I.G.G.A.Z...|Strictly 4 My N.I.G.G.A.Z...]]',
		media = 'song',
	    year = '1993',
	    month = '10',
	    day = '28',
	    artist = '2Pac',
	    featured = 'Hollister, Dave',
		label = 'Interscope Records; Jive Records'
	},
	['pots'] = {
		title = 'Parable of the Sower',
		link = 'wikipedia:Parable of the Sower (novel)',
		media = 'book',
	    year = '1993',
	    author = {'Octavia E.', 'Butler'},
	    publisher = 'Four Walls Eight Windows',
	    isbn = '0-941423-99-9'
	},
}
Advertisement