summaryrefslogtreecommitdiff
path: root/crystal.lua
diff options
context:
space:
mode:
authorTenPlus1 <kinsellaja@yahoo.com>2016-12-06 10:48:31 +0000
committerTenPlus1 <kinsellaja@yahoo.com>2016-12-06 10:48:31 +0000
commitadabd04d7b33ffa6d2a91c521cf713e092b3dc6f (patch)
tree53b43944945dc255800c343ecad39963a4a90bd3 /crystal.lua
parentf34b9b00c6c1e025754a71536ffd1b112cbce874 (diff)
Few new tweaks thanks to RQWorldblender
Diffstat (limited to 'crystal.lua')
-rw-r--r--crystal.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/crystal.lua b/crystal.lua
index 343b9fc..2e9ecd2 100644
--- a/crystal.lua
+++ b/crystal.lua
@@ -13,7 +13,7 @@ minetest.register_node("ethereal:crystal_spike", {
sunlight_propagates = true,
walkable = false,
damage_per_second = 1,
- groups = {cracky = 1, falling_node = 1, puts_out_fire = 1},
+ groups = {cracky = 1, falling_node = 1, puts_out_fire = 1, cools_lava = 1},
sounds = default.node_sound_glass_defaults(),
selection_box = {
type = "fixed",
@@ -50,7 +50,7 @@ minetest.register_node("ethereal:crystal_block", {
tiles = {"crystal_block.png"},
light_source = 9,
is_ground_content = false,
- groups = {cracky = 1, level = 2, puts_out_fire = 1},
+ groups = {cracky = 1, level = 2, puts_out_fire = 1, cools_lava = 1},
sounds = default.node_sound_glass_defaults(),
})
@@ -110,8 +110,8 @@ minetest.register_tool("ethereal:axe_crystal", {
groupcaps = {
choppy = {
times = {[1] = 2.00, [2] = 0.80, [3] = 0.40},
- uses = 30,
- maxlevel = 2
+ uses = 40,
+ maxlevel = 3
},
},
damage_groups = {fleshy = 7},
@@ -152,7 +152,7 @@ minetest.register_tool("ethereal:pick_crystal", {
maxlevel = 3
},
},
- damage_groups = {fleshy = 7},
+ damage_groups = {fleshy = 6},
},
sound = {breaks = "default_tool_breaks"},
})