minetest.register_node("decoblocks:old_stone_tiles", { description = "Old Stone Tiles", tiles = {"decoblocks_old_stone_tiles.png"}, groups = {cracky = 3, stone = 2}, sounds = default.node_sound_stone_defaults(), }) minetest.register_node("decoblocks:old_stone_tiles_with_dirt", { description = "Old Stone Tiles With Dirt", tiles = {"decoblocks_old_stone_tiles_with_dirt.png"}, groups = {cracky = 3, stone = 2}, sounds = default.node_sound_stone_defaults(), }) minetest.register_node("decoblocks:scarecrow", { description = "Scarecrow", drawtype = "mesh", mesh = "scarecrow.obj", tiles = { "decoblocks_scarecrow.png", }, visual_scale = 0.5, wield_scale = {x=0.5, y=0.5, z=0.5}, paramtype = "light", selection_box = { type = "fixed", fixed = {-0.3, -0.5, -0.3, 0.3, 1, 0.3} }, collision_box = { type = "fixed", fixed = {-0.3, -0.5, -0.3, 0.3, 1, 0.3} }, inventory_image = "decoblocks_scarecrow_item.png", groups = {choppy = 1, oddly_breakable_by_hand = 1}, sounds = default.node_sound_wood_defaults() }) minetest.register_node("decoblocks:hanging_flower", { description = "Hanging Flower", drawtype = "mesh", mesh = "hangingflower.obj", tiles = { "hanging_flower.png", }, visual_scale = 0.5, wield_scale = {x=0.5, y=0.5, z=0.5}, paramtype = "light", selection_box = { type = "fixed", fixed = {-0.3, -0.5, -0.3, 0.3, 1, 0.3} }, collision_box = { type = "fixed", fixed = {-0.3, -0.5, -0.3, 0.3, 1, 0.3} }, inventory_image = "hanging_flower_item.png", groups = {choppy = 1, oddly_breakable_by_hand = 1}, sounds = default.node_sound_wood_defaults() }) minetest.register_node("decoblocks:human_skull", { description = "Human Skull", drawtype = "mesh", mesh = "human_skull.obj", tiles = { "human_skull.png", }, visual_scale = 0.5, wield_image = "decoblocks_skull_item.png", wield_scale = {x=1.0, y=1.0, z=1.0}, paramtype = "light", paramtype = "facedir", selection_box = { type = "fixed", fixed = {-0.3, -0.5, -0.3, 0.3, 0.0, 0.3} }, collision_box = { type = "fixed", fixed = {-0.3, -0.5, -0.3, 0.3, 0.0, 0.3} }, inventory_image = "decoblocks_skull_item.png", groups = {choppy = 1, oddly_breakable_by_hand = 1}, sounds = default.node_sound_wood_defaults() }) minetest.register_node("decoblocks:vase", { description = "Vase", drawtype = "mesh", mesh = "vase.obj", tiles = { "vase.png", }, visual_scale = 0.5, wield_scale = {x=0.5, y=0.5, z=0.5}, paramtype = "light", selection_box = { type = "fixed", fixed = {-0.3, -0.5, -0.3, 0.3, 0.5, 0.3} }, collision_box = { type = "fixed", fixed = {-0.3, -0.5, -0.3, 0.3, 0.5, 0.3} }, groups = {cracky = 2, stone = 1}, sounds = default.node_sound_stone_defaults(), }) minetest.register_node("decoblocks:Ancient_vase", { description = "Ancient Vase", drawtype = "mesh", mesh = "vase.obj", tiles = { "Ancient_vase.png", }, visual_scale = 0.5, wield_scale = {x=0.5, y=0.5, z=0.5}, paramtype = "light", selection_box = { type = "fixed", fixed = {-0.3, -0.5, -0.3, 0.3, 0.5, 0.3} }, collision_box = { type = "fixed", fixed = {-0.3, -0.5, -0.3, 0.3, 0.5, 0.3} }, groups = {cracky = 2, stone = 1}, sounds = default.node_sound_stone_defaults(), })