More temps

This commit is contained in:
DesertMermaid 2024-12-10 20:38:27 -08:00
parent 2402852a77
commit 20f2b59b56
5 changed files with 20 additions and 0 deletions

View file

@ -33,6 +33,7 @@ core.register_node("vox_overworld_blocks:dirt", {
groups = {crumbly = 3}
})
core.register_alias("dirt", "vox_overworld_blocks:dirt")
core.register_alias("default:dirt", "vox_overworld_blocks:dirt")
-- Sand
-- (I don't like sand. It's coarse and rough and irritating and it gets everywhere.)
@ -44,8 +45,18 @@ core.register_node("vox_overworld_blocks:sand", {
core.register_alias("sand", "vox_overworld_blocks:sand")
core.register_alias("default:sand", "vox_overworld_blocks:sand")
-- Gravel
core.register_node("vox_overworld_blocks:gravel", {
description = "Gravel",
tiles = {"vox_gravel.png"},
groups = {crumbly = 2}
})
core.register_alias("gravel", "vox_overworld_blocks:gravel")
core.register_alias("default:gravel", "vox_overworld_blocks:gravel")
-- -------------------------------- Minerals -------------------------------- --
-- Stone
core.register_node("vox_overworld_blocks:stone", {
description = "Stone",
tiles = {"vox_stone.png"},
@ -55,6 +66,15 @@ core.register_alias("stone", "vox_overworld_blocks:stone")
core.register_alias("mapgen_stone", "vox_overworld_blocks:stone")
-- core.register_alias("default:stone", "vox_overworld_blocks:stone")
-- Cobblestone
core.register_node("vox_overworld_blocks:cobblestone", {
description = "Cobblestone",
tiles = {"vox_cobblestone.png"},
groups = {cracky = 2}
})
core.register_alias("cobblestone", "vox_overworld_blocks:cobblestone")
core.register_alias("default:cobble", "vox_overworld_blocks:cobblestone")
-- Water
core.register_node("vox_overworld_blocks:water_source", {

Binary file not shown.

After

Width:  |  Height:  |  Size: 216 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 132 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 590 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 590 B

After

Width:  |  Height:  |  Size: 123 B