mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-07-22 15:15:03 -04:00
Changed biomes, added mesecons.
This commit is contained in:
parent
83db51930a
commit
000484c529
266 changed files with 7506 additions and 236 deletions
41
mods/mesecons/mesecons_materials/init.lua
Normal file
41
mods/mesecons/mesecons_materials/init.lua
Normal file
|
@ -0,0 +1,41 @@
|
|||
--GLUE
|
||||
minetest.register_craftitem("mesecons_materials:glue", {
|
||||
image = "jeija_glue.png",
|
||||
on_place_on_ground = minetest.craftitem_place_item,
|
||||
description="Glue",
|
||||
})
|
||||
|
||||
minetest.register_craftitem("mesecons_materials:fiber", {
|
||||
image = "jeija_fiber.png",
|
||||
on_place_on_ground = minetest.craftitem_place_item,
|
||||
description="Fiber",
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mesecons_materials:glue 2",
|
||||
type = "cooking",
|
||||
recipe = "default: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 = "jeija_silicon.png",
|
||||
on_place_on_ground = minetest.craftitem_place_item,
|
||||
description="Silicon",
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mesecons_materials:silicon 4",
|
||||
recipe = {
|
||||
{"default:sand", "default:sand"},
|
||||
{"default:sand", "default:steel_ingot"},
|
||||
}
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue