OpenMiner/mods/default/recipes.lua
2020-02-03 11:13:23 +09:00

281 lines
3.3 KiB
Lua

-- Wooden Axe
mod:crafting_recipe {
result = {
id = "default:wooden_axe",
amount = 1
},
pattern = {
"##",
"#|",
" |"
},
keys = {
['#'] = "default:planks",
['|'] = "default:stick",
}
}
-- Wooden Hoe
mod:crafting_recipe {
result = {
id = "default:wooden_hoe",
amount = 1
},
pattern = {
"##",
" |",
" |"
},
keys = {
['#'] = "default:planks",
['|'] = "default:stick",
}
}
-- Wooden Pickaxe
mod:crafting_recipe {
result = {
id = "default:wooden_pickaxe",
amount = 1
},
pattern = {
"###",
" | ",
" | "
},
keys = {
['#'] = "default:planks",
['|'] = "default:stick",
}
}
-- Wooden Shovel
mod:crafting_recipe {
result = {
id = "default:wooden_shovel",
amount = 1
},
pattern = {
"#",
"|",
"|"
},
keys = {
['#'] = "default:planks",
['|'] = "default:stick",
}
}
-- Wooden Sword
mod:crafting_recipe {
result = {
id = "default:wooden_sword",
amount = 1
},
pattern = {
"#",
"#",
"|"
},
keys = {
['#'] = "default:planks",
['|'] = "default:stick",
}
}
-- Stone Axe
mod:crafting_recipe {
result = {
id = "default:stone_axe",
amount = 1
},
pattern = {
"##",
"#|",
" |"
},
keys = {
['#'] = "default:cobblestone",
['|'] = "default:stick",
}
}
-- Stone Hoe
mod:crafting_recipe {
result = {
id = "default:stone_hoe",
amount = 1
},
pattern = {
"##",
" |",
" |"
},
keys = {
['#'] = "default:cobblestone",
['|'] = "default:stick",
}
}
-- Stone Pickaxe
mod:crafting_recipe {
result = {
id = "default:stone_pickaxe",
amount = 1
},
pattern = {
"###",
" | ",
" | "
},
keys = {
['#'] = "default:cobblestone",
['|'] = "default:stick",
}
}
-- Stone Shovel
mod:crafting_recipe {
result = {
id = "default:stone_shovel",
amount = 1
},
pattern = {
"#",
"|",
"|"
},
keys = {
['#'] = "default:cobblestone",
['|'] = "default:stick",
}
}
-- Stone Sword
mod:crafting_recipe {
result = {
id = "default:stone_sword",
amount = 1
},
pattern = {
"#",
"#",
"|"
},
keys = {
['#'] = "default:cobblestone",
['|'] = "default:stick",
}
}
-- Stick
mod:crafting_recipe {
result = {
id = "default:stick",
amount = 4
},
pattern = {
'#',
'#'
},
keys = {['#'] = "default:planks"}
}
-- Planks
mod:crafting_recipe {
result = {
id = "default:planks",
amount = 4
},
pattern = {"#"},
keys = {["#"] = "default:wood"}
}
-- Workbench
mod:crafting_recipe {
result = {
id = "default:workbench",
amount = 1
},
pattern = {
"##",
"##"
},
keys = {["#"] = "default:planks"}
}
-- Furnace
mod:crafting_recipe {
result = {
id = "default:furnace",
amount = 1
},
pattern = {
"###",
"# #",
"###"
},
keys = {["#"] = "default:cobblestone"}
}
-- Glowstone
mod:crafting_recipe {
result = {
id = "default:glowstone",
amount = 1
},
pattern = {"#"},
keys = {['#'] = "default:cobblestone"},
}
-- Iron Ingot
mod:smelting_recipe {
input = {id = "default:iron_ore", amount = 1},
output = {id = "default:iron_ingot", amount = 1}
}
-- Stone
mod:smelting_recipe {
input = {id = "default:cobblestone", amount = 1},
output = {id = "default:stone", amount = 1}
}
-- Glass
mod:smelting_recipe {
input = {id = "default:sand", amount = 1},
output = {id = "default:glass", amount = 1}
}
-- Charcoal
mod:smelting_recipe {
input = {id = "default:wood", amount = 1},
output = {id = "default:charcoal", amount = 1}
}