mirror of
https://github.com/pyrollo/display_modpack.git
synced 2025-10-15 08:35:35 +02:00
Add mcl groups, _mcl_hardness, _mcl_blast_resistance params (#15)
* MineClonia/MineClone2 _mcl_hardness and _mcl_blast_resistance params * _mcl_hardness and _mcl_blast_resistance to signs mod * _mcl_hardness and _mcl_blast_resistance to clocks mod
This commit is contained in:
committed by
GitHub
parent
c315900c24
commit
4dc2bb661c
@@ -46,7 +46,9 @@ minetest.register_node("ontime_clocks:green_digital", {
|
||||
wall_top = {-7/16, 0.5, -7/32, 7/16, 13/32, 3/16}
|
||||
},
|
||||
tiles = {"ontime_clocks_digital.png"},
|
||||
groups = {oddly_breakable_by_hand=1, not_blocking_trains=1, display_api=1},
|
||||
groups = {oddly_breakable_by_hand=1, not_blocking_trains=1, display_api=1, handy = 1},
|
||||
_mcl_hardness = 0.8,
|
||||
_mcl_blast_resistance = 1,
|
||||
is_ground_content = false,
|
||||
display_entities = {
|
||||
["ontime_clocks:display"] = {
|
||||
@@ -81,7 +83,9 @@ minetest.register_node("ontime_clocks:red_digital", {
|
||||
wall_top = {-7/16, 0.5, -7/32, 7/16, 13/32, 3/16}
|
||||
},
|
||||
tiles = {"ontime_clocks_digital.png"},
|
||||
groups = {oddly_breakable_by_hand=1, not_blocking_trains=1, display_api=1},
|
||||
groups = {oddly_breakable_by_hand=1, not_blocking_trains=1, display_api=1, handy = 1},
|
||||
_mcl_hardness = 0.8,
|
||||
_mcl_blast_resistance = 1,
|
||||
is_ground_content = false,
|
||||
display_entities = {
|
||||
["ontime_clocks:display"] = {
|
||||
@@ -115,7 +119,9 @@ minetest.register_node("ontime_clocks:white", {
|
||||
wall_top = { -7/16, 0.5, -7/16, 7/16, 7/16, 7/16},
|
||||
},
|
||||
tiles = {"ontime_clocks_white.png"},
|
||||
groups = {oddly_breakable_by_hand=1, not_blocking_trains=1, display_api=1},
|
||||
groups = {oddly_breakable_by_hand=1, not_blocking_trains=1, display_api=1, handy = 1},
|
||||
_mcl_hardness = 0.8,
|
||||
_mcl_blast_resistance = 1,
|
||||
is_ground_content = false,
|
||||
display_entities = {
|
||||
["ontime_clocks:display"] = {
|
||||
@@ -150,7 +156,9 @@ minetest.register_node("ontime_clocks:frameless_black", {
|
||||
wall_top = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 }
|
||||
},
|
||||
tiles = {"ontime_clocks_frameless.png"},
|
||||
groups = {oddly_breakable_by_hand=1, not_blocking_trains=1, display_api=1},
|
||||
groups = {oddly_breakable_by_hand=1, not_blocking_trains=1, display_api=1, handy = 1},
|
||||
_mcl_hardness = 0.8,
|
||||
_mcl_blast_resistance = 1,
|
||||
is_ground_content = false,
|
||||
display_entities = {
|
||||
["ontime_clocks:display"] = {
|
||||
@@ -185,7 +193,9 @@ minetest.register_node("ontime_clocks:frameless_gold", {
|
||||
wall_top = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 }
|
||||
},
|
||||
tiles = {"ontime_clocks_frameless.png^[colorize:#FF0"},
|
||||
groups = {oddly_breakable_by_hand=1, not_blocking_trains=1, display_api=1},
|
||||
groups = {oddly_breakable_by_hand=1, not_blocking_trains=1, display_api=1, handy = 1},
|
||||
_mcl_hardness = 0.8,
|
||||
_mcl_blast_resistance = 1,
|
||||
is_ground_content = false,
|
||||
display_entities = {
|
||||
["ontime_clocks:display"] = {
|
||||
@@ -220,7 +230,9 @@ minetest.register_node("ontime_clocks:frameless_white", {
|
||||
wall_top = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 }
|
||||
},
|
||||
tiles = {"ontime_clocks_frameless.png^[colorize:#FFF"},
|
||||
groups = {oddly_breakable_by_hand=1, not_blocking_trains=1, display_api=1},
|
||||
groups = {oddly_breakable_by_hand=1, not_blocking_trains=1, display_api=1, handy = 1},
|
||||
_mcl_hardness = 0.8,
|
||||
_mcl_blast_resistance = 1,
|
||||
is_ground_content = false,
|
||||
display_entities = {
|
||||
["ontime_clocks:display"] = {
|
||||
|
Reference in New Issue
Block a user