mirror of
https://github.com/mt-mods/homedecor_modpack.git
synced 2025-02-09 22:20:22 +01:00
add hd furniture
This commit is contained in:
parent
5ef8f18970
commit
cab9df2256
@ -1,21 +0,0 @@
|
|||||||
unused_args = false
|
|
||||||
allow_defined_top = true
|
|
||||||
max_comment_line_length = 999
|
|
||||||
|
|
||||||
read_globals = {
|
|
||||||
"DIR_DELIM",
|
|
||||||
"minetest", "core",
|
|
||||||
"unpack",
|
|
||||||
"dump",
|
|
||||||
table = { fields = { "copy", "getn" } },
|
|
||||||
"vector", "nodeupdate",
|
|
||||||
"VoxelManip", "VoxelArea",
|
|
||||||
"PseudoRandom", "ItemStack",
|
|
||||||
"default",
|
|
||||||
"unifieddyes",
|
|
||||||
"homedecor",
|
|
||||||
}
|
|
||||||
|
|
||||||
globals = {
|
|
||||||
}
|
|
||||||
|
|
@ -5,16 +5,21 @@ local ob_cbox = {
|
|||||||
fixed = { -0.5, -0.5, 0, 0.5, 0.5, 0.5 }
|
fixed = { -0.5, -0.5, 0, 0.5, 0.5, 0.5 }
|
||||||
}
|
}
|
||||||
|
|
||||||
minetest.register_node(":homedecor:openframe_bookshelf", {
|
local wood_tex = "default_wood.png"
|
||||||
|
if not minetest.get_modpath("default") then wood_tex = "[combine:16x16^[noalpha^[colorize:#654321" end
|
||||||
|
|
||||||
|
homedecor.register("openframe_bookshelf", {
|
||||||
description = S("Bookshelf (open-frame)"),
|
description = S("Bookshelf (open-frame)"),
|
||||||
drawtype = "mesh",
|
drawtype = "mesh",
|
||||||
mesh = "homedecor_openframe_bookshelf.obj",
|
mesh = "homedecor_openframe_bookshelf.obj",
|
||||||
tiles = {
|
tiles = {
|
||||||
"homedecor_openframe_bookshelf_books.png",
|
"homedecor_openframe_bookshelf_books.png",
|
||||||
"default_wood.png"
|
wood_tex
|
||||||
},
|
},
|
||||||
groups = {choppy=3,oddly_breakable_by_hand=2,flammable=3},
|
groups = {choppy=3,oddly_breakable_by_hand=2,flammable=3},
|
||||||
sounds = default.node_sound_wood_defaults(),
|
_sound_def = {
|
||||||
|
key = "node_sound_wood_defaults",
|
||||||
|
},
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
selection_box = ob_cbox,
|
selection_box = ob_cbox,
|
||||||
@ -24,10 +29,12 @@ minetest.register_node(":homedecor:openframe_bookshelf", {
|
|||||||
homedecor.register("wall_shelf", {
|
homedecor.register("wall_shelf", {
|
||||||
description = S("Wall Shelf"),
|
description = S("Wall Shelf"),
|
||||||
tiles = {
|
tiles = {
|
||||||
"default_wood.png",
|
wood_tex,
|
||||||
|
},
|
||||||
|
groups = { snappy = 3, dig_tree = 2 },
|
||||||
|
_sound_def = {
|
||||||
|
key = "node_sound_wood_defaults",
|
||||||
},
|
},
|
||||||
groups = { snappy = 3 },
|
|
||||||
sounds = default.node_sound_wood_defaults(),
|
|
||||||
node_box = {
|
node_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = {
|
fixed = {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
name = homedecor_furniture
|
name = homedecor_furniture
|
||||||
description = Homedecor mod: furniture
|
description = Homedecor mod: furniture
|
||||||
depends = homedecor_common, default, unifieddyes, wool
|
depends = homedecor_common
|
||||||
optional_depends = moreblocks, technic, bucket
|
optional_depends = moreblocks, technic, bucket, default, unifieddyes, wool
|
||||||
|
Loading…
Reference in New Issue
Block a user