main #3

Merged
SevenOfAces merged 6 commits from mad-star-studio/Voxelis:main into main 2024-12-11 21:05:13 +00:00
5 changed files with 20 additions and 0 deletions
Showing only changes of commit 20f2b59b56 - Show all commits

View file

@ -33,6 +33,7 @@ core.register_node("vox_overworld_blocks:dirt", {
groups = {crumbly = 3} groups = {crumbly = 3}
}) })
core.register_alias("dirt", "vox_overworld_blocks:dirt") core.register_alias("dirt", "vox_overworld_blocks:dirt")
core.register_alias("default:dirt", "vox_overworld_blocks:dirt")
-- Sand -- Sand
-- (I don't like sand. It's coarse and rough and irritating and it gets everywhere.) -- (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("sand", "vox_overworld_blocks:sand")
core.register_alias("default: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 -------------------------------- -- -- -------------------------------- Minerals -------------------------------- --
-- Stone
core.register_node("vox_overworld_blocks:stone", { core.register_node("vox_overworld_blocks:stone", {
description = "Stone", description = "Stone",
tiles = {"vox_stone.png"}, 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("mapgen_stone", "vox_overworld_blocks:stone")
-- core.register_alias("default: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 -- Water
core.register_node("vox_overworld_blocks:water_source", { 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