Template:Character Infobox/doc: Difference between revisions

Kwwxis (talk | contribs)
No edit summary
Line 3: Line 3:
<pre>
<pre>
{{Character Infobox
{{Character Infobox
|id           =  
|id             =  
<!-- Basic Info -->
<!-- Basic Info -->
|name          =  
|name          =  
Line 23: Line 23:


==Example==
==Example==
===Armand===
{{Character Infobox
{{Character Infobox
|id           =  
|id             =  
<!-- Basic Info -->
<!-- Basic Info -->
|name          = Victus
|name          = Armand
|title          = The 1st Sovereign
|title          = The 8th Sovereign
|title2        = The 2nd Novarch
|title2        = The 17th Novarch
|image          = Victus Character Splash Art.png
|image          = Armand Character Splash Art.png
|availability  = Upcoming
|availability  = Upcoming
|type          = Animaster
|type          = Animaster
Line 36: Line 37:
|otherNames    =  
|otherNames    =  
<!-- Voice Actors -->
<!-- Voice Actors -->
|vaEN          =  
|vaEN          = Some EN VA
|vaCN          =  
|vaCN          = Some CN VA
|vaJP          =  
|vaJP          = Some JP VA
|vaKR          =  
|vaKR          = Some KR VA
}}
<pre>
{{Character Infobox
|id            =
<!-- Basic Info -->
|name          = Armand
|title          = The 8th Sovereign
|title2        = The 17th Novarch
|image          = Armand Character Splash Art.png
|availability  = Upcoming
|type          = Animaster
|animasterType  = Sovereign
|animasterType2 = Novarch
|otherNames    =
<!-- Voice Actors -->
|vaEN          = Some EN VA
|vaCN          = Some CN VA
|vaJP          = Some JP VA
|vaKR          = Some KR VA
}}
}}
</pre>
==Template Data==
<templatedata>
{
"format": "{{_\n|______________ = _\n}}\n",
"params": {
"id": {
"label": "ID",
"description": "Character's ID (if playable)",
"type": "number"
},
"name": {
"label": "Name",
"description": "Character's name",
"type": "string",
"default": "{{PAGENAME}}"
},
"title": {
"label": "Title",
"description": "Character's main title (if applicable)",
"type": "string",
"suggested": true
},
"title2": {
"label": "Second Title",
"description": "Character's secondary title (if applicable)",
"type": "string"
},
"image": {
"label": "Image",
"description": "Character's image(s)",
"type": "content",
"required": true
},
"availability": {
"label": "Availability",
"description": "Character's availability (if playable)",
"type": "string",
"example": "Upcoming"
},
"type": {
"label": "Type",
"description": "Character's type",
"type": "string",
"required": true,
            "example": "Animaster, NPC"
},
"animasterType": {
"label": "Animaster Type",
"description": "Animaster type (if applicable)",
"type": "string",
            "example": "Sovereign, Novarch, Other"
},
"animasterType2": {
"label": "Second Animaster Type",
"description": "Secondary Animaster type (if applicable)",
"type": "string",
            "example": "Sovereign, Novarch, Other"
},
"otherNames": {
"label": "Other Names",
"description": "Character's other names or aliases (if applicable)",
"type": "string"
},
"vaEN": {
"label": "English VA",
"description": "Character's English VA",
"type": "string",
"required": true
},
"vaCN": {
"label": "Chinese VA",
"description": "Character's Chinese VA",
"type": "string",
"required": true
},
"vaJP": {
"label": "Japanese VA",
"description": "Character's Japanese VA",
"type": "string",
"required": true
},
"vaKR": {
"label": "Korean VA",
"description": "Character's Korean VA",
"type": "string",
"required": true
}
},
"paramOrder": [
        "id",
"name",
"title",
        "title2",
        "image",
        "availability",
"type",
"animasterType",
"animasterType2",
"otherNames",
"vaEN",
"vaCN",
"vaJP",
"vaKR"
],
"description": "Infobox used to display information about a character."
}
</templatedata>