Prototype/AssemblingMachine: Difference between revisions

From Official Factorio Wiki
Jump to navigation Jump to search
(→‎Optional properties: Added gui_title_key - 0.17.44)
(Removed old prototype docs)
 
(7 intermediate revisions by 3 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/AssemblingMachinePrototype.html https://lua-api.factorio.com/latest/prototypes/AssemblingMachinePrototype.html]
Prototype type: '''assembling-machine'''


An assembling machine - like the assembling machines 1/2/3 in the game, but you can use your own recipe categories. Based on [[Prototype/CraftingMachine]].
</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>
 
== Extensions ==
* [[Prototype/RocketSilo]] '''rocket-silo'''
 
== Mandatory properties ==
This prototype inherits all the properties from [[Prototype/CraftingMachine]].
 
=== ingredient_count ===
'''Type''': [[Types/uint8]]
 
Sets the maximum number of ingredients this machine can craft with. Any recipe with more ingredients than this will be unavailable in this machine.
 
This only counts item ingredients, not fluid ingredients! This means if ingredient count is 2, and the recipe has 2 item ingredients and 1 fluid ingredient, it can still be crafted in the machine.
 
== Optional properties ==
=== fixed_recipe ===
'''Type''': [[Types/string]]
 
'''Default''': ""
 
The preset recipe of this machine. This machine does not show a recipe selection if this is set. The base game uses this for the [[rocket silo]].
 
=== gui_title_key ===
'''Type''': [[Types/string]]
 
'''Default''': ""
 
The locale key of the title of the GUI that is shown when the player opens the assembling machine.

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/AssemblingMachinePrototype.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.