Template:Infobox Enemy SvS/doc: Difference between revisions
m Localized name |
m 6 revisions imported: Imported from Neptunia Wiki on Fandom |
||
(4 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
==Parameters== | ==Parameters== | ||
===Without Panels=== | |||
<pre> | <pre> | ||
{{Infobox Enemy SvS | {{Infobox Enemy SvS | ||
Line 29: | Line 30: | ||
</pre> | </pre> | ||
{{ | ===With Panels=== | ||
Up to 5 panels can be displayed. | |||
<syntaxhighlight lang="css" class="mw-collapsible mw-collapsed"> | |||
{{Infobox Enemy SvS | |||
|name= | |||
|image= | |||
|caption= | |||
|japanese name= | |||
|romaji name= | |||
|panel-1= | |||
|type= | |||
|habitat= | |||
|lv= | |||
|hp= | |||
|str= | |||
|vit= | |||
|int= | |||
|men= | |||
|agi= | |||
|tec= | |||
|luk= | |||
|exp= | |||
|credits= | |||
|dc= | |||
|drops= | |||
|panel-2= | |||
|type-2= | |||
|habitat-2= | |||
|lv-2= | |||
|hp-2= | |||
|str-2= | |||
|vit-2= | |||
|int-2= | |||
|men-2= | |||
|agi-2= | |||
|tec-2= | |||
|luk-2= | |||
|exp-2= | |||
|credits-2= | |||
|dc-2= | |||
|drops-2= | |||
|panel-3= | |||
|type-3= | |||
|habitat-3= | |||
|lv-3= | |||
|hp-3= | |||
|str-3= | |||
|vit-3= | |||
|int-3= | |||
|men-3= | |||
|agi-3= | |||
|tec-3= | |||
|luk-3= | |||
|exp-3= | |||
|credits-3= | |||
|dc-3= | |||
|drops-3= | |||
|panel-4= | |||
|type-4= | |||
|habitat-4= | |||
|lv-4= | |||
|hp-4= | |||
|str-4= | |||
|vit-4= | |||
|int-4= | |||
|men-4= | |||
|agi-4= | |||
|tec-4= | |||
|luk-4= | |||
|exp-4= | |||
|credits-4= | |||
|dc-4= | |||
|drops-4= | |||
|panel-5= | |||
|type-5= | |||
|habitat-5= | |||
|lv-5= | |||
|hp-5= | |||
|str-5= | |||
|vit-5= | |||
|int-5= | |||
|men-5= | |||
|agi-5= | |||
|tec-5= | |||
|luk-5= | |||
|exp-5= | |||
|credits-5= | |||
|dc-5= | |||
|drops-5= | |||
|video game= | |||
}} | |||
</syntaxhighlight> | |||
==TemplateData== | |||
<templatedata> | |||
{ | |||
"params": { | |||
"name": { | |||
"label": "Enemy name", | |||
"description": "The name of the enemy.", | |||
"type": "string", | |||
"autovalue": "{{subst:SUBPAGENAME}}", | |||
"required": true | |||
}, | |||
"image": { | |||
"label": "Image", | |||
"description": "The image of the enemy.", | |||
"type": "wiki-file-name", | |||
"suggested": true | |||
}, | |||
"caption": { | |||
"label": "Image caption", | |||
"description": "A caption describing the enemy.", | |||
"type": "string" | |||
}, | |||
"japanese name": { | |||
"label": "Japanese name", | |||
"description": "The name of the enemy written in Japanese.", | |||
"example": "スライヌ", | |||
"type": "string", | |||
"suggested": true | |||
}, | |||
"romaji name": { | |||
"label": "Romaji name", | |||
"description": "The romaji name of the enemy.", | |||
"example": "Surainu", | |||
"type": "string", | |||
"suggested": true | |||
}, | |||
"type": { | |||
"label": "Enemy type", | |||
"example": "[[Dogoo]]", | |||
"type": "string", | |||
"suggested": true, | |||
"description": "The type of enemy. Must be wikilinked." | |||
}, | |||
"habitat": { | |||
"label": "Habitat", | |||
"description": "The habitat(s), or dungeon(s) this enemy appears in. Use line breaks (<br>) if more than one dungeon.", | |||
"example": "[[Dungeon/Sisters vs Sisters/Abandoned Research Facility|Abandoned Research Facility]]", | |||
"type": "content", | |||
"suggested": true | |||
}, | |||
"lv": { | |||
"label": "Level", | |||
"description": "The level of the enemy.", | |||
"type": "number", | |||
"default": "0", | |||
"suggested": true | |||
}, | |||
"hp": { | |||
"label": "HP", | |||
"description": "The amount of hit points (HP) this enemy has.", | |||
"type": "number", | |||
"default": "0", | |||
"suggested": true | |||
}, | |||
"str": { | |||
"label": "STR", | |||
"description": "The amount of strength (STR) this enemy has.", | |||
"type": "number", | |||
"default": "0", | |||
"suggested": true | |||
}, | |||
"vit": { | |||
"label": "VIT", | |||
"description": "The amount of vitality (VIT) this enemy has.", | |||
"type": "number", | |||
"default": "0", | |||
"suggested": true | |||
}, | |||
"int": { | |||
"label": "INT", | |||
"description": "The amount of intelligence (INT) this enemy has.", | |||
"type": "number", | |||
"default": "0", | |||
"suggested": true | |||
}, | |||
"men": { | |||
"label": "MEN", | |||
"description": "The amount of mentality (MEN) this enemy has.", | |||
"type": "number", | |||
"default": "0", | |||
"suggested": true | |||
}, | |||
"agi": { | |||
"label": "AGI", | |||
"description": "The amount of agility (AGI) this enemy has.", | |||
"type": "number", | |||
"default": "0", | |||
"suggested": true | |||
}, | |||
"tec": { | |||
"label": "TEC", | |||
"description": "The amount of technique (TEC) this enemy has.", | |||
"type": "number", | |||
"default": "0", | |||
"suggested": true | |||
}, | |||
"luk": { | |||
"label": "LUK", | |||
"description": "The amount of luck (LUK) this enemy has.", | |||
"type": "number", | |||
"default": "0", | |||
"suggested": true | |||
}, | |||
"exp": { | |||
"label": "EXP", | |||
"description": "The amount of experience points (EXP) this enemy drops when defeated.", | |||
"type": "number", | |||
"default": "0", | |||
"suggested": true | |||
}, | |||
"credits": { | |||
"label": "Credits", | |||
"description": "The amount of credits this enemy drops when defeated.", | |||
"type": "number", | |||
"default": "0", | |||
"suggested": true | |||
}, | |||
"dc": { | |||
"label": "Development credits", | |||
"description": "The amount of development credits (DC) this enemy drops when defeated.", | |||
"type": "number", | |||
"default": "0", | |||
"suggested": true | |||
}, | |||
"drops": { | |||
"label": "Item Drops", | |||
"description": "The amount of items this enemy drops when defeated. The chance of the item drops are determined by percentage. Use line breaks (<br>) if more than one item.", | |||
"example": "Healing Rain - 100%", | |||
"type": "content", | |||
"suggested": true | |||
}, | |||
"video game": { | |||
"label": "Video game", | |||
"description": "The name of the video game this enemy appears in.", | |||
"type": "string", | |||
"autovalue": "''[[Neptunia: Sisters vs Sisters]]''", | |||
"required": true | |||
} | |||
}, | |||
"description": "Displays information regarding enemies in Neptunia: Sisters vs Sisters.", | |||
"format": "block" | |||
} | |||
</templatedata> | |||
==See also== | ==See also== | ||
*{{t|Infobox Enemy}} | *{{t|Infobox Enemy}} |
Latest revision as of 14:40, 23 February 2025
Description
This infobox is used to display information regarding enemies in Neptunia: Sisters vs Sisters.
Parameters
Without Panels
{{Infobox Enemy SvS |name= |image= |caption= |japanese name= |romaji name= |type= |habitat= |lv= |hp= |str= |vit= |int= |men= |agi= |tec= |luk= |exp= |credits= |dc= |drops= |video game= }}
With Panels
Up to 5 panels can be displayed.
{{Infobox Enemy SvS
|name=
|image=
|caption=
|japanese name=
|romaji name=
|panel-1=
|type=
|habitat=
|lv=
|hp=
|str=
|vit=
|int=
|men=
|agi=
|tec=
|luk=
|exp=
|credits=
|dc=
|drops=
|panel-2=
|type-2=
|habitat-2=
|lv-2=
|hp-2=
|str-2=
|vit-2=
|int-2=
|men-2=
|agi-2=
|tec-2=
|luk-2=
|exp-2=
|credits-2=
|dc-2=
|drops-2=
|panel-3=
|type-3=
|habitat-3=
|lv-3=
|hp-3=
|str-3=
|vit-3=
|int-3=
|men-3=
|agi-3=
|tec-3=
|luk-3=
|exp-3=
|credits-3=
|dc-3=
|drops-3=
|panel-4=
|type-4=
|habitat-4=
|lv-4=
|hp-4=
|str-4=
|vit-4=
|int-4=
|men-4=
|agi-4=
|tec-4=
|luk-4=
|exp-4=
|credits-4=
|dc-4=
|drops-4=
|panel-5=
|type-5=
|habitat-5=
|lv-5=
|hp-5=
|str-5=
|vit-5=
|int-5=
|men-5=
|agi-5=
|tec-5=
|luk-5=
|exp-5=
|credits-5=
|dc-5=
|drops-5=
|video game=
}}
TemplateData
Displays information regarding enemies in Neptunia: Sisters vs Sisters.
Parameter | Description | Type | Status | |
---|---|---|---|---|
Enemy name | name | The name of the enemy.
| String | required |
Image | image | The image of the enemy. | File | suggested |
Image caption | caption | A caption describing the enemy. | String | optional |
Japanese name | japanese name | The name of the enemy written in Japanese.
| String | suggested |
Romaji name | romaji name | The romaji name of the enemy.
| String | suggested |
Enemy type | type | The type of enemy. Must be wikilinked.
| String | suggested |
Habitat | habitat | The habitat(s), or dungeon(s) this enemy appears in. Use line breaks (<br>) if more than one dungeon.
| Content | suggested |
Level | lv | The level of the enemy.
| Number | suggested |
HP | hp | The amount of hit points (HP) this enemy has.
| Number | suggested |
STR | str | The amount of strength (STR) this enemy has.
| Number | suggested |
VIT | vit | The amount of vitality (VIT) this enemy has.
| Number | suggested |
INT | int | The amount of intelligence (INT) this enemy has.
| Number | suggested |
MEN | men | The amount of mentality (MEN) this enemy has.
| Number | suggested |
AGI | agi | The amount of agility (AGI) this enemy has.
| Number | suggested |
TEC | tec | The amount of technique (TEC) this enemy has.
| Number | suggested |
LUK | luk | The amount of luck (LUK) this enemy has.
| Number | suggested |
EXP | exp | The amount of experience points (EXP) this enemy drops when defeated.
| Number | suggested |
Credits | credits | The amount of credits this enemy drops when defeated.
| Number | suggested |
Development credits | dc | The amount of development credits (DC) this enemy drops when defeated.
| Number | suggested |
Item Drops | drops | The amount of items this enemy drops when defeated. The chance of the item drops are determined by percentage. Use line breaks (<br>) if more than one item.
| Content | suggested |
Video game | video game | The name of the video game this enemy appears in.
| String | required |
See also
- {{Infobox Enemy}}
- {{Infobox Enemy VII}}, used for enemies in Megadimension Neptunia VII