mirror of
https://github.com/minetest-mods/mesecons.git
synced 2024-11-09 11:50:18 +01:00
44 lines
1.0 KiB
Lua
44 lines
1.0 KiB
Lua
local S = minetest.get_translator(minetest.get_current_modname())
|
|
|
|
-- Glue and fiber
|
|
minetest.register_craftitem("mesecons_materials:glue", {
|
|
image = "mesecons_glue.png",
|
|
on_place_on_ground = minetest.craftitem_place_item,
|
|
description = S("Glue"),
|
|
})
|
|
|
|
minetest.register_craftitem("mesecons_materials:fiber", {
|
|
image = "mesecons_fiber.png",
|
|
on_place_on_ground = minetest.craftitem_place_item,
|
|
description = S("Fiber"),
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "mesecons_materials:glue 2",
|
|
type = "cooking",
|
|
recipe = "group:sapling",
|
|
cooktime = 2
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "mesecons_materials:fiber 6",
|
|
type = "cooking",
|
|
recipe = "mesecons_materials:glue",
|
|
cooktime = 4
|
|
})
|
|
|
|
-- Silicon
|
|
minetest.register_craftitem("mesecons_materials:silicon", {
|
|
image = "mesecons_silicon.png",
|
|
on_place_on_ground = minetest.craftitem_place_item,
|
|
description = S("Silicon"),
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "mesecons_materials:silicon 4",
|
|
recipe = {
|
|
{"group:sand", "group:sand"},
|
|
{"group:sand", "mesecons_gamecompat:steel_ingot"},
|
|
}
|
|
})
|