Destroy some nodes by flowing lava
This commit is contained in:
parent
7140bf71d8
commit
c49e8dfba0
19 changed files with 89 additions and 48 deletions
|
@ -57,7 +57,7 @@ minetest.register_node("mesecons_button:button_stone_off", {
|
|||
walkable = false,
|
||||
sunlight_propagates = true,
|
||||
node_box = boxes_off,
|
||||
groups = {handy=1,pickaxey=1, attached_node=1, dig_by_water=1, dig_by_piston=1},
|
||||
groups = {handy=1,pickaxey=1, attached_node=1, dig_by_water=1,destroy_by_lava_flow=1, dig_by_piston=1},
|
||||
description = "Stone Button",
|
||||
_doc_items_longdesc = "A stone button is a redstone component made out of stone which can be pushed to provide redstone power. When pushed, it powers adjacent redstone components for 1 second.",
|
||||
_doc_items_usagehelp = buttonuse,
|
||||
|
@ -88,7 +88,7 @@ minetest.register_node("mesecons_button:button_stone_on", {
|
|||
walkable = false,
|
||||
sunlight_propagates = true,
|
||||
node_box = boxes_on,
|
||||
groups = {handy=1,pickaxey=1, not_in_creative_inventory=1, attached_node=1, dig_by_water=1, dig_by_piston=1},
|
||||
groups = {handy=1,pickaxey=1, not_in_creative_inventory=1, attached_node=1, dig_by_water=1,destroy_by_lava_flow=1, dig_by_piston=1},
|
||||
drop = 'mesecons_button:button_stone_off',
|
||||
description = "Stone Button",
|
||||
_doc_items_create_entry = false,
|
||||
|
@ -113,7 +113,7 @@ minetest.register_node("mesecons_button:button_wood_off", {
|
|||
walkable = false,
|
||||
sunlight_propagates = true,
|
||||
node_box = boxes_off,
|
||||
groups = {handy=1,axey=1, attached_node=1, dig_by_water=1, dig_by_piston=1},
|
||||
groups = {handy=1,axey=1, attached_node=1, dig_by_water=1,destroy_by_lava_flow=1, dig_by_piston=1},
|
||||
description = "Wooden Button",
|
||||
_doc_items_longdesc = "A wooden button is a redstone component made out of wood which can be pushed to provide redstone power. When pushed, it powers adjacent redstone components for 1.5 seconds.",
|
||||
_doc_items_usagehelp = buttonuse,
|
||||
|
@ -144,7 +144,7 @@ minetest.register_node("mesecons_button:button_wood_on", {
|
|||
walkable = false,
|
||||
sunlight_propagates = true,
|
||||
node_box = boxes_on,
|
||||
groups = {handy=1,axey=1, not_in_creative_inventory=1, attached_node=1, dig_by_water=1, dig_by_piston=1},
|
||||
groups = {handy=1,axey=1, not_in_creative_inventory=1, attached_node=1, dig_by_water=1,destroy_by_lava_flow=1, dig_by_piston=1},
|
||||
drop = 'mesecons_button:button_wood_off',
|
||||
description = "Wooden Button",
|
||||
_doc_items_create_entry = false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue