diff --git a/nc_sky_inject/init.lua b/nc_sky_inject/init.lua index 4f702e0..370a56b 100644 --- a/nc_sky_inject/init.lua +++ b/nc_sky_inject/init.lua @@ -7,4 +7,30 @@ local ntgr = nodecore.tree_growth_rate function nodecore.tree_growth_rate(pos) return ntgr(pos)*10 -end \ No newline at end of file +end + +nodecore.register_craft({ + label = "break gravel to chips", + action = "pummel", + nodes = { + {match = "nc_terrain:gravel_loose", replace = "nc_terrain:sand"} + }, + items = { + {name = modname .. ":chip", count = 4, scatter = 5} + }, + toolgroups = {cracky = 2}, + itemscatter = 5 + }) + +nodecore.register_craft({ + label = "break packed gravel to chips", + action = "pummel", + nodes = { + {match = "nc_terrain:gravel", replace = "nc_terrain:sand"} + }, + items = { + {name = modname .. ":chip", count = 2, scatter = 5} + }, + toolgroups = {cracky = 2}, + itemscatter = 5 + }) \ No newline at end of file