133 lines
3.1 KiB
Lua
Raw Normal View History

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
})
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}
},
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:02:15 +10:00
paramtype = "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-20 15:49:29 +01:00
groups = {cracky = 2, stone = 1},
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-18 19:47:51 +01:00
})