Package-level declarations

Types

Link copied to clipboard
class ShapedRecipe(val id: Identifier, pattern: List<String>, ingredientMap: Map<Char, Pair<Identifier, Int>>, result: MacrocosmItem, amount: Int = 1) : MacrocosmRecipe
Link copied to clipboard
class ShapelessRecipe(val id: Identifier, ingredients: List<Pair<Identifier, Int>>, result: MacrocosmItem, amount: Int) : MacrocosmRecipe

Functions

Link copied to clipboard
fun shapedRecipe(id: String, result: MacrocosmItem, amount: Int, matrix: List<String>, vararg ingredients: Pair<Char, Pair<Identifier, Int>>): MacrocosmRecipe
Link copied to clipboard
fun shapelessRecipe(id: String, result: MacrocosmItem, amount: Int, vararg ingredients: Pair<Identifier, Int>): MacrocosmRecipe