[Space Age] Quality Recipes
Posted: Mon Jan 27, 2025 2:43 pm
I want to add a feature to my mod which increases/decreases the quality of the inserted item(s) using a recipe, but this is currently impossible since I can't filter the quality level of an item or output a specific item quality. I propose that this becomes possible.
Potential Implementation Techniques:
Fixed Quality Filters
Variable Quality Filters
Fixed/Variable Quality Filters
Potential Implementation Techniques:
Fixed Quality Filters
Code: Select all
Recipe.ingredients = {{type = "item", name = "iron-gear-wheel", amount = 1, quality = "normal"}}
Recipe.results = {{type = "item", name = "iron-gear-wheel", amount = 1, quality = "uncommon"}}
Code: Select all
Recipe.ingredients = {{type = "item", name = "iron-gear-wheel", amount = 1}}
Recipe.results = {{type = "item", name = "iron-gear-wheel", amount = 1, quality = "+1"}}
Code: Select all
Recipe.ingredients = {{type = "item", name = "iron-gear-wheel", amount = 1, quality = "normal"}}
Recipe.results = {{type = "item", name = "iron-gear-wheel", amount = 1, quality = "+1"}}