2017-01-18 19:47:51 +01:00
|
|
|
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(),
|
2017-01-19 05:51:30 +10:00
|
|
|
})
|
|
|
|
|
2017-01-23 00:22:13 +01:00
|
|
|
minetest.register_node("decoblocks:moss_stonebrick", {
|
|
|
|
description = "Mossy Stone Brick",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
place_param2 = 0,
|
|
|
|
tiles = {"decoblocks_moss_stone_brick.png"},
|
|
|
|
is_ground_content = false,
|
|
|
|
groups = {cracky = 2, stone = 1},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
2017-01-19 05:51:30 +10:00
|
|
|
|
|
|
|
minetest.register_node("decoblocks:scarecrow", {
|
|
|
|
description = "Scarecrow",
|
|
|
|
drawtype = "mesh",
|
|
|
|
mesh = "scarecrow.obj",
|
2017-01-22 16:59:13 +01:00
|
|
|
paramtype2 = "facedir",
|
2017-01-19 05:51:30 +10:00
|
|
|
tiles = {
|
|
|
|
"decoblocks_scarecrow.png",
|
|
|
|
},
|
|
|
|
visual_scale = 0.5,
|
2017-01-22 16:59:13 +01:00
|
|
|
wield_image = "decoblocks_scarecrow_item.png",
|
|
|
|
wield_scale = {x=1.0, y=1.0, z=1.0},
|
2017-01-19 05:51:30 +10:00
|
|
|
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}
|
|
|
|
},
|
2017-01-18 22:26:53 +01:00
|
|
|
inventory_image = "decoblocks_scarecrow_item.png",
|
2017-01-19 05:51:30 +10:00
|
|
|
groups = {choppy = 1, oddly_breakable_by_hand = 1},
|
|
|
|
sounds = default.node_sound_wood_defaults()
|
2017-01-19 21:08:15 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
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",
|
2017-01-21 07:56:31 +10:00
|
|
|
paramtype2 = "facedir",
|
2017-01-19 21:08:15 +01:00
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.3, -0.5, -0.3, 0.3, 0.0, 0.3}
|
|
|
|
},
|
|
|
|
collision_box = {
|
|
|
|
type = "fixed",
|
2017-01-19 22:31:22 +01:00
|
|
|
fixed = {-0.3, -0.5, -0.3, 0.3, 0.0, 0.3}
|
2017-01-19 21:08:15 +01:00
|
|
|
},
|
|
|
|
inventory_image = "decoblocks_skull_item.png",
|
|
|
|
groups = {choppy = 1, oddly_breakable_by_hand = 1},
|
|
|
|
sounds = default.node_sound_wood_defaults()
|
2017-01-19 22:23:56 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
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",
|
2017-01-19 22:31:22 +01:00
|
|
|
fixed = {-0.3, -0.5, -0.3, 0.3, 0.5, 0.3}
|
2017-01-19 22:23:56 +01:00
|
|
|
},
|
|
|
|
collision_box = {
|
|
|
|
type = "fixed",
|
2017-01-19 22:31:22 +01:00
|
|
|
fixed = {-0.3, -0.5, -0.3, 0.3, 0.5, 0.3}
|
2017-01-19 22:23:56 +01:00
|
|
|
},
|
2017-01-23 20:34:12 +01:00
|
|
|
groups = {cracky = 2, oddly_breakable_by_hand = 1},
|
2017-01-20 15:49:29 +01:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
2017-01-19 22:23:56 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
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",
|
2017-01-19 22:31:22 +01:00
|
|
|
fixed = {-0.3, -0.5, -0.3, 0.3, 0.5, 0.3}
|
2017-01-19 22:23:56 +01:00
|
|
|
},
|
|
|
|
collision_box = {
|
|
|
|
type = "fixed",
|
2017-01-19 22:31:22 +01:00
|
|
|
fixed = {-0.3, -0.5, -0.3, 0.3, 0.5, 0.3}
|
2017-01-19 22:23:56 +01:00
|
|
|
},
|
2017-01-20 15:49:29 +01:00
|
|
|
groups = {cracky = 2, stone = 1},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
2017-01-23 20:34:12 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
minetest.register_node("decoblocks:old_skeleton", {
|
|
|
|
description = "Old Human Skeleton",
|
|
|
|
drawtype = "mesh",
|
|
|
|
mesh = "old_skeleton.obj",
|
|
|
|
tiles = {
|
|
|
|
"old_skeleton.png",
|
|
|
|
},
|
|
|
|
visual_scale = 0.5,
|
|
|
|
wield_image = "decoblocks_skull_item.png",
|
|
|
|
wield_scale = {x=1.0, y=1.0, z=1.0},
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "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()
|
2017-01-18 19:47:51 +01:00
|
|
|
})
|