Template:Crafting: Difference between revisions
More actions
No edit summary |
Tag: Undo |
||
| (4 intermediate revisions by the same user not shown) | |||
| Line 3: | Line 3: | ||
{{#if: {{{item1|}}} | | {{#if: {{{item1|}}} | | ||
<div class="crafting-item"> | <div class="crafting-item"> | ||
<div class="crafting-icon">[[File:{{{item1}}}_icon.png|48px|link={{{item1}}}]]</div> | <div class="crafting-icon">[[File:{{uc:{{{item1}}}}}_icon.png|48px|link={{{item1}}}]]</div> | ||
<div class="crafting-qty">{{{qty1|1}}}</div> | <div class="crafting-qty">{{{qty1|1}}}</div> | ||
</div> | </div> | ||
| Line 9: | Line 9: | ||
{{#if: {{{item2|}}} | | {{#if: {{{item2|}}} | | ||
<div class="crafting-item"> | <div class="crafting-item"> | ||
<div class="crafting-icon">[[File:{{{item2}}}_icon.png|48px|link={{{item2}}}]]</div> | <div class="crafting-icon">[[File:{{uc:{{{item2}}}}}_icon.png|48px|link={{{item2}}}]]</div> | ||
<div class="crafting-qty">{{{qty2|1}}}</div> | <div class="crafting-qty">{{{qty2|1}}}</div> | ||
</div> | </div> | ||
| Line 15: | Line 15: | ||
{{#if: {{{item3|}}} | | {{#if: {{{item3|}}} | | ||
<div class="crafting-item"> | <div class="crafting-item"> | ||
<div class="crafting-icon">[[File:{{{item3}}}_icon.png|48px|link={{{item3}}}]]</div> | <div class="crafting-icon">[[File:{{uc:{{{item3}}}}}_icon.png|48px|link={{{item3}}}]]</div> | ||
<div class="crafting-qty">{{{qty3|1}}}</div> | <div class="crafting-qty">{{{qty3|1}}}</div> | ||
</div> | </div> | ||
| Line 21: | Line 21: | ||
{{#if: {{{item4|}}} | | {{#if: {{{item4|}}} | | ||
<div class="crafting-item"> | <div class="crafting-item"> | ||
<div class="crafting-icon">[[File:{{{item4}}}_icon.png|48px|link={{{item4}}}]]</div> | <div class="crafting-icon">[[File:{{uc:{{{item4}}}}}_icon.png|48px|link={{{item4}}}]]</div> | ||
<div class="crafting-qty">{{{qty4|1}}}</div> | <div class="crafting-qty">{{{qty4|1}}}</div> | ||
</div> | </div> | ||
| Line 27: | Line 27: | ||
{{#if: {{{item5|}}} | | {{#if: {{{item5|}}} | | ||
<div class="crafting-item"> | <div class="crafting-item"> | ||
<div class="crafting-icon">[[File:{{{item5}}}_icon.png|48px|link={{{item5}}}]]</div> | <div class="crafting-icon">[[File:{{uc:{{{item5}}}}}_icon.png|48px|link={{{item5}}}]]</div> | ||
<div class="crafting-qty">{{{qty5|1}}}</div> | <div class="crafting-qty">{{{qty5|1}}}</div> | ||
</div> | </div> | ||
| Line 33: | Line 33: | ||
{{#if: {{{item6|}}} | | {{#if: {{{item6|}}} | | ||
<div class="crafting-item"> | <div class="crafting-item"> | ||
<div class="crafting-icon">[[File:{{{item6}}}_icon.png|48px|link={{{item6}}}]]</div> | <div class="crafting-icon">[[File:{{uc:{{{item6}}}}}_icon.png|48px|link={{{item6}}}]]</div> | ||
<div class="crafting-qty">{{{qty6|1}}}</div> | <div class="crafting-qty">{{{qty6|1}}}</div> | ||
</div> | </div> | ||
| Line 42: | Line 42: | ||
<div class="crafting-output"> | <div class="crafting-output"> | ||
<div class="crafting-output-icon">[[File:{{{output}}}_icon.png|80px|link={{{output}}}]]</div> | <div class="crafting-output-icon">[[File:{{uc:{{{output}}}}}_icon.png|80px|link={{{output}}}]]</div> | ||
<div class="crafting-output-qty">{{{output_qty|1}}}</div> | <div class="crafting-output-qty">{{{output_qty|1}}}</div> | ||
</div> | </div> | ||
Latest revision as of 00:52, 28 March 2026
Usage
{{CraftingRecipe
| item1 = Scrap Metal | qty1 = 18/5
| item2 = Wood | qty2 = 116/30
| item3 = Screws | qty3 = 22/5
| item4 = Spring | qty4 = 3/1
| output = Pipe Rifle | output_qty = 1
}}
A template for displaying crafting recipes with up to 6 reagents and 1 output item. Matches the Citizen skin dark theme.
| Parameter | Description | Type | Status | |
|---|---|---|---|---|
| Output Item | output | The exact name of the crafted item. This determines the image and page link. | Page name | required |
| Output Quantity | output_qty | The number of items produced by this recipe.
| String | suggested |
| Reagent 1 | item1 | The exact name of the first crafting reagent. | Page name | required |
| Quantity 1 | qty1 | The required or available quantity for the first reagent (e.g., '5' or '18/5').
| String | suggested |
| Reagent 2 | item2 | The exact name of the second crafting reagent. | Page name | suggested |
| Quantity 2 | qty2 | The quantity for the second reagent.
| String | optional |
| Reagent 3 | item3 | The exact name of the third crafting reagent. | Page name | optional |
| Quantity 3 | qty3 | The quantity for the third reagent.
| String | optional |
| Reagent 4 | item4 | The exact name of the fourth crafting reagent. | Page name | optional |
| Quantity 4 | qty4 | The quantity for the fourth reagent.
| String | optional |
| Reagent 5 | item5 | The exact name of the fifth crafting reagent. | Page name | optional |
| Quantity 5 | qty5 | The quantity for the fifth reagent.
| String | optional |
| Reagent 6 | item6 | The exact name of the sixth crafting reagent. | Page name | optional |
| Quantity 6 | qty6 | The quantity for the sixth reagent.
| String | optional |