technology/init.lua
jimy-byerley 1b5f9157bd useless files removed and code updated
file characters was a copy error, sounds/... too. Hit structures's sound is defined in case of `on_punch` function.
2014-06-23 23:10:58 +02:00

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")