Editing Module:Infobox Recipe/doc
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 1: | Line 1: | ||
{{ |
{{documentation}} |
||
The '''Infobox Recipe''' template is used to show the details of a recipe step in item articles, such as a potion mixture or adding a cooking ingredient. It can also be used to display the experience gained for item creation. |
The '''Infobox Recipe''' template is used to show the details of a recipe step in item articles, such as a potion mixture or adding a cooking ingredient. It can also be used to display the experience gained for item creation. |
||
Line 87: | Line 87: | ||
| ''Integer'' |
| ''Integer'' |
||
| The amount of the output created in the process. |
| The amount of the output created in the process. |
||
This parameter can be removed if it would be '''1''' |
|||
| No |
|||
|- |
|||
| <code>showFull</code> |
|||
| ''boolean'' |
|||
| Flag to display all steps of a recipe or only the step specified in the params |
|||
| No |
| No |
||
|- |
|- |
||
|} |
|} |
||
== |
==Example== |
||
⚫ | |||
===Show Single Step Recipe=== |
|||
This is an example that uses values from the 10% Potion Healing recipe. Notice that this only shows information of the steps for which the information has been provided. |
|||
The <code>showFull</code> parameter can be omitted entirely if this is the desired outcome as the default value is <code>false</code> |
|||
<pre> |
<pre> |
||
{{Infobox Recipe |
{{Template Infobox Recipe |
||
|facility = Standard Potion Station |
|||
|profession = Alchemist |
|||
⚫ | |||
|exp = 63 |
|||
|rawmat1 = 10% Preparation Healing |
|||
|rawmat2 = Bottle |
|||
|output1 = 10% Potion Healing |
|||
⚫ | |||
⚫ | |||
⚫ | |||
{{Infobox Recipe |
|||
|facility = Standard Potion Station |
|||
|profession = Alchemist |
|||
⚫ | |||
|exp = 63 |
|||
|rawmat1 = 10% Preparation Healing |
|||
|rawmat2 = Bottle |
|||
|output1 = 10% Potion Healing |
|||
⚫ | |||
}} |
|||
===Show Full Recipe=== |
|||
⚫ | |||
This is displayed because the <code>showFull</code> parameter has been set to <code>true</code>. This causes the Infobox Module to query smw data for each of the provided |
|||
raw materials to check if they have raw materials of their own. If they do, they are brought in to the recipe. |
|||
<pre> |
|||
{{Infobox Recipe |
|||
|facility = Standard Potion Station |
|facility = Standard Potion Station |
||
|profession = Alchemist |
|profession = Alchemist |
||
Line 142: | Line 106: | ||
}} |
}} |
||
</pre> |
</pre> |
||
{{Infobox |
{{Template: Infobox RecipeNew |
||
|facility = Standard Potion Station |
|facility = Standard Potion Station |
||
|profession = Alchemist |
|profession = Alchemist |
||
Line 156: | Line 120: | ||
==Blank infobox== |
==Blank infobox== |
||
<pre> |
<pre> |
||
{{Infobox Recipe |
{{Template:Infobox Recipe |
||
|facility = |
|facility = |
||
|profession = |
|profession = |
||
|level = |
|level = |
||
|exp = |
|exp = |
||
|rawmat1 = |
|rawmat1 = |
||
|rawmat1qty = |
|rawmat1qty = |
||
|rawmat2 = |
|rawmat2 = |
||
|rawmat2qty = |
|rawmat2qty = |
||
|rawmat3 = |
|rawmat3 = |
||
|rawmat3qty = |
|rawmat3qty = |
||
|output1 = |
|output1 = |
||
|output1qty = |
|output1qty = |
||
⚫ | |||
⚫ | |||
{{TemplateData| |
|||
<templatedata> |
|||
{ |
|||
"params": { |
|||
"facility": {}, |
|||
"profession": {}, |
|||
⚫ | |||
"exp": {}, |
|||
"rawmat1": {}, |
|||
"rawmat1qty": {}, |
|||
"rawmat2": {}, |
|||
"rawmat2qty": {}, |
|||
"rawmat3": {}, |
|||
"rawmat3qty": {}, |
|||
"output1": {}, |
|||
⚫ | |||
"showFull": {} |
|||
}, |
|||
"paramOrder": [ |
|||
"facility", |
|||
"profession", |
|||
⚫ | |||
"exp", |
|||
"rawmat1", |
|||
"rawmat1qty", |
|||
"rawmat2", |
|||
"rawmat2qty", |
|||
"rawmat3", |
|||
"rawmat3qty", |
|||
"output1", |
|||
⚫ | |||
"showFull" |
|||
], |
|||
"format": "block" |
|||
⚫ | |||
</templatedata> |
|||
⚫ |