Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

How does it select recipe when multiple are available?

For instance, if we put 2 Glass + 2 Rock + 2 Metal into an Assembler, they are possible to synthesize Transistor (2 Glass + 1 Rock + 1 Metal) or Oven (2 Rock + 2 Metal). In fact this will lead to Oven; if the output were already taken with some Transistor, it just synthesize nothing.

There is a priority system in the recipes, so there is never a point where the ingredients required to craft something will craft something else that only takes a subset of those ingredients, as long as you put only the right amount of ingredients into the crafter. The issue with the transistor recipe making an oven comes from that the oven has higher priority, which is an issue when you put 2 rock and 2 metal into it, but if you only put one rock and one metal into the crafter, it crafts the transistor as normal.