Ajout de plusieurs mods personnalisés
This commit is contained in:
26
nalc_default/init.lua
Normal file
26
nalc_default/init.lua
Normal file
@ -0,0 +1,26 @@
|
||||
local modpath = minetest.get_modpath(minetest.get_current_modname())
|
||||
|
||||
-- Custom Nodes
|
||||
dofile(modpath.."/nodes.lua")
|
||||
|
||||
-- Custom mapgen ore generation
|
||||
dofile(modpath.."/mapgen.lua")
|
||||
|
||||
-- Custom Tools
|
||||
dofile(modpath.."/tools.lua")
|
||||
|
||||
-- Custom Crafts
|
||||
dofile(modpath.."/crafting.lua")
|
||||
|
||||
-- Override items
|
||||
minetest.override_item(
|
||||
"default:stick",
|
||||
{
|
||||
stack_max = 1000
|
||||
})
|
||||
|
||||
minetest.override_item(
|
||||
"default:clay_lump",
|
||||
{
|
||||
stack_max = 200
|
||||
})
|
Reference in New Issue
Block a user