mirror of
https://github.com/minetest-mods/BobBlocks.git
synced 2025-01-08 09:00:32 +01:00
is_ground_content = false
This commit is contained in:
parent
84e05d2a2a
commit
f0fdcb4e08
15
blocks.lua
15
blocks.lua
@ -41,7 +41,7 @@ minetest.register_node("bobblocks:block", {
|
|||||||
paramtype2 = "color",
|
paramtype2 = "color",
|
||||||
palette = "unifieddyes_palette.png",
|
palette = "unifieddyes_palette.png",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
is_ground_content = true,
|
is_ground_content = false,
|
||||||
sounds = default.node_sound_glass_defaults(),
|
sounds = default.node_sound_glass_defaults(),
|
||||||
light_source = LIGHT_MAX-0,
|
light_source = LIGHT_MAX-0,
|
||||||
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3, ud_param2_colorable = 1},
|
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3, ud_param2_colorable = 1},
|
||||||
@ -60,7 +60,7 @@ minetest.register_node("bobblocks:block_off", {
|
|||||||
tiles = {"bobblocks_block.png^[opacity:"..bobblocks.opacity},
|
tiles = {"bobblocks_block.png^[opacity:"..bobblocks.opacity},
|
||||||
paramtype2 = "color",
|
paramtype2 = "color",
|
||||||
palette = "unifieddyes_palette.png",
|
palette = "unifieddyes_palette.png",
|
||||||
is_ground_content = true,
|
is_ground_content = false,
|
||||||
use_texture_alpha = true,
|
use_texture_alpha = true,
|
||||||
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3,not_in_creative_inventory=1, ud_param2_colorable = 1},
|
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3,not_in_creative_inventory=1, ud_param2_colorable = 1},
|
||||||
drop = "bobblocks:block",
|
drop = "bobblocks:block",
|
||||||
@ -83,7 +83,7 @@ minetest.register_node("bobblocks:pole", {
|
|||||||
paramtype2 = "color",
|
paramtype2 = "color",
|
||||||
palette = "unifieddyes_palette.png",
|
palette = "unifieddyes_palette.png",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
is_ground_content = true,
|
is_ground_content = false,
|
||||||
sounds = default.node_sound_glass_defaults(),
|
sounds = default.node_sound_glass_defaults(),
|
||||||
light_source = LIGHT_MAX-0,
|
light_source = LIGHT_MAX-0,
|
||||||
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3, ud_param2_colorable = 1},
|
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3, ud_param2_colorable = 1},
|
||||||
@ -104,7 +104,7 @@ minetest.register_node("bobblocks:pole_off", {
|
|||||||
paramtype2 = "color",
|
paramtype2 = "color",
|
||||||
palette = "unifieddyes_palette.png",
|
palette = "unifieddyes_palette.png",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
is_ground_content = true,
|
is_ground_content = false,
|
||||||
use_texture_alpha = true,
|
use_texture_alpha = true,
|
||||||
sounds = default.node_sound_glass_defaults(),
|
sounds = default.node_sound_glass_defaults(),
|
||||||
light_source = LIGHT_MAX-10,
|
light_source = LIGHT_MAX-10,
|
||||||
@ -127,7 +127,6 @@ minetest.register_node("bobblocks:btm", {
|
|||||||
"bobblocks_btm_sides.png", "bobblocks_btm_sides.png", "bobblocks_btm.png"},
|
"bobblocks_btm_sides.png", "bobblocks_btm_sides.png", "bobblocks_btm.png"},
|
||||||
inventory_image = "bobblocks_btm.png",
|
inventory_image = "bobblocks_btm.png",
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
material = minetest.digprop_dirtlike(1.0),
|
|
||||||
legacy_facedir_simple = true,
|
legacy_facedir_simple = true,
|
||||||
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3,not_in_creative_inventory=1},
|
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3,not_in_creative_inventory=1},
|
||||||
})
|
})
|
||||||
@ -140,7 +139,7 @@ minetest.register_node("bobblocks:wavyblock", {
|
|||||||
paramtype2 = "color",
|
paramtype2 = "color",
|
||||||
palette = "unifieddyes_palette.png",
|
palette = "unifieddyes_palette.png",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
is_ground_content = true,
|
is_ground_content = false,
|
||||||
sounds = default.node_sound_glass_defaults(),
|
sounds = default.node_sound_glass_defaults(),
|
||||||
light_source = LIGHT_MAX-0,
|
light_source = LIGHT_MAX-0,
|
||||||
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3, ud_param2_colorable = 1},
|
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3, ud_param2_colorable = 1},
|
||||||
@ -160,7 +159,7 @@ minetest.register_node("bobblocks:wavyblock_off", {
|
|||||||
tiles = {"bobblocks_wavyblock.png^[opacity:"..bobblocks.opacity},
|
tiles = {"bobblocks_wavyblock.png^[opacity:"..bobblocks.opacity},
|
||||||
paramtype2 = "color",
|
paramtype2 = "color",
|
||||||
palette = "unifieddyes_palette.png",
|
palette = "unifieddyes_palette.png",
|
||||||
is_ground_content = true,
|
is_ground_content = false,
|
||||||
use_texture_alpha = true,
|
use_texture_alpha = true,
|
||||||
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3,not_in_creative_inventory=1, ud_param2_colorable = 1},
|
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3,not_in_creative_inventory=1, ud_param2_colorable = 1},
|
||||||
drop = "bobblocks:wavyblock",
|
drop = "bobblocks:wavyblock",
|
||||||
@ -183,7 +182,7 @@ minetest.register_node("bobblocks:wavypole", {
|
|||||||
paramtype2 = "color",
|
paramtype2 = "color",
|
||||||
palette = "unifieddyes_palette.png",
|
palette = "unifieddyes_palette.png",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
is_ground_content = true,
|
is_ground_content = false,
|
||||||
sounds = default.node_sound_glass_defaults(),
|
sounds = default.node_sound_glass_defaults(),
|
||||||
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3, ud_param2_colorable = 1},
|
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3, ud_param2_colorable = 1},
|
||||||
after_dig_node = unifieddyes.after_dig_node,
|
after_dig_node = unifieddyes.after_dig_node,
|
||||||
|
@ -37,7 +37,7 @@ minetest.register_node("bobblocks:health_off", {
|
|||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
legacy_facedir_simple = true,
|
legacy_facedir_simple = true,
|
||||||
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3},
|
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3},
|
||||||
is_ground_content = true,
|
is_ground_content = false,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
climbable = false,
|
climbable = false,
|
||||||
mesecons = {conductor={
|
mesecons = {conductor={
|
||||||
@ -53,7 +53,7 @@ minetest.register_node("bobblocks:health_on", {
|
|||||||
legacy_facedir_simple = true,
|
legacy_facedir_simple = true,
|
||||||
light_source = LIGHT_MAX-0,
|
light_source = LIGHT_MAX-0,
|
||||||
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3},
|
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3},
|
||||||
is_ground_content = true,
|
is_ground_content = false,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
climbable = false,
|
climbable = false,
|
||||||
drop = "bobblocks:health_off",
|
drop = "bobblocks:health_off",
|
||||||
|
Loading…
Reference in New Issue
Block a user