added ocean lava

This commit is contained in:
Red_King_Cyclops 2019-06-23 15:03:50 +00:00
parent 506c05ac3e
commit 01447fa9d5
1 changed files with 25 additions and 0 deletions

View File

@ -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",