Zelda Wiki

Want to contribute to this wiki?
Sign up for an account, and get started!

Come join the Zelda Wiki community Discord server!

READ MORE

Zelda Wiki
Advertisement

For information on editing module data in general, see Guidelines:Modules/Data.

Data

Types

TypeCategory
artworkCategory:Artwork
iconCategory:Sprites
mapCategory:Maps
merchandiseCategory:Merchandise
modelCategory:Models
printCategory:Printed Media
renderCategory:Renders
screenshotCategory:Screenshots
soundCategory:Sounds
spriteCategory:Sprites
symbolCategory:Symbols
textureCategory:Textures
videoCategory:Videos
concept artworkCategory:Concept Artwork
concept logoCategory:Concept Logos
concept mapCategory:Concept Maps
concept merchandiseCategory:Concept Merchandise
concept modelCategory:Concept Models
concept renderCategory:Concept Renders
concept screenshotCategory:Concept Screenshots
concept soundCategory:Concept Sounds
concept spriteCategory:Concept Sprites
concept textureCategory:Concept Textures
concept videoCategory:Concept Videos
flagCategory:Flags
logoCategory:Logos
photoCategory:Photographs
signatureCategory:Signatures
userCategory:Personal Images
wiki symbolCategory:Wiki Symbols

Licenses

LicenseTemplateOutput
CopyrightTemplate:FileInfo/Copyright
Copyright
This file depicts work from a copyrighted video game or otherwise copyrighted material. The copyright for it is most likely owned by either Nintendo and/or its affiliates or the person or organization that developed the concept. It is believed that its use here constitutes fair use, given that:
  • it is used in a non-commercial setting, and therefore is not being used to generate profit in this context
  • its use here does not significantly impede the right of the copyright holder to sell the copyrighted material
  • it is used in a largely unaltered state, where any editing has been done purely for cosmetic/display purposes
  • the original content of the image has not been modified, and it is not a derivative work
Fan ArtTemplate:FileInfo/Fan Art
Warning
This image is a derivative work or fan art. The copyright of the original work this image is derived from most likely belongs to either Nintendo and/or its affiliates or the person or organization that developed the concept. The author of this image may also claim to hold copyright to this derivative work. As such, with the exception of "fair use," this image cannot be used without the permission of the author.
Public DomainTemplate:FileInfo/Public Domain
Public Domain
This image, sound, or video is in the public domain. Copyright laws do not apply to it, or else its copyright has expired or has been renounced by the copyright holder. Public domain images sourced from constituent sites of the Wikimedia Foundation will have additional documentation available at the original source image.
PD-SimpleTemplate:FileInfo/PD-Simple
Public Domain
This image consists only of simple geometric shapes and/or text. It is not sufficiently original to come under copyright protection, and is thus public domain.
GFDLTemplate:FileInfo/GFDL
Copyleft
This file is protected by copyleft. Permission is granted to copy, distribute and/or modify it under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled "GNU Free Documentation License."
CC-BY-SATemplate:FileInfo/CC-BY-SA
Creative Commons
This file is licensed under the Creative Commons Attribution-ShareAlike 3.0 license. Permission is granted to copy, distribute and/or modify it under the conditions of said license.
AttributionShare Alike
CC-BY-NC-SATemplate:FileInfo/CC-BY-NC-SA
Creative Commons
This file is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 license. Permission is granted to copy, distribute and/or modify it under the conditions of said license.
AttributionNoncommercialShare Alike
Copyright-ZWTemplate:FileInfo/Copyright-ZW
Zwlogo2dsmall
This image is copyright © Zelda Wiki. All rights reserved.

local utilsTable = require("Module:UtilsTable")

local p = {}

p.types = {
	{
        key = "artwork",
        cat = "Artwork",
    },
    {
    	key = "icon",
    	cat = "Sprites",
    },
	{
        key = "map",
        cat = "Maps",
    },
	{
        key = "merchandise",
        cat = "Merchandise",
    },
	{
        key = "model",
        cat = "Models",
    },
	{
        key = "print",
        cat = "Printed Media",
    },
	{
        key = "render",
        cat = "Renders",
    },
	{
        key = "screenshot",
        cat = "Screenshots",
    },
	{
        key = "sound",
        cat = "Sounds",
    },
	{
        key = "sprite",
        cat = "Sprites",
    },
	{
        key = "symbol",
        cat = "Symbols",
    },
	{
        key = "texture",
        cat = "Textures",
    },
    {
    	key = "video",
    	cat = "Videos",
    },
	
	{
        key = "concept artwork",
        cat = "Concept Artwork",
    },
	{
        key = "concept logo",
        cat = "Concept Logos",
    },
	{
        key = "concept map",
        cat = "Concept Maps",
    },
	{
        key = "concept merchandise",
        cat = "Concept Merchandise",
    },
	{
        key = "concept model",
        cat = "Concept Models",
    },
	{
        key = "concept render",
        cat = "Concept Renders",
    },
	{
        key = "concept screenshot",
        cat = "Concept Screenshots",
    },
	{
        key = "concept sound",
        cat = "Concept Sounds",
    },
	{
        key = "concept sprite",
        cat = "Concept Sprites",
    },
	{
        key = "concept texture",
        cat = "Concept Textures",
    },
    {
    	key = "concept video",
    	cat = "Concept Videos",
    },
	
	{
        key = "flag",
        cat = "Flags",
        nogame = true,
    },
	{
        key = "logo",
        cat = "Logos",
    },
	{
        key = "photo",
        cat = "Photographs",
    },
	{
		key = "signature",
		cat = "Signatures",
		nogame = true,
	},
	{
        key = "user",
        cat = "Personal Images",
        nogame = true,
    },
    {
    	key = "wiki symbol",
    	cat = "Wiki Symbols",
    	nogame = true,
    }
}
p.typesEnum = utilsTable.map(p.types, "key")
p.typesEnum.reference = "[[Module:File/Data]]"

p.typesByKey = utilsTable.keyBy(p.types, "key")

p.licenses = {
	"Copyright",
	"Fan Art",
	"Public Domain",
	"PD-Simple",
	"GFDL",
	"CC-BY-SA",
	"CC-BY-NC-SA",
	"Copyright-ZW",
}
p.licenses.reference = "[[Module:File/Data]]"

return p
Advertisement