2017-01-31 23:32:56 +01:00
|
|
|
mcl_core = {}
|
|
|
|
|
2017-02-14 17:17:49 +01:00
|
|
|
-- Repair percentage for toolrepair
|
|
|
|
mcl_core.repair = 0.05
|
|
|
|
|
2021-03-11 15:06:30 +01:00
|
|
|
mcl_autogroup.register_diggroup("handy")
|
2021-03-15 21:55:59 +01:00
|
|
|
mcl_autogroup.register_diggroup("pickaxey", {
|
|
|
|
levels = { "wood", "gold", "stone", "iron", "diamond" }
|
|
|
|
})
|
2021-03-11 15:06:30 +01:00
|
|
|
mcl_autogroup.register_diggroup("axey")
|
|
|
|
mcl_autogroup.register_diggroup("shovely")
|
|
|
|
mcl_autogroup.register_diggroup("shearsy")
|
|
|
|
mcl_autogroup.register_diggroup("shearsy_wool")
|
|
|
|
mcl_autogroup.register_diggroup("shearsy_cobweb")
|
|
|
|
mcl_autogroup.register_diggroup("swordy")
|
|
|
|
mcl_autogroup.register_diggroup("swordy_cobweb")
|
2021-03-21 12:36:33 +01:00
|
|
|
mcl_autogroup.register_diggroup("hoey")
|
2021-03-09 21:43:25 +01:00
|
|
|
|
2017-01-31 23:32:56 +01:00
|
|
|
-- Load files
|
2017-07-07 16:52:28 +02:00
|
|
|
local modpath = minetest.get_modpath("mcl_core")
|
|
|
|
dofile(modpath.."/functions.lua")
|
|
|
|
dofile(modpath.."/nodes_base.lua") -- Simple solid cubic nodes with simple definitions
|
|
|
|
dofile(modpath.."/nodes_liquid.lua") -- Liquids
|
|
|
|
dofile(modpath.."/nodes_cactuscane.lua") -- Cactus and sugar canes
|
|
|
|
dofile(modpath.."/nodes_trees.lua") -- Tree nodes: Wood, Planks, Sapling, Leaves
|
|
|
|
dofile(modpath.."/nodes_glass.lua") -- Glass
|
|
|
|
dofile(modpath.."/nodes_climb.lua") -- Climbable nodes
|
|
|
|
dofile(modpath.."/nodes_misc.lua") -- Other and special nodes
|
|
|
|
dofile(modpath.."/craftitems.lua")
|
|
|
|
dofile(modpath.."/crafting.lua")
|