Terraria Wiki
Registrieren
Advertisement
Terraria Wiki
Diese Vorlage ist synchronisiert-lokalisiert, d. h. sie ist mit der Version des englischen Terraria Wikis identisch. Änderungen an dieser Vorlage sollten zunächst dort vorgenommen werden.
Siehe Vorlage:Coin/l10n für die Lokalisierung dieser Vorlage.
Template-info Dokumentation Die folgende Dokumentation stammt von der Seite Vorlage:Coin/Dokumentation. (bearbeiten | Versionsgeschichte)
Siehe auch die englische Vorlagenseite: Template:Coin. Sie enthält möglicherweise umfassendere oder aktuellere Informationen.
Important Diese Seite ist nicht oder unvollständig übersetzt.
Hilf mit, indem du den Text übersetzt und anschließend diesen Hinweis entfernst. Dies entfernt diese Seite auch aus der Liste von Seiten mit unzureichender Übersetzung.

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|10000cc}} 1
{{coin|1000000}} 1
{{coin|0}} 0
{{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.
Advertisement