2016-04-01 20:02:19 -04:00
|
|
|
|
update castles, areas, homedecor, plantlife,
gloopblocks, hotbar, inspector, maptools, mesecons,
moreblocks, moreores, technic, teleport_request, and
worldedit
switched to caverealms_lite (with minor fixes by me)
switched to CWz's fork of player_textures
The homedecor update brings in the big split, and will
require you to re-enable all modpack components in
order to avoid loss of content.
2019-04-24 18:59:36 -04:00
|
|
|
local S = homedecor.gettext
|
2016-04-01 20:02:19 -04:00
|
|
|
|
|
|
|
homedecor.register("bars", {
|
|
|
|
description = S("Bars"),
|
Huge update - lots of mods:
areas, biome_lib, blox, bobblocks, boost_cart, homedecor, mobs,
coloredwood, ilights, inbox, item_tweaks, moreblocks, moreores,
pipeworks, plasticbox, signs_lib, stainedglass, roads, unifieddyes,
vines, worldedit, xban2, maybe some others I didn't think about ;-)
2017-01-31 19:39:31 -05:00
|
|
|
tiles = { { name = "homedecor_generic_metal.png^[transformR270", color = homedecor.color_black } },
|
2016-04-01 20:02:19 -04:00
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -0.5, -0.50, -0.10, -0.4, 0.50, 0.10 },
|
|
|
|
{ -0.1, -0.50, -0.10, 0.1, 0.50, 0.10 },
|
|
|
|
{ 0.4, -0.50, -0.10, 0.5, 0.50, 0.10 },
|
|
|
|
{ -0.5, -0.50, -0.05, 0.5, -0.45, 0.05 },
|
|
|
|
{ -0.5, 0.45, -0.05, 0.5, 0.50, 0.05 },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -0.5, -0.5, -0.1, 0.5, 0.5, 0.1 },
|
|
|
|
},
|
|
|
|
groups = {cracky=3},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
--L Binding Bars
|
|
|
|
homedecor.register("L_binding_bars", {
|
|
|
|
description = S("Binding Bars"),
|
Huge update - lots of mods:
areas, biome_lib, blox, bobblocks, boost_cart, homedecor, mobs,
coloredwood, ilights, inbox, item_tweaks, moreblocks, moreores,
pipeworks, plasticbox, signs_lib, stainedglass, roads, unifieddyes,
vines, worldedit, xban2, maybe some others I didn't think about ;-)
2017-01-31 19:39:31 -05:00
|
|
|
tiles = { { name = "homedecor_generic_metal.png^[transformR270", color = homedecor.color_black } },
|
2016-04-01 20:02:19 -04:00
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -0.10, -0.50, -0.50, 0.10, 0.50, -0.40 },
|
|
|
|
{ -0.15, -0.50, -0.15, 0.15, 0.50, 0.15 },
|
|
|
|
{ 0.40, -0.50, -0.10, 0.50, 0.50, 0.10 },
|
|
|
|
{ 0.00, -0.50, -0.05, 0.50, -0.45, 0.05 },
|
|
|
|
{ -0.05, -0.50, -0.50, 0.05, -0.45, 0.00 },
|
|
|
|
{ 0.00, 0.45, -0.05, 0.50, 0.50, 0.05 },
|
|
|
|
{ -0.05, 0.45, -0.50, 0.05, 0.50, 0.00 },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
groups = {cracky=3},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
local chain_cbox = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-1/2, -1/2, 1/4, 1/2, 1/2, 1/2},
|
|
|
|
}
|
|
|
|
|
|
|
|
homedecor.register("chains", {
|
|
|
|
description = S("Chains"),
|
|
|
|
mesh = "forniture_chains.obj",
|
Huge update - lots of mods:
areas, biome_lib, blox, bobblocks, boost_cart, homedecor, mobs,
coloredwood, ilights, inbox, item_tweaks, moreblocks, moreores,
pipeworks, plasticbox, signs_lib, stainedglass, roads, unifieddyes,
vines, worldedit, xban2, maybe some others I didn't think about ;-)
2017-01-31 19:39:31 -05:00
|
|
|
tiles = { { name = "homedecor_generic_metal.png", color = homedecor.color_black } },
|
2016-04-01 20:02:19 -04:00
|
|
|
inventory_image="forniture_chains_inv.png",
|
|
|
|
selection_box = chain_cbox,
|
|
|
|
walkable = false,
|
|
|
|
groups = {cracky=3},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_alias("3dforniture:bars", "homedecor:bars")
|
|
|
|
minetest.register_alias("3dforniture:L_binding_bars", "homedecor:L_binding_bars")
|
|
|
|
minetest.register_alias("3dforniture:chains", "homedecor:chains")
|
|
|
|
|
|
|
|
minetest.register_alias('bars', 'homedecor:bars')
|
|
|
|
minetest.register_alias('binding_bars', 'homedecor:L_binding_bars')
|
|
|
|
minetest.register_alias('chains', 'homedecor:chains')
|