Template:Coin
Jump to navigation
Jump to search
Documentation The documentation below is transcluded from Template:Coin/doc. (edit | history)
[purge]
This template is used as a standardized way to display formatted coin values.
Usage
There are 2 API styles:
Style A
{{ coin | <Platinum Coins> (optional) | <Gold Coins> (optional) | <Silver Coins> (optional) | <Copper Coins> }}
Example: {{ coin | 1 | 0 | 30 }}
means 1 Gold 30 Copper Coins.
Style B
{{ coin | <Platinum Coins>pc (optional) <Gold Coins>gc (optional) <Silver Coins>sc (optional) <Copper Coins>cc (optional) }}
Examples: {{ coin | 1gc30cc }}
means 1 Gold 30 Silver Coins; {{ coin | 1.25gc }}
means 1 Gold 25 Silver Coins.
Spacing and capitalization is ignored.
Other parameters
- round
Digit to round the combined value to; default is 2. Can also be negative, and can be used with all API styles.
Examples
Code | Result |
---|---|
{{coin|30}} |
30 |
{{coin|1|30}} |
130 |
{{coin|1|1}} |
11 |
{{coin|1sc}} |
1 |
{{coin|10gc}} |
10 |
{{coin|100000cc}} |
10 |
{{coin|100000}} |
10 |
{{coin|3|1|30}} |
3130 |
{{coin|3|0|1|30}} |
3130 |
{{coin|0|1|0|30}} |
130 |
{{coin|1.30gc}} |
130 |
{{coin|12 gc 80cc}} |
1280 |
{{coin|12cc 80gc}} |
8012 |
{{coin|130 SC}} |
130 |
{{coin|1.5gc130sc}} |
280 |
{{coin|1.0130gC}} |
1130 |
{{coin|32sc 57.8741cc}} |
3257.87 |
{{coin|32sc 57.8741cc|round=3}} |
3257.874 |
{{coin|32sc 57.8741cc|round=1}} |
3257.9 |
{{coin|32sc 57.8741cc|round=0}} |
3258 |
{{coin|32sc 57.8741cc|round=-1}} |
3260 |
{{coin|32sc 54.9781cc|round=-1}} |
3250 |
{{coin|32sc 57.8741cc|round=-2}} |
33 |
{{coin|14pc 56gc 32sc 57.8741cc|round=-6}} |
15 |
{{coin|14pc 56gc 32sc 57.8741cc|round=-7}} |
10 |
{{coin|14pc 56gc 32sc 57.8741cc|round=-8}} |
0 |
{{coin|54pc 56gc 32sc 57.8741cc|round=-8}} |
100 |
Note
- This template is table-sorting-friendly (needs
data-sort-type="number"
in header). See the example table above or here. - It is only designed for positive numbers – negative values as input may lead to unexpected results.