Mineclonia/mods/ITEMS/mcl_core/init.lua

18 lines
685 B
Lua
Raw Normal View History

2017-01-31 22:32:56 +00:00
mcl_core = {}
2017-02-14 16:17:49 +00:00
-- Repair percentage for toolrepair
mcl_core.repair = 0.05
2017-01-31 22:32:56 +00:00
-- Load files
2017-07-07 14:52:28 +00: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")