×
Create a new article
Write your page title here:
We currently have 2,815 articles on YumeWiki. Type your article name above or click on one of the titles below and start writing!



YumeWiki
2,815Articles

Template:NPCBox/doc: Difference between revisions

No edit summary
m (specify "name" in the example)
 
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
<templatedata>
<templatedata>
{
{ "description": "Displays an infobox containing a character's details.",
"params": {
"params": {
"headercolor": {
"headercolor": {
"label": "Header color",
"description": "The header's background color.",
"description": "The header's background color.",
"type": "string",
"type": "string",
"suggested": true
"suggested": true,
"default": "#3366CC"
},
},
"headerfontcolor": {
"headerfontcolor": {
"label": "Header font color",
"description": "The header's text color.",
"description": "The header's text color.",
"type": "string",
"type": "string",
"suggested": true
"suggested": true,
"default": "#ffffff"
},
},
"image": {
"image": {
"description": "An image representing the NPC.",
"label": "NPC image",
"description": "The file name for the image to be displayed. It should clearly show the NPC in its usual appearance.",
"type": "wiki-file-name",
"example": "Uboa.png",
"required": true
},
"role": {
"label": "Role",
"description": "The NPC's purpose.",
"example": "Gives the [[Yume 2kki:Effects#Boy|Boy]] effect",
"type": "string",
"required": true
},
"Collectibles": {
"label": "Collectibles",
"description": "Collectibles that you can unlock by interacting with the NPC.",
"example": "WP #87, Menu Theme #65",
"type": "string",
"type": "string",
"suggested": true
"aliases": [
"Wallpapers",
"Menu"
],
"required": true
},
},
"caption": {
"Events": {
"description": "A caption describing the NPC's image.",
"label": "Events",
"type": "string"
"description": "Events associated with this NPC.",
"type": "string",
"required": true
},
},
"location": {
"location": {
"description": "The NPC's location.",
"label": "Location",
"description": "The NPC's location, or a comma-separated list of locations.",
"type": "string",
"type": "string",
"suggested": true
"required": true
},
"role": {
"description": "The NPC's purpose.",
"type": "string"
},
},
"size": {
"size": {
"label": "Size",
"description": "The NPC's physical size.",
"description": "The NPC's physical size.",
"example": "Standard",
"type": "string",
"type": "string",
"suggested": true
"suggested": true
},
},
"killable": {
"killable": {
"description": "Whether the NPC can be killed.",
"label": "Killable?",
"description": "Whether the NPC is able to be killed using the game's weapon effect.",
"suggestedvalues": ["Yes","No"],
"type": "string",
"type": "string",
"suggested": true
"suggested": true
},
},
"notes": {
"species": {
"description": "Additional notes related to the NPC.",
"label": "Species",
"type": "content",
"description": "The in-game species of the NPC.",
"suggested": true
},
"EffectName": {
"description": "The name of the effect associated with this NPC.",
"type": "string"
"type": "string"
},
},
"Effects": {
"notes": {
"description": "The effect that you can get from this NPC.",
"label": "Misc. Notes",
"description": "Any further notes on the NPC that are important enough to include in the box.",
"type": "string"
"type": "string"
},
},
"Wallpapers": {
"name": {
"description": "Wallpapers that you can get from this NPC.",
"label": "Display Name",
"example": "WP #1",
"description": "Overrides using the page name as the header text. If the name of the character should be changed on the wiki, move the page instead of using this parameter.",
"type": "string",
"type": "string",
"suggested": true
"autovalue": "{{PAGENAME}}"
},
},
"Menu": {
"headerfontsize": {
"description": "Menu themes that the NPC would you.",
"label": "Header font size",
"example": "Menu Theme #1",
"description": "The header's font size as a percentage.",
"type": "string",
"type": "string",
"suggested": true
"default": "200%"
},
"imagewidth": {
"label": "Image width",
"description": "The image width in px.",
"type": "number",
"default": "250"
},
},
"Events": {
"caption": {
"description": "Events associated with this NPC.",
"label": "Image caption",
"type": "string",
"description": "A corresponding caption for the image, visible if a value is provided.",
"suggested": true
"type": "string"
}
}
},
},
"description": "A template used in displaying NPC information.",
"format": "{{_\n|_ = _\n}}",
"format": "{{_\n|_ = _\n}}"
"paramOrder": [
"headercolor",
"headerfontcolor",
"image",
"role",
"Collectibles",
"Events",
"location",
"size",
"killable",
"species",
"notes",
"name",
"headerfontsize",
"imagewidth",
"caption"
]
}
}
</templatedata>
</templatedata>
==General usage==
<pre style="line-height:1.6;">
{{NPCBox
|name = Uboa
|headercolor = #000000
|headerfontcolor = #ffffff
|image = Uboa.png
|role = Traps [[Yume Nikki:Madotsuki|Madotsuki]] in [[Yume Nikki:Poniko's House#Uboa's Trap|Uboa's Trap]]
|Collectibles = None
|Events = [[Yume Nikki:Events#Uboa|Uboa]]
|location = [[Yume Nikki:Poniko's House|Poniko's House]], [[Yume Nikki:Uboa's Trap|Uboa's Trap]]
|size = Standard
|killable = No
|species =
|notes =
}}
</pre>
will return:
{{NPCBox
|name = Uboa
|headercolor = #000000
|headerfontcolor = #ffffff
|image = Uboa.png
|role = Traps [[Yume Nikki:Madotsuki|Madotsuki]] in [[Yume Nikki:Poniko's House#Uboa's Trap|Uboa's Trap]]
|Collectibles = None
|Events = [[Yume Nikki:Events#Uboa|Uboa]]
|location = [[Yume Nikki:Poniko's House|Poniko's House]], [[Yume Nikki:Uboa's Trap|Uboa's Trap]]
|size = Standard
|killable = No
|species =
|notes =
}}
<noinclude>__NOTOC__ [[Category:Template documentation]]</noinclude>
<includeonly>__NOEDITSECTION__</includeonly>

Latest revision as of 23:27, 21 June 2024

Displays an infobox containing a character's details.

Template parameters

This template has custom formatting.

ParameterDescriptionTypeStatus
Header colorheadercolor

The header's background color.

Default
#3366CC
Stringsuggested
Header font colorheaderfontcolor

The header's text color.

Default
#ffffff
Stringsuggested
NPC imageimage

The file name for the image to be displayed. It should clearly show the NPC in its usual appearance.

Example
Uboa.png
Filerequired
Rolerole

The NPC's purpose.

Example
Gives the [[Yume 2kki:Effects#Boy|Boy]] effect
Stringrequired
CollectiblesCollectibles Wallpapers Menu

Collectibles that you can unlock by interacting with the NPC.

Example
WP #87, Menu Theme #65
Stringrequired
EventsEvents

Events associated with this NPC.

Stringrequired
Locationlocation

The NPC's location, or a comma-separated list of locations.

Stringrequired
Sizesize

The NPC's physical size.

Example
Standard
Stringsuggested
Killable?killable

Whether the NPC is able to be killed using the game's weapon effect.

Suggested values
Yes No
Stringsuggested
Speciesspecies

The in-game species of the NPC.

Stringoptional
Misc. Notesnotes

Any further notes on the NPC that are important enough to include in the box.

Stringoptional
Display Namename

Overrides using the page name as the header text. If the name of the character should be changed on the wiki, move the page instead of using this parameter.

Auto value
{{PAGENAME}}
Stringoptional
Header font sizeheaderfontsize

The header's font size as a percentage.

Default
200%
Stringoptional
Image widthimagewidth

The image width in px.

Default
250
Numberoptional
Image captioncaption

A corresponding caption for the image, visible if a value is provided.

Stringoptional

General usage

{{NPCBox
|name = Uboa
|headercolor = #000000
|headerfontcolor = #ffffff
|image = Uboa.png
|role = Traps [[Yume Nikki:Madotsuki|Madotsuki]] in [[Yume Nikki:Poniko's House#Uboa's Trap|Uboa's Trap]]
|Collectibles = None
|Events = [[Yume Nikki:Events#Uboa|Uboa]]
|location = [[Yume Nikki:Poniko's House|Poniko's House]], [[Yume Nikki:Uboa's Trap|Uboa's Trap]]
|size = Standard
|killable = No
|species = 
|notes = 
}}

will return:

Uboa
Uboa.png
Basic Info
Role Traps Madotsuki in Uboa's Trap
Collectibles None
Events Uboa
Location

Poniko's House
Uboa's Trap

Other
Size Standard
Killable? No