Prototype/ItemWithInventory

From Official Factorio Wiki
Revision as of 17:18, 3 March 2020 by Bilka (talk | contribs) (→‎Differing defaults: 0.18.10)
Jump to navigation Jump to search

Template:Prototype parent The inventory allows setting player defined filters similar to the quickbar and cargo wagon inventories.

Template:Prototype TOC

Extensions

Mandatory properties

This prototype inherits all the properties from Prototype/ItemWithLabel.

Template:Prototype property The inventory size of the item.

Optional properties

Template:Prototype property A list of explicit item names to be used as filters.

 item_filters = {"iron-ore", "copper-ore", "coal", "stone"}

Template:Prototype property A list of explicit item group names to be used as filters.

 item_group_filters = {"storage", "belt"}

Template:Prototype property A list of explicit item subgroup names to be used as filters.

 item_subgroup_filters = {"capsule", "tool"}

Template:Prototype property This determines how filters are applied. If no filters are defined this is automatically set to "none".

 filter_mode = "blacklist" -- or "whitelist" if you want whitelisting

Template:Prototype property The locale key used when the player attempts to put an item that doesn't match the filter rules into the item-with-inventory.

Template:Prototype property When true, this item-with-inventory will extend the inventory it sits in by default. This is a runtime property on the result item that can be changed through the Lua interface and only determines the initial value.

Template:Prototype property The insertion priority mode for this item. This determines if items are first attempted to be put into this items inventory if the item extends the inventory it sits in when items are put into the parent inventory.

 insertion_priority_mode = "never"

Possible values are:

Flag meaning
default Items are inserted into this item-with-inventory only if they match the whitelist defined in the prototype for the item and whitelist is used.
never Items are never inserted into this item-with-inventory except explicitly by the player or script
always All items first try to be inserted into this item-with-inventory
when_manually_filtered When the inventory contains filters that match the item-to-be-inserted then try to put it into this item before the inventory this item resides in

Differing defaults

stack_size

Must be 1.