Aaron Suen 4271290487 New stone chip/tool textures.
Make the chip darker, like loose cobble it comes from instead
of smooth stone.  Also make the chip larger and sit lower in
stacks and on shelves (e.g. against wooden base) to make it look
better and easier to see.

Make tool tips correspondingly darker too.
2019-04-06 22:20:08 -04:00

40 lines
1.0 KiB
Lua

-- LUALOCALS < ---------------------------------------------------------
local minetest, nodecore
= minetest, nodecore
-- LUALOCALS > ---------------------------------------------------------
local modname = minetest.get_current_modname()
minetest.register_craftitem(modname .. ":chip", {
description = "Stone Chip",
inventory_image = modname .. "_stone.png",
wield_image = "[combine:16x16:0,2=" .. modname .. "_stone.png",
wield_scale = {x = 1.25, y = 1.25, z = 1.75},
sounds = nodecore.sounds("nc_terrain_stony")
})
nodecore.register_craft({
label = "break cobble to chips",
action = "pummel",
nodes = {
{match = "nc_terrain:cobble_loose", replace = "nc_terrain:gravel"}
},
items = {
{name = modname .. ":chip", count = 4, scatter = 5}
},
toolgroups = {cracky = 2},
itemscatter = 5
})
nodecore.register_craft({
label = "repack chips to cobble",
action = "pummel",
nodes = {
{
match = {name = modname .. ":chip", count = 8},
replace = "nc_terrain:cobble_loose"
}
},
toolgroups = {thumpy = 2}
})