move slowly in thick web, can be destroyed with level 2 sword, phoenix fire harms player but not igniter

master
tenplus1 2022-11-28 18:20:28 +00:00
parent 573aa57a89
commit bccc07b49c
2 changed files with 4 additions and 4 deletions

View File

@ -331,7 +331,7 @@ mobs:register_arrow("nssm:phoenix_arrow", {
minetest.set_node(pos, {name = "nssm:phoenix_fire"})
end
if math.random(1, 6) == 1 then
if math.random(6) == 1 then
local p = {
x = pos.x + math.random(-1, 1),

View File

@ -323,8 +323,8 @@ minetest.register_node("nssm:thick_web", {
liquid_range = 0,
liquid_alternative_flowing = "nssm:thick_web",
liquid_alternative_source = "nssm:thick_web",
liquid_viscosity = 30,
groups = {flammable = 2, liquid = 1}
liquid_viscosity = 28,--30,
groups = {flammable = 2, snappy = 1, level = 2, liquid = 1}
})
minetest.register_node("nssm:ink", {
@ -424,7 +424,7 @@ minetest.register_node("nssm:phoenix_fire", {
},
inventory_image = "phoenix_fire.png",
light_source = 14,
groups = {igniter = 1, snappy = 1},
groups = {snappy = 1}, -- igniter = 1
drop = "",
walkable = false,
buildable_to = false,