Template:Infobox costume/doc: Difference between revisions

Template page
Content added Content deleted
(Added examples and template parameters)
No edit summary
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{documentation subpage}}
{{documentation subpage}}


{{Lua|Module:Infobox Costume}}
{{Lua|Module:Infobox costume}}


==Parameters==
==Parameters==
Line 63: Line 63:
"accessory": {
"accessory": {
"label": "Accessory",
"label": "Accessory",
"description": "Whether or not this card comes with an accessory.",
"description": "Whether or not this costume comes with an accessory.",
"example": "yes",
"example": "Yes",
"type": "boolean",
"type": "boolean",
"required": true
"required": true
Line 71: Line 71:
"label": "Unique Accessory",
"label": "Unique Accessory",
"description": "Whether or not this costume comes with an accessory for a specific character.",
"description": "Whether or not this costume comes with an accessory for a specific character.",
"example": "yes",
"example": "Yes",
"type": "boolean",
"type": "boolean",
"required": true
"required": true
Line 80: Line 80:
"type": "string",
"type": "string",
"example": "¥1,960"
"example": "¥1,960"
},
"acquire": {
"label": "Acquisition method(s)",
"description": "The ways the costume can be acquired. Any combination of \"Initial\", \"Costume Shop\", \"Crystal Shop\", or \"Premium Mission Pass\".",
"type": "string",
"required": true,
"example": "Costume Shop"
},
"date": {
"label": "Release date",
"description": "The date the costume was initially released.",
"type": "date",
"required": true,
"example": "\t2020-09-30"
},
"pass": {
"label": "Premium Mission Pass",
"description": "The mission pass the costume initially was on.",
"type": "string",
"example": "March 2021"
},
"unique hair": {
"label": "Unique Hair",
"description": "Whether or not this costume comes with a unique hairstyle for a specific character.",
"type": "boolean",
"required": true,
"example": "No"
}
}
},
},
Line 91: Line 118:
"gender",
"gender",
"designer",
"designer",
"date",
"acquire",
"price",
"price",
"card",
"card",
"pass",
"accessory",
"accessory",
"unique accessory"
"unique accessory",
"unique hair"
]
],
"description": "Infobox Costume for displaying costume information."
}
}
</templatedata>
</templatedata>


==Quick Copy==
==Quick copy==
<pre>
<pre>
{{Infobox Costume
{{Infobox costume
|costume id =
|costume id =
|costume name =
|costume name =
Line 109: Line 141:
|gender =
|gender =
|designer =
|designer =
|price =
|date =
|acquire =
|price =
|card =
|card =
|pass =
|accessory =
|accessory =
|unique accessory =
|unique accessory =
Line 117: Line 152:


==Examples==
==Examples==
{{Infobox Costume
{{Infobox costume
|costume id = cos0030
|costume id = cos0030
|costume name = Hopping Frills
|costume name = Hopping Frills
Line 124: Line 159:
|thumbnail = Cos0030 body.png
|thumbnail = Cos0030 body.png
|gender = Ladies
|gender = Ladies
|acquire = Costume Shop
|date = 2020/09/30
|card = The Grand Opening
|card = The Grand Opening
|accessory = yes
|accessory = Yes
|unique accessory = yes
|unique accessory = Yes
|unique hair = No
}}
}}
<pre>
<pre>
{{Infobox Costume
{{Infobox costume
|costume id = cos0030
|costume id = cos0030
|costume name = Hopping Frills
|costume name = Hopping Frills
Line 136: Line 174:
|thumbnail = Cos0030 body.png
|thumbnail = Cos0030 body.png
|gender = Ladies
|gender = Ladies
|acquire = Costume Shop
|date = 2020/09/30
|card = The Grand Opening
|card = The Grand Opening
|accessory = yes
|accessory = Yes
|unique accessory = yes
|unique accessory = Yes
|unique hair = No
}}
}}
</pre>
</pre>
Line 144: Line 185:
{{clear}}
{{clear}}


{{Infobox Costume
{{Infobox costume
|costume id = cos0159
|costume id = cos0159
|costume name = Pumpkin Sorcerer
|costume name = Pumpkin Sorcerer
Line 156: Line 197:
}}
}}
<pre>
<pre>
{{Infobox Costume
{{Infobox costume
|costume id = cos0159
|costume id = cos0159
|costume name = Pumpkin Sorcerer
|costume name = Pumpkin Sorcerer
Line 169: Line 210:
</pre>
</pre>


<includeonly>[[Category:Infobox templates]]</includeonly>
<includeonly>[[Category:Infobox templates]][[Category:Costume templates]]</includeonly>

Latest revision as of 20:49, 12 October 2023

Parameters[edit source]

Infobox Costume for displaying costume information.

Template parameters

This template prefers block formatting of parameters.

ParameterDescriptionTypeStatus
Costume IDcostume id

The ID of the costume. Use the "bundle name" found in assets.

Example
cos0030
Stringrequired
Costume Namecostume name

The name of the costume in English. This could be a name translated from Japanese.

Example
Hopping Frills
Stringrequired
Japanesejapanese

The name of the costume in Japanese.

Example
ホッピングフリル
Stringsuggested
Romajiromaji

The romanization of the Japanese name.

Example
Hoppingufuriru
Stringsuggested
Thumbnailthumbnail

The thumbnail of the costume.

Example
Cos0030 body.png
Filerequired
Gendergender

The gender the costume is for. Use "Ladies" or "Men".

Example
Ladies
Stringrequired
Designerdesigner

The designer of the costume. Usually used for costumes of special occasion or costumes from the monthly premium passes.

Example
iXima
Stringoptional
Release datedate

The date the costume was initially released.

Example
2020-09-30
Daterequired
Acquisition method(s)acquire

The ways the costume can be acquired. Any combination of "Initial", "Costume Shop", "Crystal Shop", or "Premium Mission Pass".

Example
Costume Shop
Stringrequired
Priceprice

The price of the costume. If the costume needs to be purchased (whether on its own or through a bundle), put the price here.

Example
¥1,960
Stringoptional
Associated Cardcard

The card that unlocks this costume.

Example
The Grand Opening
Page nameoptional
Premium Mission Passpass

The mission pass the costume initially was on.

Example
March 2021
Stringoptional
Accessoryaccessory

Whether or not this costume comes with an accessory.

Example
Yes
Booleanrequired
Unique Accessoryunique accessory

Whether or not this costume comes with an accessory for a specific character.

Example
Yes
Booleanrequired
Unique Hairunique hair

Whether or not this costume comes with a unique hairstyle for a specific character.

Example
No
Booleanrequired

Quick copy[edit source]

{{Infobox costume
|costume id   = 
|costume name = 
|japanese     = 
|romaji       = 
|thumbnail = 
|gender    = 
|designer  = 
|date      = 
|acquire   = 
|price     = 
|card      = 
|pass      = 
|accessory        = 
|unique accessory = 
}}

Examples[edit source]

Hopping Frills
Japaneseホッピングフリル
RomajiHoppingufuriru
Costume Information
GenderLadies
Acquisition Information
Release date2020/09/30
Acquition method
  • Costume Shop
Associated cardThe Grand Opening
Accessory & Hair Information
AccessoryUnique AccessoryUnique Hair
{{Infobox costume
|costume id   = cos0030
|costume name = Hopping Frills
|japanese = ホッピングフリル
|romaji   = Hoppingufuriru
|thumbnail = Cos0030 body.png
|gender    = Ladies
|acquire   = Costume Shop
|date      = 2020/09/30
|card      = The Grand Opening
|accessory        = Yes
|unique accessory = Yes
|unique hair      = No
}}
Pumpkin Sorcerer
Japaneseパンプキンソーサラー
Costume Information
GenderMen
Acquisition Information
Release date
Acquition methods
Price
  • 1,500 paid crystals
Accessory & Hair Information
AccessoryUnique AccessoryUnique Hair
{{Infobox costume
|costume id   = cos0159
|costume name = Pumpkin Sorcerer
|japanese     = パンプキンソーサラー
|romaji       = 
|thumbnail = Cos0159 body.png
|gender    = Men
|price     = 1,500 paid crystals
|accessory        = yes
|unique accessory = no
}}


Cookies help us deliver our services. By using our services, you agree to our use of cookies.