0

textures: add copper ore and raw copper block

This commit is contained in:
Nicolas F
2021-06-12 11:37:18 +02:00
parent cb375e6788
commit eddb0f2375
3 changed files with 8 additions and 0 deletions

View File

@@ -335,6 +335,9 @@ enum mc_block_id {
block_waxed_weathered_cut_copper = 1060, block_waxed_weathered_cut_copper = 1060,
block_waxed_oxidized_cut_copper = 1061, block_waxed_oxidized_cut_copper = 1061,
block_raw_copper = 1062,
block_copper_ore = 1063,
// adding a gap in the numbering of walls to keep them all // adding a gap in the numbering of walls to keep them all
// in one numbering block starting at 1792 // in one numbering block starting at 1792
// all blocks between 1792 and 2047 are considered walls // all blocks between 1792 and 2047 are considered walls

View File

@@ -5957,4 +5957,7 @@ block(blockid=[1054, 1058], top_image="assets/minecraft/textures/block/cut_coppe
block(blockid=[1055, 1059], top_image="assets/minecraft/textures/block/exposed_cut_copper.png") block(blockid=[1055, 1059], top_image="assets/minecraft/textures/block/exposed_cut_copper.png")
block(blockid=[1056, 1060], top_image="assets/minecraft/textures/block/weathered_cut_copper.png") block(blockid=[1056, 1060], top_image="assets/minecraft/textures/block/weathered_cut_copper.png")
block(blockid=[1057, 1061], top_image="assets/minecraft/textures/block/oxidized_cut_copper.png") block(blockid=[1057, 1061], top_image="assets/minecraft/textures/block/oxidized_cut_copper.png")
block(blockid=1062, top_image="assets/minecraft/textures/block/raw_copper_block.png")
block(blockid=1063, top_image="assets/minecraft/textures/block/copper_ore.png")
# You are now leaving the COPPER ZONE # You are now leaving the COPPER ZONE

View File

@@ -792,6 +792,8 @@ class RegionSet(object):
'minecraft:waxed_exposed_cut_copper': (1059, 0), 'minecraft:waxed_exposed_cut_copper': (1059, 0),
'minecraft:waxed_weathered_cut_copper': (1060, 0), 'minecraft:waxed_weathered_cut_copper': (1060, 0),
'minecraft:waxed_oxidized_cut_copper': (1061, 0), 'minecraft:waxed_oxidized_cut_copper': (1061, 0),
'minecraft:raw_copper_block': (1062, 0),
'minecraft:copper_ore': (1063, 0),
# New blocks # New blocks
'minecraft:carved_pumpkin': (11300, 0), 'minecraft:carved_pumpkin': (11300, 0),