Template:Blueprint: Difference between revisions
Template page
More actions
initial draft |
removed Blueprint XP field |
||
(13 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
<includeonly> | <includeonly> | ||
{| class="wikitable" | {| class="wikitable" | ||
| | !colspan="2"|{{{item|}}} | ||
| | |||
|- | |- | ||
!Required Materials | |||
|{{{required_materials|}}} | |{{{required_materials|}}} | ||
|{{{ | |- | ||
|{{{ | !Crafting Time | ||
|{{#if: {{{legacy|}}} | | |||
{{#switch: {{lc:{{{rarity|}}}}} | |||
|rare = 7h | |||
|epic = 18h | |||
|legendary = 1d | |||
}} | |||
| | |||
{{#switch: {{lc:{{{rarity|}}}}} | |||
|common = 45m | |||
|uncommon = 2h | |||
|rare = 5h | |||
|epic = 12h | |||
|legendary = 18h | |||
|mythic = 1d | |||
}} | |||
}} | |||
|} | |} | ||
</includeonly> | </includeonly><noinclude> | ||
<templatedata> | |||
{ | |||
"params": { | |||
"item": { | |||
"description": "The item crafted by the blueprint", | |||
"type": "string", | |||
"required": true | |||
}, | |||
"required_materials": { | |||
"description": "The materials required to craft", | |||
"type": "string", | |||
"required": true | |||
}, | |||
"legacy": { | |||
"description": "Whether the blueprint is from the Legacy Machine", | |||
"suggestedvalues": [ | |||
"yes" | |||
], | |||
"type": "string" | |||
}, | |||
"rarity": { | |||
"description": "The rarity of the cosmetic / blueprint", | |||
"required": true, | |||
"type": "string" | |||
} | |||
}, | |||
"description": "Creates a formatted table to display a blueprint.", | |||
"paramOrder": [ | |||
"item", | |||
"required_materials", | |||
"legacy", | |||
"rarity" | |||
] | |||
} | |||
</templatedata> | |||
</noinclude> |
Latest revision as of 13:57, 30 August 2025
Creates a formatted table to display a blueprint.
Parameter | Description | Type | Status | |
---|---|---|---|---|
item | item | The item crafted by the blueprint | String | required |
required_materials | required_materials | The materials required to craft | String | required |
legacy | legacy | Whether the blueprint is from the Legacy Machine
| String | optional |
rarity | rarity | The rarity of the cosmetic / blueprint | String | required |