Skip to content

Commit

Permalink
Stone Blocks: add White-Tuff. Closes #1342
Browse files Browse the repository at this point in the history
  • Loading branch information
alek13 committed Oct 6, 2024
1 parent 5a7473c commit 7f71e3d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions mods/lord/Blocks/lord_rocks/src/rocks/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ return {
["lord_rocks:peridotite"] = { softness = 1, definition = {} },
["lord_rocks:grey_tuff"] = { softness = 3, definition = {} },
["lord_rocks:red_tuff"] = { softness = 3, definition = {} },
["lord_rocks:white_tuff"] = { softness = 3, definition = {} },
["lord_rocks:grey_quartzite"] = { softness = 2, definition = {} },
["lord_rocks:pink_quartzite"] = { softness = 2, definition = {} },
["lord_rocks:shale"] = { softness = 3, definition = {} },
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions mods/lord/World/Generation/rocks/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,20 @@ minetest.register_biome({
humidity_point = 90,
})

minetest.register_biome({
name = "white_tuff_cave",
node_stone = "lord_rocks:white_tuff",
node_cave_liquid = "default:water_source",
node_dungeon = "default:cobble",
node_dungeon_alt = "default:mossycobble",
node_dungeon_stair = "stairs:stair_cobble",
y_max = -500,
y_min = -2500,
vertical_blend = 8,
heat_point = 10,
humidity_point = 50,
})

minetest.register_biome({
name = "red_tuff_cave",
node_stone = "lord_rocks:red_tuff",
Expand Down

0 comments on commit 7f71e3d

Please sign in to comment.