Template:Construction: Difference between revisions
(Added support for Wood) |
m (→Examples: fixed wrong example) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 5: | Line 5: | ||
| parts = {{{Parts| {{{4|}}} }}} | | parts = {{{Parts| {{{4|}}} }}} | ||
| wood = {{{Wood|}}} | | wood = {{{Wood|}}} | ||
| pipes = {{{Pipes|}}} | |||
}}</includeonly><noinclude> | }}</includeonly><noinclude> | ||
Line 18: | Line 19: | ||
! Parameter !! Type !! Description | ! Parameter !! Type !! Description | ||
|- | |- | ||
| Planks || | | Planks || number || The number of {{rl|Planks}} required. | ||
|- | |- | ||
| Bricks || | | Bricks || number || The number of {{rl|Bricks}} required. | ||
|- | |- | ||
| Fabric || | | Fabric || number || The number of {{rl|Fabric}} required. | ||
|- | |- | ||
| Parts || | | Parts || number || The number of {{rl|Parts}} required. | ||
|- | |- | ||
| Wood || | | Wood || number || The number of {{rl|Wood}} required. This will appear at the top of the table. This must be named, like <code>Wood=</code> | ||
|- | |||
| Pipes || number || The number of {{rl|Pipes}} required. This must be named, like <code>Pipes=</code> | |||
|} | |} | ||
== Examples == | == Examples == | ||
This table shows all possible values. <code><nowiki>{{Construction|Planks=12|Bricks=8|Fabric=4|Parts=2}}</nowiki></code> yields: | This table shows all possible values. <code><nowiki>{{Construction|Planks=12|Bricks=8|Fabric=4|Parts=2|Wood=10|Pipes=4}}</nowiki></code> yields: | ||
{{Construction|Planks=12|Bricks=8|Fabric=4|Parts=2}} | {{Construction|Planks=12|Bricks=8|Fabric=4|Parts=2|Wood=10|Pipes=4}} | ||
Alternatively, you do not have to name the parameters. <code><nowiki>{{Construction|12|8|4|2}</nowiki></code> yields the same thing: | Alternatively, you do not have to name some of the parameters. <code><nowiki>{{Construction|12|8|4|2|Wood=10|Pipes=4}}</nowiki></code> yields the same thing: | ||
{{Construction|12|8|4|2}} | {{Construction|12|8|4|2|Wood=10|Pipes=4}} | ||
You can also mix naming and not-naming to make it easier to write when skipping over building materials. <code><nowiki>{{Construction|8|Parts=2}}</nowiki></code> yields: {{Construction|8|Parts=2}} | You can also mix naming and not-naming to make it easier to write when skipping over building materials. <code><nowiki>{{Construction|8|Parts=2}}</nowiki></code> yields: {{Construction|8|Parts=2}} | ||
Remember you need to declare the amount of Wood explicitly. This is because <code><nowiki>{{Construction|Wood=10|Parts=3}}</nowiki></code> is much easier to read than <code><nowiki>{{Construction||||3|Wood=10}}</nowiki></code> and affords the ability to declare ''most'' construction requirements with Planks. Here's the result: | Remember you need to declare the amount of Wood and Pipes explicitly. This is because <code><nowiki>{{Construction|Wood=10|Parts=3}}</nowiki></code> is much easier to read than <code><nowiki>{{Construction||||3|Wood=10}}</nowiki></code> and affords the ability to declare ''most'' construction requirements with Planks. Here's the result: | ||
{{Construction|Wood=10|Parts=3}} | {{Construction|Wood=10|Parts=3}} | ||
Line 68: | Line 71: | ||
Yields: | Yields: | ||
{{Construction|2|Wood=8}} | {{Construction|2|Wood=8}} | ||
</noinclude> | |||
[[Category:Lua-based templates]]</noinclude> |
Latest revision as of 20:06, 5 October 2024
Overview
A template to populate small, well-aligned tables of construction goods.
Parameters
You may elect to name the parameters explicitly (Planks=
) or use them in the order specified in the table. The exception is Wood, which must be declared explicitly, but is placed at the beginning of the table.
Parameter | Type | Description |
---|---|---|
Planks | number | The number of Planks required. |
Bricks | number | The number of Bricks required. |
Fabric | number | The number of Fabric required. |
Parts | number | The number of Parts required. |
Wood | number | The number of Wood required. This will appear at the top of the table. This must be named, like Wood=
|
Pipes | number | The number of Pipes required. This must be named, like Pipes=
|
Examples
This table shows all possible values. {{Construction|Planks=12|Bricks=8|Fabric=4|Parts=2|Wood=10|Pipes=4}}
yields:
10 | Wood |
12 | Planks |
8 | Bricks |
4 | Fabric |
2 | Parts |
4 | Pipes |
Alternatively, you do not have to name some of the parameters. {{Construction|12|8|4|2|Wood=10|Pipes=4}}
yields the same thing:
10 | Wood |
12 | Planks |
8 | Bricks |
4 | Fabric |
2 | Parts |
4 | Pipes |
You can also mix naming and not-naming to make it easier to write when skipping over building materials. {{Construction|8|Parts=2}}
yields:
8 | Planks |
2 | Parts |
Remember you need to declare the amount of Wood and Pipes explicitly. This is because {{Construction|Wood=10|Parts=3}}
is much easier to read than {{Construction||||3|Wood=10}}
and affords the ability to declare most construction requirements with Planks. Here's the result:
10 | Wood |
3 | Parts |
Errors
This template does not result in any errors. However, there is no use for a template called without parameters.
{{Construction}}
Yields:
(It's there, but it's a blank table.)
The template also does not prevent you from mixing both named and unnamed parameters, but the result will be whichever is defined last.
{{Construction||10|Bricks=12}}
Yields:
12 | Bricks |
Finally, even though no buildings currently require it, this template does permit you to display both Wood and Planks.
{{Construction|2|Wood=8}}
Yields:
8 | Wood |
2 | Planks |