added ocean lava
This commit is contained in:
parent
506c05ac3e
commit
01447fa9d5
25
nodes.lua
25
nodes.lua
|
@ -6,6 +6,31 @@ minetest.register_node("europa_moon:red_rocks", {
|
|||
sounds = default.node_sound_gravel_defaults()
|
||||
})
|
||||
|
||||
minetest.register_node("europa_moon:ocean_lava", {
|
||||
description = "Ocean Lava",
|
||||
tiles = {
|
||||
{
|
||||
name = "default_lava_source_animated.png",
|
||||
animation = {
|
||||
type = "vertical_frames",
|
||||
aspect_w = 16,
|
||||
aspect_h = 16,
|
||||
length = 3.0,
|
||||
},
|
||||
},
|
||||
},
|
||||
--paramtype = "light",
|
||||
light_source = default.LIGHT_MAX - 1,
|
||||
walkable = false,
|
||||
--pointable = true,
|
||||
--diggable = true,
|
||||
--buildable_to = true,
|
||||
--is_ground_content = false,
|
||||
--drop = "",
|
||||
groups = {cracky=3},
|
||||
damage_per_second = 4 * 2,
|
||||
})
|
||||
|
||||
--[[
|
||||
minetest.register_node("default:gravel", {
|
||||
description = "Gravel",
|
||||
|
|
Loading…
Reference in New Issue