forked from mad-star-studio/Voxelis
More temps
This commit is contained in:
parent
2402852a77
commit
20f2b59b56
5 changed files with 20 additions and 0 deletions
|
@ -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", {
|
||||
|
|
BIN
mods/BLOCKS/vox_overworld_blocks/textures/vox_cobblestone.png
Normal file
BIN
mods/BLOCKS/vox_overworld_blocks/textures/vox_cobblestone.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 216 B |
BIN
mods/BLOCKS/vox_overworld_blocks/textures/vox_dirt.png
Normal file
BIN
mods/BLOCKS/vox_overworld_blocks/textures/vox_dirt.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 132 B |
BIN
mods/BLOCKS/vox_overworld_blocks/textures/vox_gravel.png
Normal file
BIN
mods/BLOCKS/vox_overworld_blocks/textures/vox_gravel.png
Normal file
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 |
Loading…
Add table
Reference in a new issue