mirror of
https://github.com/minetest-mods/ropes.git
synced 2024-11-24 08:23:47 +01:00
parent
922cc1b6aa
commit
cc543689d0
@ -56,6 +56,7 @@ minetest.register_node("ropes:wood_bridge", {
|
|||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
|
is_ground_content = false,
|
||||||
groups = {choppy = 2, flammable = 2, oddly_breakable_by_hand = 1, flow_through = 1, fence = 1, wall = 1},
|
groups = {choppy = 2, flammable = 2, oddly_breakable_by_hand = 1, flow_through = 1, fence = 1, wall = 1},
|
||||||
sounds = default.node_sound_wood_defaults(),
|
sounds = default.node_sound_wood_defaults(),
|
||||||
node_box = {
|
node_box = {
|
||||||
|
@ -127,6 +127,7 @@ local function register_rope_block(multiple, max_multiple, name_prefix, node_pre
|
|||||||
climbable = true,
|
climbable = true,
|
||||||
tiles = rope_box_tiles(rope_box_data[multiple].tiles, tint),
|
tiles = rope_box_tiles(rope_box_data[multiple].tiles, tint),
|
||||||
use_texture_alpha = "clip",
|
use_texture_alpha = "clip",
|
||||||
|
is_ground_content = false,
|
||||||
node_box = {
|
node_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = rope_box_data[multiple].node
|
fixed = rope_box_data[multiple].node
|
||||||
@ -236,6 +237,7 @@ local rope_def = {
|
|||||||
drop = "",
|
drop = "",
|
||||||
tiles = { "ropes_3.png", "ropes_3.png", "ropes_3.png", "ropes_3.png", "ropes_5.png", "ropes_5.png" },
|
tiles = { "ropes_3.png", "ropes_3.png", "ropes_3.png", "ropes_3.png", "ropes_5.png", "ropes_5.png" },
|
||||||
use_texture_alpha = "clip",
|
use_texture_alpha = "clip",
|
||||||
|
is_ground_content = false,
|
||||||
groups = {choppy=2, flammable=2, not_in_creative_inventory=1},
|
groups = {choppy=2, flammable=2, not_in_creative_inventory=1},
|
||||||
sounds = {
|
sounds = {
|
||||||
footstep = {name = "ropes_creak", gain = 0.8, max_hear_distance = 6},
|
footstep = {name = "ropes_creak", gain = 0.8, max_hear_distance = 6},
|
||||||
@ -271,6 +273,7 @@ local rope_bottom_def = {
|
|||||||
drop = "",
|
drop = "",
|
||||||
tiles = { "ropes_3.png", "ropes_3.png", "ropes_3.png", "ropes_3.png", "ropes_5.png", "ropes_5.png" },
|
tiles = { "ropes_3.png", "ropes_3.png", "ropes_3.png", "ropes_3.png", "ropes_5.png", "ropes_5.png" },
|
||||||
use_texture_alpha = "clip",
|
use_texture_alpha = "clip",
|
||||||
|
is_ground_content = false,
|
||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
groups = {choppy=2, flammable=2, not_in_creative_inventory=1},
|
groups = {choppy=2, flammable=2, not_in_creative_inventory=1},
|
||||||
sounds = {
|
sounds = {
|
||||||
|
Loading…
Reference in New Issue
Block a user