![]() |
VOOZH | about |
This template shortens an expression of a large number of items into a compacted form, which has a comment fully explaining itself.
The template takes two inputs:
Assuming the first input is x, the second input is y, and the total is n, it will display as <x> stack(s) +<y>.
You can instead only specify one parameter for the number of items, then it will automatically converts into the stacks and items format.
By default, the template will treat 1 stack as 64 items. To override this, pass a third parameter, it is the amount of a stack that you want. If the number of stacks or items are 0, you still have to pass them to their corresponding parameter.
To express 3 stacks and 36 items:
{{ItemAmount|3|36}}
Result: 3 stacks + 36
To express 5 stacks:
{{ItemAmount|5|0}}
Result: 5 stacks
To express 450 items:
{{ItemAmount|450}}
Result: 7 stacks + 2
To express 5 stacks and 3 items, where each stack is 16 items:
{{ItemAmount|5|3|16}}
Result: 5 stacks + 3