Module:Infobox Recipe/doc: Difference between revisions
Jump to navigation
Jump to search
Content added Content deleted
The Gaffer (talk | contribs) No edit summary Tag: Manual revert |
Im Wired In (talk | contribs) mNo edit summary |
||
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 103: | Line 103: | ||
The <code>showFull</code> parameter can be omitted entirely if this is the desired outcome as the default value is <code>false</code> |
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 |
||
|facility = Standard Potion Station |
|facility = Standard Potion Station |
||
|profession = Alchemist |
|profession = Alchemist |
||
Line 114: | Line 114: | ||
}} |
}} |
||
</pre> |
</pre> |
||
{{ |
{{Infobox Recipe |
||
|facility = Standard Potion Station |
|facility = Standard Potion Station |
||
|profession = Alchemist |
|profession = Alchemist |
||
Line 130: | Line 130: | ||
raw materials to check if they have raw materials of their own. If they do, they are brought in to the recipe. |
raw materials to check if they have raw materials of their own. If they do, they are brought in to the recipe. |
||
<pre> |
<pre> |
||
{{ |
{{Infobox Recipe |
||
|facility = Standard Potion Station |
|facility = Standard Potion Station |
||
|profession = Alchemist |
|profession = Alchemist |
||
Line 142: | Line 142: | ||
}} |
}} |
||
</pre> |
</pre> |
||
{{ |
{{Infobox Recipe |
||
|facility = Standard Potion Station |
|facility = Standard Potion Station |
||
|profession = Alchemist |
|profession = Alchemist |
||
Line 156: | Line 156: | ||
==Blank infobox== |
==Blank infobox== |
||
<pre> |
<pre> |
||
{{ |
{{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 = |
||
⚫ | |||
</pre> |
|||
{{TemplateData| |
|||
<templatedata> |
|||
{ |
|||
"params": { |
|||
"facility": {}, |
|||
"profession": {}, |
|||
"level": {}, |
|||
"exp": {}, |
|||
"rawmat1": {}, |
|||
"rawmat1qty": {}, |
|||
"rawmat2": {}, |
|||
"rawmat2qty": {}, |
|||
"rawmat3": {}, |
|||
"rawmat3qty": {}, |
|||
"output1": {}, |
|||
"output1qty": {}, |
|||
"showFull": {} |
|||
}, |
|||
"paramOrder": [ |
|||
"facility", |
|||
"profession", |
|||
"level", |
|||
"exp", |
|||
"rawmat1", |
|||
"rawmat1qty", |
|||
"rawmat2", |
|||
"rawmat2qty", |
|||
"rawmat3", |
|||
"rawmat3qty", |
|||
"output1", |
|||
"output1qty", |
|||
"showFull" |
|||
], |
|||
"format": "block" |
|||
} |
|||
</templatedata> |
|||
⚫ |