Prototype/Item: Difference between revisions

From Official Factorio Wiki
Jump to navigation Jump to search
(→‎flags: Add "hidden" flag)
(Removed old prototype docs)
 
(37 intermediate revisions by 6 users not shown)
Line 1: Line 1:
==Basics==
<div class="stub"><p>'''The prototype docs have moved to a new website with an improved format.''' This documentation page can now be found here: [https://lua-api.factorio.com/latest/prototypes/ItemPrototype.html https://lua-api.factorio.com/latest/prototypes/ItemPrototype.html]
Possible configuration for all items
== Extensions ==
{| class="wikitable"
|-
! Item !! json identification type !! Description
|-
| [[prototype/item]] || item || Regular item with no special properties.
|-
| [[prototype/Ammo]] || ammo || Ammunition for guns
|-
| [[prototype/Gun]] || gun || Guns
|-
| [[prototype/Armor]] || armor || Used as player protection.
|-
| [[prototype/MiningTool]] || mining-tool || Used for mining resources and/or melee weapon.
|}


== Mandatory properties ==
</p><p>This wiki page is no longer updated and '''will be removed at some point in the future''', so please update your browser bookmarks or other links that sent you here. If you'd like to contribute to the new docs, you can leave your feedback [https://forums.factorio.com/viewforum.php?f=233 on the forums].</p></div>
=== type ===
Type of the item (extension)
  type = "item"
=== name ===
Name of the item prototype (iron-gear-wheel/wooden-chest)
  name = "wooden-chest"
=== stack_size ===
Count of items of the same name that can be stored in one inventory slot.
  stack_size = 64
 
=== order ===
Is used to order items in inventory (when sorting is enabled) and to sort recipes in crafting screen.
  order = "a-b-c"
=== flags ===
Specifies some properties of the item.
  flags = { "goes-to-quickbar" }
Possible values are:
{| class="wikitable"
|-
! Item !! meaning
|-
| goes-to-quickbar  || Item is moved to quick bar by default
|-
| goes-to-main-inventory || Item is moved to main inventory by default
|-
| hidden || Item will not appear in lists of all items such as those for logistics requests, filters, etc.
|}
 
== Optional properties ==
=== place_result ===
Name of [prototype/Entity] that can be built using this item
  place_result = "wooden-chest"
=== fuel_value ===
Amount of energy it gives when used as fuel, reference value is 1 for coal.
Default value is 0 (it can't be used as fuel).
  fuel_value = 0.8
=== healing_value ===
Amount of health restored when used.
Default value is 0 (So it can't be used this way)
  healing_value = 20

Latest revision as of 14:32, 25 October 2024

The prototype docs have moved to a new website with an improved format. This documentation page can now be found here: https://lua-api.factorio.com/latest/prototypes/ItemPrototype.html

This wiki page is no longer updated and will be removed at some point in the future, so please update your browser bookmarks or other links that sent you here. If you'd like to contribute to the new docs, you can leave your feedback on the forums.