Prototype/Tool: Difference between revisions
m (→Optional properties: words) |
(infinite is default false, and exclusive(?) with durability) |
||
Line 13: | Line 13: | ||
{{Prototype_property|durability|[[Types/double|double]]|optional=true}} | {{Prototype_property|durability|[[Types/double|double]]|optional=true}} | ||
The durability of this tool. Must be positive. | The durability of this tool. Must be positive. Either durability or '''infinite = true''' must be specified. | ||
{{Prototype_property|durability_description_key|[[Types/string|string]]|"description.durability-key"|optional=true}} | {{Prototype_property|durability_description_key|[[Types/string|string]]|"description.durability-key"|optional=true}} | ||
Line 31: | Line 31: | ||
Remaining durability is 2 out of 8 which is 25 % | Remaining durability is 2 out of 8 which is 25 % | ||
{{Prototype_property|infinite|[[Types/bool|bool]]| | {{Prototype_property|infinite|[[Types/bool|bool]]|false|optional=true}} | ||
Whether this tool has infinite durability. | Whether this tool has infinite durability. Either durability or '''infinite = true''' must be specified. |
Revision as of 20:39, 4 February 2022
Prototype definitions » PrototypeBase » Prototype/Item » Prototype/Tool
Items with a "durability". Used for science packs.
Extensions
- Prototype/Armor armor
- Prototype/MiningTool mining-tool (for migration, cannot be used)
- Prototype/RepairTool repair-tool
Optional properties
This prototype inherits all the properties from Prototype/Item.
durability
Type: double
The durability of this tool. Must be positive. Either durability or infinite = true must be specified.
durability_description_key
Type: string
Default: "description.durability-key"
May not be longer than 200 characters.
durability_description_value
Type: string
Default: "description.durability-value"
May not be longer than 200 characters.
In-game, the game provides the locale with three parameters:
- __1__: remaining durability
- __2__: total durability
- __3__: durability as a percentage
So when a locale key that has the following translation
Remaining durability is __1__ out of __2__ which is __3__ %
is applied to a tool with 2 remaining durability out of 8 it will be displayed as
Remaining durability is 2 out of 8 which is 25 %
infinite
Type: bool
Default: false
Whether this tool has infinite durability. Either durability or infinite = true must be specified.