Recipe

@Serializable
data class Recipe(val output: RecipeOutput? = null, val ingredientSymbols: Map<String, String>? = null, val matrix: List<String?>? = null)

Information about a recipe to create the item

Constructors

Link copied to clipboard
constructor(output: RecipeOutput? = null, ingredientSymbols: Map<String, String>? = null, matrix: List<String?>? = null)

Properties

Link copied to clipboard
@SerialName(value = "ingredient_symbols")
val ingredientSymbols: Map<String, String>? = null

Ingredient symbols used for the matrix

Link copied to clipboard
val matrix: List<String?>? = null

Ingredient matrix used to determine cost

Link copied to clipboard
val output: RecipeOutput? = null

Item output by the recipe (usually the same as the item id)