Configuration
Crafting
Define the crafting system as you like
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Define the crafting system as you like
Config.craftingEnabled = true
Config.recipes = {
["basic_pickaxe"] = {
label = "Basic Pickaxe",
craftingTime = 1200,
itemsRequired = {
{ itemName = "iron", count = 10, refined = false, label = "Iron" },
}
},
["advanced_pickaxe"] = {
label = "Advanced Pickaxe",
craftingTime = 1200,
itemsRequired = {
{ itemName = "titanium", count = 5, refined = true, label = "Titanium" },
{ itemName = "iron", count = 10, refined = true, label = "Iron" },
}
},
}