More blocks and textures

This commit is contained in:
JoseDouglas26 2024-06-09 11:15:10 -03:00
parent e16dca9069
commit f4bf86f434
6 changed files with 28 additions and 0 deletions

View File

@ -67,6 +67,28 @@ local blocks = {
groups = {building_blocks = 1, pickaxey = 1},
sounds = mcl_sounds.node_sound_stone_defaults()
},
["chiseled_red_sandstone"] = {
_mcl_blast_resistance = 0.8,
_mcl_hardness = 0.8,
groups = {building_blocks = 1, pickaxey = 1, stonecuttable = 1},
sounds = mcl_sounds.node_sound_stone_defaults(),
tiles = {
"natural_red_sandstone_top.png",
"natural_red_sandstone_bottom.png",
"building_chiseled_red_sandstone.png"
}
},
["chiseled_sandstone"] = {
_mcl_blast_resistance = 0.8,
_mcl_hardness = 0.8,
groups = {building_blocks = 1, pickaxey = 1, stonecuttable = 1},
sounds = mcl_sounds.node_sound_stone_defaults(),
tiles = {
"natural_sandstone_top.png",
"natural_sandstone_bottom.png",
"building_chiseled_sandstone.png"
}
},
["chiseled_stone_bricks"] = {
_mcl_blast_resistance = 6,
_mcl_hardness = 1.5,
@ -230,6 +252,12 @@ local blocks = {
groups = {building_blocks = 1, pickaxey = 1, stonecuttable = 1},
sounds = mcl_sounds.node_sound_stone_defaults()
},
["smooth_stone"] = {
_mcl_blast_resistance = 6,
_mcl_hardness = 2,
groups = {building_blocks = 1, pickaxey = 1},
sounds = mcl_sounds.node_sound_stone_defaults()
},
["stone_bricks"] = {
_mcl_blast_resistance = 6,
_mcl_hardness = 1.5,

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 337 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 488 B