diff --git a/src/main/resources/assets/biomesoplenty/blockstates/hive.json b/src/main/resources/assets/biomesoplenty/blockstates/hive.json new file mode 100644 index 000000000..9d5b23e34 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/hive.json @@ -0,0 +1,8 @@ +{ + "variants": { + "variant=hive_block": { "model": "biomesoplenty:hive_block" }, + "variant=honeycomb_block": { "model": "biomesoplenty:honeycomb_block" }, + "variant=empty_honeycomb_block": { "model": "biomesoplenty:empty_honeycomb_block" }, + "variant=filled_honeycomb_block": { "model": "biomesoplenty:filled_honeycomb_block" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/lang/en_US.lang b/src/main/resources/assets/biomesoplenty/lang/en_US.lang index 463ab28c0..202a26614 100644 --- a/src/main/resources/assets/biomesoplenty/lang/en_US.lang +++ b/src/main/resources/assets/biomesoplenty/lang/en_US.lang @@ -58,6 +58,11 @@ tile.gems.block_of_sapphire.name=Block of Sapphire tile.gems.amber_ore.name=Amber Ore tile.gems.block_of_amber.name=Block of Amber +tile.hive.hive_block.name=Hive Block +tile.hive.honeycomb_block.name=Honeycomb Block +tile.hive.empty_honeycomb_block.name=Empty Honeycomb Block +tile.hive.filled_honeycomb_block.name=Filled Honeycomb Block + tile.log.sacred_oak.name=Sacred Oak Wood tile.log.cherry.name=Cherry Wood tile.log.dark.name=Dark Wood diff --git a/src/main/resources/assets/biomesoplenty/models/block/empty_honeycomb_block.json b/src/main/resources/assets/biomesoplenty/models/block/empty_honeycomb_block.json new file mode 100644 index 000000000..b6dc60ab5 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/empty_honeycomb_block.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "biomesoplenty:blocks/empty_honeycomb_block" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/filled_honeycomb_block.json b/src/main/resources/assets/biomesoplenty/models/block/filled_honeycomb_block.json new file mode 100644 index 000000000..a02ae844c --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/filled_honeycomb_block.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "biomesoplenty:blocks/filled_honeycomb_block" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/hive_block.json b/src/main/resources/assets/biomesoplenty/models/block/hive_block.json new file mode 100644 index 000000000..2416244ec --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/hive_block.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "biomesoplenty:blocks/hive_block" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/honeycomb_block.json b/src/main/resources/assets/biomesoplenty/models/block/honeycomb_block.json new file mode 100644 index 000000000..d5bc35496 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/honeycomb_block.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "biomesoplenty:blocks/honeycomb_block" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/empty_honeycomb_block.json b/src/main/resources/assets/biomesoplenty/models/item/empty_honeycomb_block.json new file mode 100644 index 000000000..01a241d1b --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/empty_honeycomb_block.json @@ -0,0 +1,10 @@ +{ + "parent": "biomesoplenty:block/empty_honeycomb_block", + "display": { + "thirdperson": { + "rotation": [ 10, -45, 170 ], + "translation": [ 0, 1.5, -2.75 ], + "scale": [ 0.375, 0.375, 0.375 ] + } + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/filled_honeycomb_block.json b/src/main/resources/assets/biomesoplenty/models/item/filled_honeycomb_block.json new file mode 100644 index 000000000..32f0c9194 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/filled_honeycomb_block.json @@ -0,0 +1,10 @@ +{ + "parent": "biomesoplenty:block/filled_honeycomb_block", + "display": { + "thirdperson": { + "rotation": [ 10, -45, 170 ], + "translation": [ 0, 1.5, -2.75 ], + "scale": [ 0.375, 0.375, 0.375 ] + } + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/hive_block.json b/src/main/resources/assets/biomesoplenty/models/item/hive_block.json new file mode 100644 index 000000000..f8fa5f498 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/hive_block.json @@ -0,0 +1,10 @@ +{ + "parent": "biomesoplenty:block/hive_block", + "display": { + "thirdperson": { + "rotation": [ 10, -45, 170 ], + "translation": [ 0, 1.5, -2.75 ], + "scale": [ 0.375, 0.375, 0.375 ] + } + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/honeycomb_block.json b/src/main/resources/assets/biomesoplenty/models/item/honeycomb_block.json new file mode 100644 index 000000000..2892a1152 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/honeycomb_block.json @@ -0,0 +1,10 @@ +{ + "parent": "biomesoplenty:block/honeycomb_block", + "display": { + "thirdperson": { + "rotation": [ 10, -45, 170 ], + "translation": [ 0, 1.5, -2.75 ], + "scale": [ 0.375, 0.375, 0.375 ] + } + } +} diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/empty_honeycomb_block.png b/src/main/resources/assets/biomesoplenty/textures/blocks/empty_honeycomb_block.png new file mode 100644 index 000000000..b09cf8b92 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/empty_honeycomb_block.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/filled_honeycomb_block.png b/src/main/resources/assets/biomesoplenty/textures/blocks/filled_honeycomb_block.png new file mode 100644 index 000000000..fd4e6ec8e Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/filled_honeycomb_block.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/hive_block.png b/src/main/resources/assets/biomesoplenty/textures/blocks/hive_block.png new file mode 100644 index 000000000..9d7549e48 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/hive_block.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/honeycomb_block.png b/src/main/resources/assets/biomesoplenty/textures/blocks/honeycomb_block.png new file mode 100644 index 000000000..37f1e1be3 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/honeycomb_block.png differ