1b5f9157bd
file characters was a copy error, sounds/... too. Hit structures's sound is defined in case of `on_punch` function.
30 lines
582 B
Lua
30 lines
582 B
Lua
|
|
technology ={}
|
|
|
|
-- crafting
|
|
|
|
minetest.register_craft({
|
|
type = "cooking",
|
|
output = "technology:plastic",
|
|
recipe = "farming:string",
|
|
})
|
|
|
|
--node defs
|
|
|
|
minetest.register_craftitem("technology:plastic", {
|
|
description = "plastic",
|
|
inventory_image = "plastic_item.png",
|
|
})
|
|
|
|
dofile(minetest.get_modpath("technology").."/tools.lua")
|
|
|
|
dofile(minetest.get_modpath("technology").."/structures.lua")
|
|
|
|
dofile(minetest.get_modpath("technology").."/electric_nodes.lua")
|
|
|
|
dofile(minetest.get_modpath("technology").."/aircraft.lua")
|
|
|
|
dofile(minetest.get_modpath("technology").."/screen.lua")
|
|
|
|
|