Prototype/Recipe: Difference between revisions

From Official Factorio Wiki
Jump to navigation Jump to search
m (Fixed Types/unsigned)
(Removed old prototype docs)
Tag: Replaced
 
(75 intermediate revisions by 11 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/RecipePrototype.html https://lua-api.factorio.com/latest/prototypes/RecipePrototype.html]
A recipe. It can be a crafting recipe, a smelting recipe, or a custom type of recipe (see [[Prototype/RecipeCategory]]).


== 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''': [[Types/string]]
 
Must be "recipe".
 
=== name ===
'''Type''': [[Types/string]]
 
The unique name of this recipe.
 
=== ingredients ===
'''Type''': [[Types/table]]
 
A table containing ingredient names and counts. For example:
<pre>
ingredients = {{"iron-stick", 2}, {"iron-plate", 3}}
</pre>
 
=== result ===
'''Type''': [[Types/string]]
 
The item created by this recipe. Must be the name of an item, such as "iron-gear-wheel".
 
=== result_count ===
'''Type''': [[Types/unsigned]]
 
Optional. The number of items created by this recipe. The default is 1.
 
=== category ===
'''Type''': [[Types/string]]
 
Optional. The category of this recipe. The default is "crafting". Built-in categories are "crafting" and "smelting"; mods can add other categories. See [[Prototype/RecipeCategory]].
 
=== energy_required ===
'''Type''': [[Types/unsigned]]
 
Optional. The amount of time it takes to make this recipe. The default appears to be 0.5 (confirm).
 
For crafting recipes, this is the number of seconds it takes to craft.
For smelting recipes, this is a percentage of the default smelting time. Most smelting recipes use 100, but steel plates use 500.
 
=== enabled ===
'''Type''': [[Types/string]] (!)
 
Optional. This can be "false" to disable the recipe at the start of the game, or "true" to leave it enabled. The default is "true".
 
If your recipe is unlocked by a technology, you should set this to "false".

Latest revision as of 14:33, 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/RecipePrototype.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.