damage for gems and icicles

This commit is contained in:
tchncs 2016-03-18 21:48:36 +01:00
parent a11cd3c741
commit cd01ca0a3e

View File

@ -215,6 +215,7 @@ for i in ipairs(glow_gem_size) do
walkable = false,
buildable_to = true,
visual_scale = vs,
damage_per_second = 1,
selection_box = {
type = "fixed",
fixed = {-0.5*vs, -0.5*vs, -0.5*vs, 0.5*vs, -5/16*vs, 0.5*vs},
@ -248,6 +249,7 @@ for i in ipairs(salt_gem_size) do
walkable = false,
buildable_to = true,
visual_scale = vs,
damage_per_second = 1,
selection_box = {
type = "fixed",
fixed = {-0.5*vs, -0.5*vs, -0.5*vs, 0.5*vs, -5/16*vs, 0.5*vs},
@ -281,6 +283,7 @@ for i in ipairs(spike_size) do
walkable = false,
buildable_to = true,
visual_scale = vs,
damage_per_second = 1,
selection_box = {
type = "fixed",
fixed = {-0.5*vs, -0.5*vs, -0.5*vs, 0.5*vs, -5/16*vs, 0.5*vs},
@ -303,6 +306,7 @@ minetest.register_node("caverealms:icicle_up", {
walkable = false,
buildable_to = true,
visual_scale = 1.0,
damage_per_second = 3,
selection_box = {
type = "fixed",
fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5},
@ -324,6 +328,7 @@ minetest.register_node("caverealms:icicle_down", {
walkable = false,
buildable_to = true,
visual_scale = 1.0,
damage_per_second = 4,
selection_box = {
type = "fixed",
fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5},