diff --git a/CREDITS.md b/CREDITS.md index ed63a7a..a77e1a2 100644 --- a/CREDITS.md +++ b/CREDITS.md @@ -38,6 +38,10 @@ Textures: - By StarNinjas and Wuzzy - Derivate work of `xocean_pillar.png` - License: MIT License +- `lzr_decor_ocean_stone_block.png`: + - By StarNinjas and Wuzzy + - Derivate work of `xocean_stone.png` + - License: MIT License Models: - Player models comes from Minetest Game (see license of Minetest Game 5.4.1 for details) diff --git a/mods/lzr_decor/init.lua b/mods/lzr_decor/init.lua index 8e8b490..b70ffe0 100644 --- a/mods/lzr_decor/init.lua +++ b/mods/lzr_decor/init.lua @@ -329,6 +329,12 @@ minetest.register_node("lzr_decor:ocean_stone", { groups = { breakable = 1 }, sounds = lzr_sounds.node_sound_stone_defaults(), }) +minetest.register_node("lzr_decor:ocean_stone_block", { + description = S("Ocean Stone Block"), + tiles = {"lzr_decor_ocean_stone_block.png"}, + groups = { breakable = 1 }, + sounds = lzr_sounds.node_sound_stone_defaults(), +}) minetest.register_node("lzr_decor:ocean_cobble", { description = S("Ocean Cobblestone"), tiles = {"xocean_cobble.png"}, diff --git a/mods/lzr_decor/textures/lzr_decor_ocean_stone_block.png b/mods/lzr_decor/textures/lzr_decor_ocean_stone_block.png new file mode 100644 index 0000000..ad83797 Binary files /dev/null and b/mods/lzr_decor/textures/lzr_decor_ocean_stone_block.png differ