update several mods and add a few
updated: blox, bobblocks, castle, homedecor, coloredwood, ilights, stainedglass, unifiedbricks
added: cheapie's rgblightstone, digistuff, unifiedmesecons, and solidcolor
2017-02-16 17:05:50 -05:00
|
|
|
minetest.register_node("solidcolor:block", {
|
|
|
|
description = "Solid Color Block",
|
|
|
|
tiles = {"solidcolor_white.png"},
|
|
|
|
is_ground_content = false,
|
|
|
|
groups = {dig_immediate=2,ud_param2_colorable=1},
|
|
|
|
sounds = (default and default.node_sound_stone_defaults()),
|
|
|
|
paramtype2 = "color",
|
updated lots of mods:
blox, bobblocks, homedecor, coloredwood, gloopblocks, moreblocks,
plasticbox, replacer, solidcolor, stained_glass, technic, unifiedbricks,
and unifieddyes (in most of these, it's to upgrade to the Unified Dyes
"extended" palette)
2017-02-26 11:11:19 -05:00
|
|
|
palette = "unifieddyes_palette_extended.png",
|
2017-03-14 02:21:47 -04:00
|
|
|
on_construct = unifieddyes.on_construct,
|
update several mods and add a few
updated: blox, bobblocks, castle, homedecor, coloredwood, ilights, stainedglass, unifiedbricks
added: cheapie's rgblightstone, digistuff, unifiedmesecons, and solidcolor
2017-02-16 17:05:50 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft( {
|
|
|
|
output = "solidcolor:block",
|
|
|
|
recipe = {
|
|
|
|
{ "dye:white", "dye:white"},
|
|
|
|
{ "dye:white", "dye:white"},
|
|
|
|
},
|
|
|
|
})
|
updated lots of mods:
blox, bobblocks, homedecor, coloredwood, gloopblocks, moreblocks,
plasticbox, replacer, solidcolor, stained_glass, technic, unifiedbricks,
and unifieddyes (in most of these, it's to upgrade to the Unified Dyes
"extended" palette)
2017-02-26 11:11:19 -05:00
|
|
|
|
2018-08-25 02:45:03 -04:00
|
|
|
unifieddyes.register_color_craft({
|
|
|
|
output = "solidcolor:block",
|
|
|
|
palette = "extended",
|
|
|
|
type = "shapeless",
|
|
|
|
neutral_node = "solidcolor:block",
|
|
|
|
recipe = {
|
|
|
|
"NEUTRAL_NODE",
|
|
|
|
"MAIN_DYE"
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|