forked from VoxeLibre/VoxeLibre
26 lines
507 B
Lua
26 lines
507 B
Lua
|
local S = minetest.get_translator(minetest.get_current_modname())
|
||
|
|
||
|
mcl_bells = {}
|
||
|
|
||
|
local has_mcl_wip = minetest.get_modpath("mcl_wip")
|
||
|
|
||
|
minetest.register_node("mcl_bells:bell", {
|
||
|
description = S("Bell"),
|
||
|
inventory_image = "bell.png",
|
||
|
drawtype = "plantlike",
|
||
|
tiles = {"bell.png"},
|
||
|
stack_max = 64,
|
||
|
selection_box = {
|
||
|
type = "fixed",
|
||
|
fixed = {
|
||
|
-4/16, -6/16, -4/16,
|
||
|
4/16, 7/16, 4/16,
|
||
|
},
|
||
|
},
|
||
|
groups = { pickaxey = 1 }
|
||
|
})
|
||
|
|
||
|
if has_mcl_wip then
|
||
|
mcl_wip.register_wip_item("mcl_bells:bell")
|
||
|
end
|