diff --git a/src/datagen/groovy/techreborn/datagen/mixin/MixinTextureMap.groovy b/src/datagen/groovy/techreborn/datagen/mixin/MixinTextureMap.groovy index 5b2471ca2..c282d0982 100644 --- a/src/datagen/groovy/techreborn/datagen/mixin/MixinTextureMap.groovy +++ b/src/datagen/groovy/techreborn/datagen/mixin/MixinTextureMap.groovy @@ -15,16 +15,22 @@ import techreborn.datagen.models.TexturePaths class MixinTextureMap { @Inject(method = "getId(Lnet/minecraft/item/Item;)Lnet/minecraft/util/Identifier;", at = @At("HEAD"), cancellable = true) private static void getId(Item item, CallbackInfoReturnable cir) { - TexturePaths.blockItemTexturePaths.each { + TexturePaths.blockPaths.each { if (it.key.asItem() == item) { cir.setReturnValue(new Identifier("techreborn", "item/${it.value}")) } } + + def itemPath = TexturePaths.itemPaths.get(item) + + if (itemPath) { + cir.setReturnValue(new Identifier("techreborn", "item/${itemPath}")) + } } @Inject(method = "getId(Lnet/minecraft/block/Block;)Lnet/minecraft/util/Identifier;", at = @At("HEAD"), cancellable = true) private static void getId(Block block, CallbackInfoReturnable cir) { - TexturePaths.blockItemTexturePaths.each { + TexturePaths.blockPaths.each { if (it.key == block) { cir.setReturnValue(new Identifier("techreborn", "block/${it.value}")) } diff --git a/src/datagen/groovy/techreborn/datagen/models/ModelProvider.groovy b/src/datagen/groovy/techreborn/datagen/models/ModelProvider.groovy index 3ab75fba2..3940269f9 100644 --- a/src/datagen/groovy/techreborn/datagen/models/ModelProvider.groovy +++ b/src/datagen/groovy/techreborn/datagen/models/ModelProvider.groovy @@ -26,8 +26,12 @@ package techreborn.datagen.models import net.fabricmc.fabric.api.datagen.v1.FabricDataGenerator import net.fabricmc.fabric.api.datagen.v1.provider.FabricModelProvider +import net.minecraft.block.Blocks import net.minecraft.data.client.BlockStateModelGenerator import net.minecraft.data.client.ItemModelGenerator +import net.minecraft.data.client.Models +import net.minecraft.data.family.BlockFamilies +import net.minecraft.data.family.BlockFamily import techreborn.init.TRContent class ModelProvider extends FabricModelProvider { @@ -38,9 +42,42 @@ class ModelProvider extends FabricModelProvider { @Override void generateBlockStateModels(BlockStateModelGenerator generator) { generator.registerDoor(TRContent.RUBBER_DOOR) + + TRContent.Ores.values().each { + generator.registerSimpleCubeAll(it.block) + } + + TRContent.StorageBlocks.values().each { + def family = BlockFamilies.register(it.block) + .slab(it.slabBlock) + .stairs(it.stairsBlock) + .wall(it.wallBlock) + .build() + + generator.registerCubeAllModelTexturePool(it.block).family(family) + } } @Override void generateItemModels(ItemModelGenerator generator) { + TRContent.Dusts.values().each { + generator.register(it.asItem(), Models.GENERATED) + } + + TRContent.SmallDusts.values().each { + generator.register(it.asItem(), Models.GENERATED) + } + + TRContent.Ingots.values().each { + generator.register(it.asItem(), Models.GENERATED) + } + + TRContent.Plates.values().each { + generator.register(it.asItem(), Models.GENERATED) + } + + TRContent.Nuggets.values().each { + generator.register(it.asItem(), Models.GENERATED) + } } } diff --git a/src/datagen/groovy/techreborn/datagen/models/TexturePaths.groovy b/src/datagen/groovy/techreborn/datagen/models/TexturePaths.groovy index 7764eff8c..4ddd4e405 100644 --- a/src/datagen/groovy/techreborn/datagen/models/TexturePaths.groovy +++ b/src/datagen/groovy/techreborn/datagen/models/TexturePaths.groovy @@ -25,20 +25,47 @@ package techreborn.datagen.models import net.minecraft.block.Block +import net.minecraft.item.Item import techreborn.init.TRContent class TexturePaths { - public static Map blockItemTexturePaths = [ + public static Map blockPaths = [ (TRContent.RUBBER_DOOR): "misc/rubber_door" ] + public static Map itemPaths = [:] + static { TRContent.Ores.values().each { if (it.isDeepslate()) { - blockItemTexturePaths.put(it.block, "ore/deepslate/${it.name.toLowerCase()}_ore") + blockPaths.put(it.block, "ore/deepslate/${it.name.toLowerCase()}_ore") } else { - blockItemTexturePaths.put(it.block, "ore/${it.name.toLowerCase()}_ore") + blockPaths.put(it.block, "ore/${it.name.toLowerCase()}_ore") } } + + TRContent.StorageBlocks.values().each { + blockPaths.put(it.block, "storage/${it.name.toLowerCase()}_storage_block") + } + + TRContent.Dusts.values().each { + itemPaths.put(it.asItem(), "dust/${it.name.toLowerCase()}_dust") + } + + TRContent.SmallDusts.values().each { + itemPaths.put(it.asItem(), "smalldust/${it.name.toLowerCase()}_small_dust") + } + + TRContent.Ingots.values().each { + itemPaths.put(it.asItem(), "ingot/${it.name.toLowerCase()}_ingot") + } + + TRContent.Plates.values().each { + itemPaths.put(it.asItem(), "plate/${it.name.toLowerCase()}_plate") + } + + TRContent.Nuggets.values().each { + itemPaths.put(it.asItem(), "nugget/${it.name.toLowerCase()}_nugget") + } } } diff --git a/src/datagen/groovy/techreborn/datagen/tags/TRBlockTagProvider.groovy b/src/datagen/groovy/techreborn/datagen/tags/TRBlockTagProvider.groovy index bafcfa32b..1a5d45d1e 100644 --- a/src/datagen/groovy/techreborn/datagen/tags/TRBlockTagProvider.groovy +++ b/src/datagen/groovy/techreborn/datagen/tags/TRBlockTagProvider.groovy @@ -112,6 +112,9 @@ class TRBlockTagProvider extends FabricTagProvider.BlockTagProvider { .add(it.wallBlock) } + getOrCreateTagBuilder(BlockTags.WALLS) + .add(TRContent.COPPER_WALL) + getOrCreateTagBuilder(BlockTags.WOODEN_BUTTONS) .add(TRContent.RUBBER_BUTTON) diff --git a/src/datagen/groovy/techreborn/datagen/tags/TRItemTagProvider.groovy b/src/datagen/groovy/techreborn/datagen/tags/TRItemTagProvider.groovy index 946d1c73e..f129b541d 100644 --- a/src/datagen/groovy/techreborn/datagen/tags/TRItemTagProvider.groovy +++ b/src/datagen/groovy/techreborn/datagen/tags/TRItemTagProvider.groovy @@ -150,6 +150,9 @@ class TRItemTagProvider extends ItemTagProvider { .add(it.wallBlock.asItem()) } + getOrCreateTagBuilder(ItemTags.WALLS) + .add(TRContent.COPPER_WALL.asItem()) + getOrCreateTagBuilder(ItemTags.WOODEN_BUTTONS) .add(TRContent.RUBBER_BUTTON.asItem()) diff --git a/src/main/resources/assets/techreborn/blockstates/advanced_alloy_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/advanced_alloy_storage_block_slab.json deleted file mode 100644 index f9bb2bd9a..000000000 --- a/src/main/resources/assets/techreborn/blockstates/advanced_alloy_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/advanced_alloy_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/advanced_alloy_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/advanced_alloy_storage_block_stairs.json deleted file mode 100644 index 92baa53f1..000000000 --- a/src/main/resources/assets/techreborn/blockstates/advanced_alloy_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/advanced_alloy_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/advanced_alloy_storage_block_wall.json deleted file mode 100644 index 007293cf5..000000000 --- a/src/main/resources/assets/techreborn/blockstates/advanced_alloy_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/advanced_alloy_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/aluminum_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/aluminum_storage_block_slab.json deleted file mode 100644 index d3bd5d6a0..000000000 --- a/src/main/resources/assets/techreborn/blockstates/aluminum_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/aluminum_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/aluminum_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/aluminum_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/aluminum_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/aluminum_storage_block_stairs.json deleted file mode 100644 index cc22001cc..000000000 --- a/src/main/resources/assets/techreborn/blockstates/aluminum_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/aluminum_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/aluminum_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/aluminum_storage_block_wall.json deleted file mode 100644 index 4a48ca482..000000000 --- a/src/main/resources/assets/techreborn/blockstates/aluminum_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/aluminum_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/aluminum_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/aluminum_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/aluminum_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/aluminum_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/aluminum_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/aluminum_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/aluminum_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/aluminum_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/bauxite_ore.json b/src/main/resources/assets/techreborn/blockstates/bauxite_ore.json deleted file mode 100644 index 12e4b8cda..000000000 --- a/src/main/resources/assets/techreborn/blockstates/bauxite_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/bauxite_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/brass_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/brass_storage_block_slab.json deleted file mode 100644 index 9d7943961..000000000 --- a/src/main/resources/assets/techreborn/blockstates/brass_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/brass_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/brass_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/brass_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/brass_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/brass_storage_block_stairs.json deleted file mode 100644 index 7f6f2f7db..000000000 --- a/src/main/resources/assets/techreborn/blockstates/brass_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/brass_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/brass_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/brass_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/brass_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/brass_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/brass_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/brass_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/brass_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/brass_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/brass_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/brass_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/brass_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/brass_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/brass_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/brass_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/brass_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/brass_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/brass_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/brass_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/brass_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/brass_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/brass_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/brass_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/brass_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/brass_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/brass_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/brass_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/brass_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/brass_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/brass_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/brass_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/brass_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/brass_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/brass_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/brass_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/brass_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/brass_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/brass_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/brass_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/brass_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/brass_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/brass_storage_block_wall.json deleted file mode 100644 index 45a84e53b..000000000 --- a/src/main/resources/assets/techreborn/blockstates/brass_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/brass_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/brass_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/brass_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/brass_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/brass_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/brass_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/brass_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/brass_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/brass_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/bronze_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/bronze_storage_block_slab.json deleted file mode 100644 index 1bc4d7947..000000000 --- a/src/main/resources/assets/techreborn/blockstates/bronze_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/bronze_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/bronze_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/bronze_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/bronze_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/bronze_storage_block_stairs.json deleted file mode 100644 index b4e2c2fbf..000000000 --- a/src/main/resources/assets/techreborn/blockstates/bronze_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/bronze_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/bronze_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/bronze_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/bronze_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/bronze_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/bronze_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/bronze_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/bronze_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/bronze_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/bronze_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/bronze_storage_block_wall.json deleted file mode 100644 index 0302cad03..000000000 --- a/src/main/resources/assets/techreborn/blockstates/bronze_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/bronze_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/bronze_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/bronze_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/bronze_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/bronze_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/bronze_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/bronze_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/bronze_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/bronze_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/chrome_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/chrome_storage_block_slab.json deleted file mode 100644 index 64e044338..000000000 --- a/src/main/resources/assets/techreborn/blockstates/chrome_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/chrome_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/chrome_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/chrome_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/chrome_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/chrome_storage_block_stairs.json deleted file mode 100644 index c5a6a102d..000000000 --- a/src/main/resources/assets/techreborn/blockstates/chrome_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/chrome_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/chrome_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/chrome_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/chrome_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/chrome_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/chrome_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/chrome_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/chrome_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/chrome_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/chrome_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/chrome_storage_block_wall.json deleted file mode 100644 index 4c74ccb88..000000000 --- a/src/main/resources/assets/techreborn/blockstates/chrome_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/chrome_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/chrome_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/chrome_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/chrome_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/chrome_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/chrome_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/chrome_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/chrome_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/chrome_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/cinnabar_ore.json b/src/main/resources/assets/techreborn/blockstates/cinnabar_ore.json deleted file mode 100644 index 7f4cebc4c..000000000 --- a/src/main/resources/assets/techreborn/blockstates/cinnabar_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/cinnabar_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/deepslate_bauxite_ore.json b/src/main/resources/assets/techreborn/blockstates/deepslate_bauxite_ore.json deleted file mode 100644 index 127e9cf50..000000000 --- a/src/main/resources/assets/techreborn/blockstates/deepslate_bauxite_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/deepslate/deepslate_bauxite_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/deepslate_galena_ore.json b/src/main/resources/assets/techreborn/blockstates/deepslate_galena_ore.json deleted file mode 100644 index 695ba2f7f..000000000 --- a/src/main/resources/assets/techreborn/blockstates/deepslate_galena_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/deepslate/deepslate_galena_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/deepslate_iridium_ore.json b/src/main/resources/assets/techreborn/blockstates/deepslate_iridium_ore.json deleted file mode 100644 index 57b5c59db..000000000 --- a/src/main/resources/assets/techreborn/blockstates/deepslate_iridium_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/deepslate/deepslate_iridium_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/deepslate_lead_ore.json b/src/main/resources/assets/techreborn/blockstates/deepslate_lead_ore.json deleted file mode 100644 index aa57b4c9e..000000000 --- a/src/main/resources/assets/techreborn/blockstates/deepslate_lead_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/deepslate/deepslate_lead_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/deepslate_peridot_ore.json b/src/main/resources/assets/techreborn/blockstates/deepslate_peridot_ore.json deleted file mode 100644 index 240a025a9..000000000 --- a/src/main/resources/assets/techreborn/blockstates/deepslate_peridot_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/deepslate/deepslate_peridot_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/deepslate_ruby_ore.json b/src/main/resources/assets/techreborn/blockstates/deepslate_ruby_ore.json deleted file mode 100644 index 95e5ee117..000000000 --- a/src/main/resources/assets/techreborn/blockstates/deepslate_ruby_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/deepslate/deepslate_ruby_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/deepslate_sapphire_ore.json b/src/main/resources/assets/techreborn/blockstates/deepslate_sapphire_ore.json deleted file mode 100644 index 8326be0f0..000000000 --- a/src/main/resources/assets/techreborn/blockstates/deepslate_sapphire_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/deepslate/deepslate_sapphire_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/deepslate_sheldonite_ore.json b/src/main/resources/assets/techreborn/blockstates/deepslate_sheldonite_ore.json deleted file mode 100644 index 5daa14a57..000000000 --- a/src/main/resources/assets/techreborn/blockstates/deepslate_sheldonite_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/deepslate/deepslate_sheldonite_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/deepslate_silver_ore.json b/src/main/resources/assets/techreborn/blockstates/deepslate_silver_ore.json deleted file mode 100644 index 783ec8fca..000000000 --- a/src/main/resources/assets/techreborn/blockstates/deepslate_silver_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/deepslate/deepslate_silver_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/deepslate_sodalite_ore.json b/src/main/resources/assets/techreborn/blockstates/deepslate_sodalite_ore.json deleted file mode 100644 index 1d95db4db..000000000 --- a/src/main/resources/assets/techreborn/blockstates/deepslate_sodalite_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/deepslate/deepslate_sodalite_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/deepslate_sphalerite_ore.json b/src/main/resources/assets/techreborn/blockstates/deepslate_sphalerite_ore.json deleted file mode 100644 index 1970c0963..000000000 --- a/src/main/resources/assets/techreborn/blockstates/deepslate_sphalerite_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/deepslate/deepslate_sphalerite_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/deepslate_tin_ore.json b/src/main/resources/assets/techreborn/blockstates/deepslate_tin_ore.json deleted file mode 100644 index 595d0215f..000000000 --- a/src/main/resources/assets/techreborn/blockstates/deepslate_tin_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/deepslate/deepslate_tin_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/deepslate_tungsten_ore.json b/src/main/resources/assets/techreborn/blockstates/deepslate_tungsten_ore.json deleted file mode 100644 index e3f55ad5b..000000000 --- a/src/main/resources/assets/techreborn/blockstates/deepslate_tungsten_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/deepslate/deepslate_tungsten_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/electrum_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/electrum_storage_block_slab.json deleted file mode 100644 index 6cadfd538..000000000 --- a/src/main/resources/assets/techreborn/blockstates/electrum_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/electrum_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/electrum_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/electrum_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/electrum_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/electrum_storage_block_stairs.json deleted file mode 100644 index 0c5dd28f2..000000000 --- a/src/main/resources/assets/techreborn/blockstates/electrum_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/electrum_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/electrum_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/electrum_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/electrum_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/electrum_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/electrum_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/electrum_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/electrum_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/electrum_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/electrum_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/electrum_storage_block_wall.json deleted file mode 100644 index 0843fa5f8..000000000 --- a/src/main/resources/assets/techreborn/blockstates/electrum_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/electrum_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/electrum_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/electrum_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/electrum_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/electrum_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/electrum_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/electrum_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/electrum_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/electrum_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/galena_ore.json b/src/main/resources/assets/techreborn/blockstates/galena_ore.json deleted file mode 100644 index 14b35899c..000000000 --- a/src/main/resources/assets/techreborn/blockstates/galena_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/galena_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/hot_tungstensteel_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/hot_tungstensteel_storage_block_slab.json deleted file mode 100644 index 0503ae55e..000000000 --- a/src/main/resources/assets/techreborn/blockstates/hot_tungstensteel_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/hot_tungstensteel_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/hot_tungstensteel_storage_block_stairs.json deleted file mode 100644 index 8c0cf5b38..000000000 --- a/src/main/resources/assets/techreborn/blockstates/hot_tungstensteel_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/hot_tungstensteel_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/hot_tungstensteel_storage_block_wall.json deleted file mode 100644 index a1eda937a..000000000 --- a/src/main/resources/assets/techreborn/blockstates/hot_tungstensteel_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/hot_tungstensteel_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/invar_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/invar_storage_block_slab.json deleted file mode 100644 index 866d01661..000000000 --- a/src/main/resources/assets/techreborn/blockstates/invar_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/invar_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/invar_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/invar_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/invar_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/invar_storage_block_stairs.json deleted file mode 100644 index c82bea525..000000000 --- a/src/main/resources/assets/techreborn/blockstates/invar_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/invar_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/invar_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/invar_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/invar_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/invar_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/invar_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/invar_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/invar_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/invar_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/invar_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/invar_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/invar_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/invar_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/invar_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/invar_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/invar_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/invar_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/invar_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/invar_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/invar_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/invar_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/invar_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/invar_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/invar_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/invar_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/invar_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/invar_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/invar_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/invar_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/invar_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/invar_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/invar_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/invar_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/invar_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/invar_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/invar_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/invar_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/invar_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/invar_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/invar_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/invar_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/invar_storage_block_wall.json deleted file mode 100644 index 4b11a38bd..000000000 --- a/src/main/resources/assets/techreborn/blockstates/invar_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/invar_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/invar_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/invar_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/invar_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/invar_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/invar_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/invar_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/invar_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/invar_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/iridium_ore.json b/src/main/resources/assets/techreborn/blockstates/iridium_ore.json deleted file mode 100644 index 6ebecd7c0..000000000 --- a/src/main/resources/assets/techreborn/blockstates/iridium_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/iridium_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/iridium_reinforced_stone_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/iridium_reinforced_stone_storage_block_slab.json deleted file mode 100644 index f0b69db93..000000000 --- a/src/main/resources/assets/techreborn/blockstates/iridium_reinforced_stone_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/iridium_reinforced_stone_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/iridium_reinforced_stone_storage_block_stairs.json deleted file mode 100644 index c3d448c20..000000000 --- a/src/main/resources/assets/techreborn/blockstates/iridium_reinforced_stone_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/iridium_reinforced_stone_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/iridium_reinforced_stone_storage_block_wall.json deleted file mode 100644 index d97df69d4..000000000 --- a/src/main/resources/assets/techreborn/blockstates/iridium_reinforced_stone_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/iridium_reinforced_tungstensteel_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/iridium_reinforced_tungstensteel_storage_block_slab.json deleted file mode 100644 index 9d63e4f45..000000000 --- a/src/main/resources/assets/techreborn/blockstates/iridium_reinforced_tungstensteel_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/iridium_reinforced_tungstensteel_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/iridium_reinforced_tungstensteel_storage_block_stairs.json deleted file mode 100644 index 2ff096c26..000000000 --- a/src/main/resources/assets/techreborn/blockstates/iridium_reinforced_tungstensteel_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/iridium_reinforced_tungstensteel_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/iridium_reinforced_tungstensteel_storage_block_wall.json deleted file mode 100644 index 18b4589b8..000000000 --- a/src/main/resources/assets/techreborn/blockstates/iridium_reinforced_tungstensteel_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/iridium_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/iridium_storage_block_slab.json deleted file mode 100644 index 978e0d072..000000000 --- a/src/main/resources/assets/techreborn/blockstates/iridium_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/iridium_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/iridium_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/iridium_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/iridium_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/iridium_storage_block_stairs.json deleted file mode 100644 index a819eac95..000000000 --- a/src/main/resources/assets/techreborn/blockstates/iridium_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/iridium_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/iridium_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/iridium_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/iridium_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/iridium_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/iridium_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/iridium_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/iridium_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/iridium_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/iridium_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/iridium_storage_block_wall.json deleted file mode 100644 index 6131d4116..000000000 --- a/src/main/resources/assets/techreborn/blockstates/iridium_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/iridium_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/iridium_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/iridium_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/iridium_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/iridium_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/iridium_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/iridium_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/iridium_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/iridium_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/lead_ore.json b/src/main/resources/assets/techreborn/blockstates/lead_ore.json deleted file mode 100644 index b2c1e7de3..000000000 --- a/src/main/resources/assets/techreborn/blockstates/lead_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/lead_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/lead_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/lead_storage_block_slab.json deleted file mode 100644 index 0d5a1f61f..000000000 --- a/src/main/resources/assets/techreborn/blockstates/lead_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/lead_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/lead_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/lead_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/lead_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/lead_storage_block_stairs.json deleted file mode 100644 index f35be9384..000000000 --- a/src/main/resources/assets/techreborn/blockstates/lead_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/lead_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/lead_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/lead_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/lead_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/lead_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/lead_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/lead_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/lead_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/lead_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/lead_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/lead_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/lead_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/lead_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/lead_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/lead_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/lead_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/lead_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/lead_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/lead_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/lead_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/lead_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/lead_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/lead_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/lead_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/lead_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/lead_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/lead_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/lead_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/lead_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/lead_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/lead_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/lead_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/lead_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/lead_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/lead_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/lead_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/lead_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/lead_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/lead_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/lead_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/lead_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/lead_storage_block_wall.json deleted file mode 100644 index 2f09d527e..000000000 --- a/src/main/resources/assets/techreborn/blockstates/lead_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/lead_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/lead_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/lead_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/lead_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/lead_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/lead_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/lead_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/lead_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/lead_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/nickel_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/nickel_storage_block_slab.json deleted file mode 100644 index 02323d6be..000000000 --- a/src/main/resources/assets/techreborn/blockstates/nickel_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/nickel_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/nickel_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/nickel_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/nickel_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/nickel_storage_block_stairs.json deleted file mode 100644 index 34bf88f75..000000000 --- a/src/main/resources/assets/techreborn/blockstates/nickel_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/nickel_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/nickel_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/nickel_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/nickel_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/nickel_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/nickel_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/nickel_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/nickel_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/nickel_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/nickel_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/nickel_storage_block_wall.json deleted file mode 100644 index a41172e36..000000000 --- a/src/main/resources/assets/techreborn/blockstates/nickel_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/nickel_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/nickel_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/nickel_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/nickel_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/nickel_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/nickel_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/nickel_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/nickel_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/nickel_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/peridot_ore.json b/src/main/resources/assets/techreborn/blockstates/peridot_ore.json deleted file mode 100644 index 6a3bfb465..000000000 --- a/src/main/resources/assets/techreborn/blockstates/peridot_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/peridot_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/peridot_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/peridot_storage_block_slab.json deleted file mode 100644 index bfb6d8397..000000000 --- a/src/main/resources/assets/techreborn/blockstates/peridot_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/peridot_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/peridot_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/peridot_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/peridot_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/peridot_storage_block_stairs.json deleted file mode 100644 index db72af530..000000000 --- a/src/main/resources/assets/techreborn/blockstates/peridot_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/peridot_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/peridot_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/peridot_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/peridot_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/peridot_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/peridot_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/peridot_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/peridot_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/peridot_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/peridot_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/peridot_storage_block_wall.json deleted file mode 100644 index 5e2fc1393..000000000 --- a/src/main/resources/assets/techreborn/blockstates/peridot_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/peridot_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/peridot_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/peridot_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/peridot_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/peridot_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/peridot_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/peridot_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/peridot_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/peridot_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/platinum_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/platinum_storage_block_slab.json deleted file mode 100644 index 32fd54afb..000000000 --- a/src/main/resources/assets/techreborn/blockstates/platinum_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/platinum_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/platinum_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/platinum_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/platinum_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/platinum_storage_block_stairs.json deleted file mode 100644 index 2440af3d4..000000000 --- a/src/main/resources/assets/techreborn/blockstates/platinum_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/platinum_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/platinum_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/platinum_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/platinum_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/platinum_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/platinum_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/platinum_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/platinum_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/platinum_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/platinum_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/platinum_storage_block_wall.json deleted file mode 100644 index 347b0f524..000000000 --- a/src/main/resources/assets/techreborn/blockstates/platinum_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/platinum_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/platinum_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/platinum_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/platinum_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/platinum_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/platinum_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/platinum_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/platinum_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/platinum_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/pyrite_ore.json b/src/main/resources/assets/techreborn/blockstates/pyrite_ore.json deleted file mode 100644 index 6719e4bcc..000000000 --- a/src/main/resources/assets/techreborn/blockstates/pyrite_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/pyrite_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/raw_iridium_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/raw_iridium_storage_block_slab.json deleted file mode 100644 index 2a81a025c..000000000 --- a/src/main/resources/assets/techreborn/blockstates/raw_iridium_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/raw_iridium_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/raw_iridium_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/raw_iridium_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/raw_iridium_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/raw_iridium_storage_block_stairs.json deleted file mode 100644 index 6e337c84c..000000000 --- a/src/main/resources/assets/techreborn/blockstates/raw_iridium_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/raw_iridium_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/raw_iridium_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/raw_iridium_storage_block_wall.json deleted file mode 100644 index 402565557..000000000 --- a/src/main/resources/assets/techreborn/blockstates/raw_iridium_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/raw_iridium_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/raw_iridium_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/raw_iridium_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/raw_iridium_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/raw_iridium_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/raw_iridium_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/raw_iridium_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/raw_iridium_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/raw_iridium_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/raw_lead_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/raw_lead_storage_block_slab.json deleted file mode 100644 index fc15db816..000000000 --- a/src/main/resources/assets/techreborn/blockstates/raw_lead_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/raw_lead_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/raw_lead_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/raw_lead_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/raw_lead_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/raw_lead_storage_block_stairs.json deleted file mode 100644 index 9dc966f02..000000000 --- a/src/main/resources/assets/techreborn/blockstates/raw_lead_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/raw_lead_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/raw_lead_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/raw_lead_storage_block_wall.json deleted file mode 100644 index e150bc665..000000000 --- a/src/main/resources/assets/techreborn/blockstates/raw_lead_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/raw_lead_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/raw_lead_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/raw_lead_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/raw_lead_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/raw_lead_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/raw_lead_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/raw_lead_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/raw_lead_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/raw_lead_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/raw_silver_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/raw_silver_storage_block_slab.json deleted file mode 100644 index 4c1558744..000000000 --- a/src/main/resources/assets/techreborn/blockstates/raw_silver_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/raw_silver_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/raw_silver_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/raw_silver_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/raw_silver_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/raw_silver_storage_block_stairs.json deleted file mode 100644 index 8760f8d75..000000000 --- a/src/main/resources/assets/techreborn/blockstates/raw_silver_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/raw_silver_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/raw_silver_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/raw_silver_storage_block_wall.json deleted file mode 100644 index 1873ae56d..000000000 --- a/src/main/resources/assets/techreborn/blockstates/raw_silver_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/raw_silver_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/raw_silver_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/raw_silver_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/raw_silver_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/raw_silver_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/raw_silver_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/raw_silver_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/raw_silver_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/raw_silver_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/raw_tin_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/raw_tin_storage_block_slab.json deleted file mode 100644 index b32abca03..000000000 --- a/src/main/resources/assets/techreborn/blockstates/raw_tin_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/raw_tin_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/raw_tin_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/raw_tin_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/raw_tin_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/raw_tin_storage_block_stairs.json deleted file mode 100644 index 7e4db627b..000000000 --- a/src/main/resources/assets/techreborn/blockstates/raw_tin_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/raw_tin_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/raw_tin_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/raw_tin_storage_block_wall.json deleted file mode 100644 index b8f38c9a8..000000000 --- a/src/main/resources/assets/techreborn/blockstates/raw_tin_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/raw_tin_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/raw_tin_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/raw_tin_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/raw_tin_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/raw_tin_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/raw_tin_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/raw_tin_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/raw_tin_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/raw_tin_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/raw_tungsten_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/raw_tungsten_storage_block_slab.json deleted file mode 100644 index 064aab50c..000000000 --- a/src/main/resources/assets/techreborn/blockstates/raw_tungsten_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/raw_tungsten_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/raw_tungsten_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/raw_tungsten_storage_block_stairs.json deleted file mode 100644 index f09709ceb..000000000 --- a/src/main/resources/assets/techreborn/blockstates/raw_tungsten_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/raw_tungsten_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/raw_tungsten_storage_block_wall.json deleted file mode 100644 index 6e941bf70..000000000 --- a/src/main/resources/assets/techreborn/blockstates/raw_tungsten_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/raw_tungsten_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/red_garnet_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/red_garnet_storage_block_slab.json deleted file mode 100644 index cfc842809..000000000 --- a/src/main/resources/assets/techreborn/blockstates/red_garnet_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/red_garnet_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/red_garnet_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/red_garnet_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/red_garnet_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/red_garnet_storage_block_stairs.json deleted file mode 100644 index 5538e758f..000000000 --- a/src/main/resources/assets/techreborn/blockstates/red_garnet_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/red_garnet_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/red_garnet_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/red_garnet_storage_block_wall.json deleted file mode 100644 index 4685229f8..000000000 --- a/src/main/resources/assets/techreborn/blockstates/red_garnet_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/red_garnet_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/red_garnet_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/red_garnet_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/red_garnet_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/red_garnet_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/red_garnet_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/red_garnet_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/red_garnet_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/red_garnet_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/refined_iron_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/refined_iron_storage_block_slab.json deleted file mode 100644 index fe6628d0d..000000000 --- a/src/main/resources/assets/techreborn/blockstates/refined_iron_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/refined_iron_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/refined_iron_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/refined_iron_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/refined_iron_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/refined_iron_storage_block_stairs.json deleted file mode 100644 index 2f3174d4a..000000000 --- a/src/main/resources/assets/techreborn/blockstates/refined_iron_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/refined_iron_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/refined_iron_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/refined_iron_storage_block_wall.json deleted file mode 100644 index baa351a86..000000000 --- a/src/main/resources/assets/techreborn/blockstates/refined_iron_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/refined_iron_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/refined_iron_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/refined_iron_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/refined_iron_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/refined_iron_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/refined_iron_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/refined_iron_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/refined_iron_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/refined_iron_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/ruby_ore.json b/src/main/resources/assets/techreborn/blockstates/ruby_ore.json deleted file mode 100644 index 169367857..000000000 --- a/src/main/resources/assets/techreborn/blockstates/ruby_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/ruby_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/ruby_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/ruby_storage_block_slab.json deleted file mode 100644 index 02bafaa18..000000000 --- a/src/main/resources/assets/techreborn/blockstates/ruby_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/ruby_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/ruby_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/ruby_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/ruby_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/ruby_storage_block_stairs.json deleted file mode 100644 index 730d817aa..000000000 --- a/src/main/resources/assets/techreborn/blockstates/ruby_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/ruby_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/ruby_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/ruby_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/ruby_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/ruby_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/ruby_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/ruby_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/ruby_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/ruby_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/ruby_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/ruby_storage_block_wall.json deleted file mode 100644 index 478393ba1..000000000 --- a/src/main/resources/assets/techreborn/blockstates/ruby_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/ruby_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/ruby_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/ruby_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/ruby_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/ruby_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/ruby_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/ruby_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/ruby_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/ruby_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/sapphire_ore.json b/src/main/resources/assets/techreborn/blockstates/sapphire_ore.json deleted file mode 100644 index 90b229ee7..000000000 --- a/src/main/resources/assets/techreborn/blockstates/sapphire_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/sapphire_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/sapphire_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/sapphire_storage_block_slab.json deleted file mode 100644 index 7f01684a1..000000000 --- a/src/main/resources/assets/techreborn/blockstates/sapphire_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/sapphire_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/sapphire_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/sapphire_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/sapphire_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/sapphire_storage_block_stairs.json deleted file mode 100644 index 6ee0426d5..000000000 --- a/src/main/resources/assets/techreborn/blockstates/sapphire_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/sapphire_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/sapphire_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/sapphire_storage_block_wall.json deleted file mode 100644 index 55f21ef79..000000000 --- a/src/main/resources/assets/techreborn/blockstates/sapphire_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/sapphire_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/sapphire_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/sapphire_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/sapphire_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/sapphire_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/sapphire_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/sapphire_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/sapphire_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/sapphire_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/sheldonite_ore.json b/src/main/resources/assets/techreborn/blockstates/sheldonite_ore.json deleted file mode 100644 index 3f1c0b6ef..000000000 --- a/src/main/resources/assets/techreborn/blockstates/sheldonite_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/sheldonite_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/silver_ore.json b/src/main/resources/assets/techreborn/blockstates/silver_ore.json deleted file mode 100644 index 6c5be9cab..000000000 --- a/src/main/resources/assets/techreborn/blockstates/silver_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/silver_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/silver_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/silver_storage_block_slab.json deleted file mode 100644 index 5f0146870..000000000 --- a/src/main/resources/assets/techreborn/blockstates/silver_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/silver_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/silver_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/silver_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/silver_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/silver_storage_block_stairs.json deleted file mode 100644 index 6b4288c44..000000000 --- a/src/main/resources/assets/techreborn/blockstates/silver_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/silver_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/silver_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/silver_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/silver_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/silver_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/silver_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/silver_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/silver_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/silver_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/silver_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/silver_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/silver_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/silver_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/silver_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/silver_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/silver_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/silver_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/silver_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/silver_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/silver_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/silver_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/silver_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/silver_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/silver_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/silver_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/silver_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/silver_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/silver_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/silver_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/silver_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/silver_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/silver_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/silver_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/silver_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/silver_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/silver_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/silver_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/silver_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/silver_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/silver_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/silver_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/silver_storage_block_wall.json deleted file mode 100644 index 613aab6fa..000000000 --- a/src/main/resources/assets/techreborn/blockstates/silver_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/silver_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/silver_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/silver_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/silver_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/silver_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/silver_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/silver_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/silver_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/silver_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/sodalite_ore.json b/src/main/resources/assets/techreborn/blockstates/sodalite_ore.json deleted file mode 100644 index 3ff1755f0..000000000 --- a/src/main/resources/assets/techreborn/blockstates/sodalite_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/sodalite_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/sphalerite_ore.json b/src/main/resources/assets/techreborn/blockstates/sphalerite_ore.json deleted file mode 100644 index fc0ba1e9d..000000000 --- a/src/main/resources/assets/techreborn/blockstates/sphalerite_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/sphalerite_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/steel_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/steel_storage_block_slab.json deleted file mode 100644 index be46b4b13..000000000 --- a/src/main/resources/assets/techreborn/blockstates/steel_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/steel_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/steel_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/steel_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/steel_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/steel_storage_block_stairs.json deleted file mode 100644 index c2c365a2d..000000000 --- a/src/main/resources/assets/techreborn/blockstates/steel_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/steel_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/steel_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/steel_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/steel_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/steel_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/steel_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/steel_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/steel_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/steel_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/steel_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/steel_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/steel_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/steel_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/steel_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/steel_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/steel_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/steel_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/steel_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/steel_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/steel_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/steel_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/steel_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/steel_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/steel_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/steel_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/steel_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/steel_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/steel_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/steel_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/steel_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/steel_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/steel_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/steel_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/steel_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/steel_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/steel_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/steel_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/steel_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/steel_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/steel_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/steel_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/steel_storage_block_wall.json deleted file mode 100644 index 92488c23a..000000000 --- a/src/main/resources/assets/techreborn/blockstates/steel_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/steel_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/steel_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/steel_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/steel_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/steel_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/steel_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/steel_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/steel_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/steel_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/tin_ore.json b/src/main/resources/assets/techreborn/blockstates/tin_ore.json deleted file mode 100644 index 04cdb250a..000000000 --- a/src/main/resources/assets/techreborn/blockstates/tin_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/tin_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/tin_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/tin_storage_block_slab.json deleted file mode 100644 index 30a94ffe5..000000000 --- a/src/main/resources/assets/techreborn/blockstates/tin_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/tin_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/tin_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/tin_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/tin_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/tin_storage_block_stairs.json deleted file mode 100644 index 27016bceb..000000000 --- a/src/main/resources/assets/techreborn/blockstates/tin_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/tin_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/tin_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/tin_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/tin_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/tin_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/tin_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/tin_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/tin_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/tin_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/tin_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/tin_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/tin_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/tin_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/tin_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/tin_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/tin_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/tin_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/tin_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/tin_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/tin_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/tin_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/tin_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/tin_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/tin_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/tin_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/tin_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/tin_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/tin_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/tin_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/tin_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/tin_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/tin_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/tin_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/tin_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/tin_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/tin_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/tin_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/tin_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/tin_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/tin_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/tin_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/tin_storage_block_wall.json deleted file mode 100644 index 7975e4a27..000000000 --- a/src/main/resources/assets/techreborn/blockstates/tin_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/tin_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/tin_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/tin_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/tin_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/tin_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/tin_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/tin_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/tin_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/tin_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/titanium_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/titanium_storage_block_slab.json deleted file mode 100644 index 533ee8db5..000000000 --- a/src/main/resources/assets/techreborn/blockstates/titanium_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/titanium_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/titanium_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/titanium_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/titanium_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/titanium_storage_block_stairs.json deleted file mode 100644 index c99053734..000000000 --- a/src/main/resources/assets/techreborn/blockstates/titanium_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/titanium_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/titanium_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/titanium_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/titanium_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/titanium_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/titanium_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/titanium_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/titanium_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/titanium_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/titanium_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/titanium_storage_block_wall.json deleted file mode 100644 index 869be8298..000000000 --- a/src/main/resources/assets/techreborn/blockstates/titanium_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/titanium_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/titanium_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/titanium_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/titanium_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/titanium_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/titanium_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/titanium_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/titanium_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/titanium_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/tungsten_ore.json b/src/main/resources/assets/techreborn/blockstates/tungsten_ore.json deleted file mode 100644 index 5a95c0472..000000000 --- a/src/main/resources/assets/techreborn/blockstates/tungsten_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "techreborn:block/ore/tungsten_ore" } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/tungsten_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/tungsten_storage_block_slab.json deleted file mode 100644 index 9e87bad34..000000000 --- a/src/main/resources/assets/techreborn/blockstates/tungsten_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/tungsten_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/tungsten_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/tungsten_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/tungsten_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/tungsten_storage_block_stairs.json deleted file mode 100644 index cafee78e6..000000000 --- a/src/main/resources/assets/techreborn/blockstates/tungsten_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/tungsten_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/tungsten_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/tungsten_storage_block_wall.json deleted file mode 100644 index 0de4f069f..000000000 --- a/src/main/resources/assets/techreborn/blockstates/tungsten_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/tungsten_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/tungsten_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/tungsten_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/tungsten_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/tungsten_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/tungsten_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/tungsten_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/tungsten_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/tungsten_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/tungstensteel_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/tungstensteel_storage_block_slab.json deleted file mode 100644 index 037e5d118..000000000 --- a/src/main/resources/assets/techreborn/blockstates/tungstensteel_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/tungstensteel_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/tungstensteel_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/tungstensteel_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/tungstensteel_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/tungstensteel_storage_block_stairs.json deleted file mode 100644 index fac9584ec..000000000 --- a/src/main/resources/assets/techreborn/blockstates/tungstensteel_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/tungstensteel_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/tungstensteel_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/tungstensteel_storage_block_wall.json deleted file mode 100644 index 8d03b611b..000000000 --- a/src/main/resources/assets/techreborn/blockstates/tungstensteel_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/tungstensteel_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/tungstensteel_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/tungstensteel_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/tungstensteel_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/tungstensteel_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/tungstensteel_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/tungstensteel_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/tungstensteel_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/tungstensteel_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/yellow_garnet_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/yellow_garnet_storage_block_slab.json deleted file mode 100644 index a0e3c8f7a..000000000 --- a/src/main/resources/assets/techreborn/blockstates/yellow_garnet_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/yellow_garnet_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/yellow_garnet_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/yellow_garnet_storage_block_stairs.json deleted file mode 100644 index ba10aa8b9..000000000 --- a/src/main/resources/assets/techreborn/blockstates/yellow_garnet_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/yellow_garnet_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/yellow_garnet_storage_block_wall.json deleted file mode 100644 index e5290576a..000000000 --- a/src/main/resources/assets/techreborn/blockstates/yellow_garnet_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/yellow_garnet_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/zinc_storage_block_slab.json b/src/main/resources/assets/techreborn/blockstates/zinc_storage_block_slab.json deleted file mode 100644 index c654ca528..000000000 --- a/src/main/resources/assets/techreborn/blockstates/zinc_storage_block_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "techreborn:block/storage/zinc_storage_block_slab" - }, - "type=double": { - "model": "techreborn:block/storage/zinc_storage_block" - }, - "type=top": { - "model": "techreborn:block/storage/zinc_storage_block_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/zinc_storage_block_stairs.json b/src/main/resources/assets/techreborn/blockstates/zinc_storage_block_stairs.json deleted file mode 100644 index e1abdfa2c..000000000 --- a/src/main/resources/assets/techreborn/blockstates/zinc_storage_block_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "techreborn:block/storage/zinc_storage_block_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "techreborn:block/storage/zinc_storage_block_stairs", - "x": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "techreborn:block/storage/zinc_storage_block_stairs", - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "techreborn:block/storage/zinc_storage_block_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "techreborn:block/storage/zinc_storage_block_stairs", - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "techreborn:block/storage/zinc_storage_block_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=west,half=bottom,shape=straight": { - "model": "techreborn:block/storage/zinc_storage_block_stairs", - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "techreborn:block/storage/zinc_storage_block_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "techreborn:block/storage/zinc_storage_block_stairs", - "x": 180, - "y": 180, - "uvlock": true - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/zinc_storage_block_wall.json b/src/main/resources/assets/techreborn/blockstates/zinc_storage_block_wall.json deleted file mode 100644 index eec0970a7..000000000 --- a/src/main/resources/assets/techreborn/blockstates/zinc_storage_block_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "techreborn:block/storage/zinc_storage_block_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "techreborn:block/storage/zinc_storage_block_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "techreborn:block/storage/zinc_storage_block_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "techreborn:block/storage/zinc_storage_block_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "techreborn:block/storage/zinc_storage_block_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "techreborn:block/storage/zinc_storage_block_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "techreborn:block/storage/zinc_storage_block_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "techreborn:block/storage/zinc_storage_block_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "techreborn:block/storage/zinc_storage_block_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/ore/bauxite_ore.json b/src/main/resources/assets/techreborn/models/block/ore/bauxite_ore.json deleted file mode 100644 index cc0afa948..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/bauxite_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/bauxite_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/cinnabar_ore.json b/src/main/resources/assets/techreborn/models/block/ore/cinnabar_ore.json deleted file mode 100644 index 79bf1c53d..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/cinnabar_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/cinnabar_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/copper_ore.json b/src/main/resources/assets/techreborn/models/block/ore/copper_ore.json deleted file mode 100644 index ead824326..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/copper_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/copper_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_bauxite_ore.json b/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_bauxite_ore.json deleted file mode 100644 index 2110b7407..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_bauxite_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/deepslate/deepslate_bauxite_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_galena_ore.json b/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_galena_ore.json deleted file mode 100644 index 9272c6c3e..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_galena_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/deepslate/deepslate_galena_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_iridium_ore.json b/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_iridium_ore.json deleted file mode 100644 index b5b5cabec..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_iridium_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/deepslate/deepslate_iridium_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_lead_ore.json b/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_lead_ore.json deleted file mode 100644 index 5558545b3..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_lead_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/deepslate/deepslate_lead_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_peridot_ore.json b/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_peridot_ore.json deleted file mode 100644 index 7b8d44350..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_peridot_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/deepslate/deepslate_peridot_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_ruby_ore.json b/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_ruby_ore.json deleted file mode 100644 index 8c5ad9545..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_ruby_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/deepslate/deepslate_ruby_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_sapphire_ore.json b/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_sapphire_ore.json deleted file mode 100644 index 476cd221b..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_sapphire_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/deepslate/deepslate_sapphire_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_sheldonite_ore.json b/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_sheldonite_ore.json deleted file mode 100644 index 7c6ae696b..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_sheldonite_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/deepslate/deepslate_sheldonite_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_silver_ore.json b/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_silver_ore.json deleted file mode 100644 index 869040e60..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_silver_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/deepslate/deepslate_silver_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_sodalite_ore.json b/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_sodalite_ore.json deleted file mode 100644 index 66065fe71..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_sodalite_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/deepslate/deepslate_sodalite_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_tin_ore.json b/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_tin_ore.json deleted file mode 100644 index 2ebce56ee..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_tin_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/deepslate/deepslate_tin_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_tungsten_ore.json b/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_tungsten_ore.json deleted file mode 100644 index c319be753..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/deepslate/deepslate_tungsten_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/deepslate/deepslate_tungsten_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/galena_ore.json b/src/main/resources/assets/techreborn/models/block/ore/galena_ore.json deleted file mode 100644 index cbf4f5d8d..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/galena_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/galena_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/iridium_ore.json b/src/main/resources/assets/techreborn/models/block/ore/iridium_ore.json deleted file mode 100644 index 9453b20cd..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/iridium_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/iridium_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/lead_ore.json b/src/main/resources/assets/techreborn/models/block/ore/lead_ore.json deleted file mode 100644 index f2257d360..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/lead_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/lead_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/peridot_ore.json b/src/main/resources/assets/techreborn/models/block/ore/peridot_ore.json deleted file mode 100644 index 728d140a8..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/peridot_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/peridot_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/pyrite_ore.json b/src/main/resources/assets/techreborn/models/block/ore/pyrite_ore.json deleted file mode 100644 index 06c4bdede..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/pyrite_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/pyrite_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/ruby_ore.json b/src/main/resources/assets/techreborn/models/block/ore/ruby_ore.json deleted file mode 100644 index 315887195..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/ruby_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/ruby_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/sapphire_ore.json b/src/main/resources/assets/techreborn/models/block/ore/sapphire_ore.json deleted file mode 100644 index 292ed934c..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/sapphire_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/sapphire_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/sheldonite_ore.json b/src/main/resources/assets/techreborn/models/block/ore/sheldonite_ore.json deleted file mode 100644 index d813208f9..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/sheldonite_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/sheldonite_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/silver_ore.json b/src/main/resources/assets/techreborn/models/block/ore/silver_ore.json deleted file mode 100644 index 6800f9092..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/silver_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/silver_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/sodalite_ore.json b/src/main/resources/assets/techreborn/models/block/ore/sodalite_ore.json deleted file mode 100644 index 5aad61d51..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/sodalite_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/sodalite_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/sphalerite_ore.json b/src/main/resources/assets/techreborn/models/block/ore/sphalerite_ore.json deleted file mode 100644 index a88bd38a4..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/sphalerite_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/sphalerite_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/tin_ore.json b/src/main/resources/assets/techreborn/models/block/ore/tin_ore.json deleted file mode 100644 index 836408397..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/tin_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/tin_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/ore/tungsten_ore.json b/src/main/resources/assets/techreborn/models/block/ore/tungsten_ore.json deleted file mode 100644 index b90d80904..000000000 --- a/src/main/resources/assets/techreborn/models/block/ore/tungsten_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/ore/tungsten_ore" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block.json deleted file mode 100644 index 39854c224..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/advanced_alloy_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_slab.json deleted file mode 100644 index 0a52367e3..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/advanced_alloy_storage_block", - "top": "techreborn:block/storage/advanced_alloy_storage_block", - "side": "techreborn:block/storage/advanced_alloy_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_slab_top.json deleted file mode 100644 index 9aebbff8f..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/advanced_alloy_storage_block", - "top": "techreborn:block/storage/advanced_alloy_storage_block", - "side": "techreborn:block/storage/advanced_alloy_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_stairs.json deleted file mode 100644 index 74dc2f6b6..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/advanced_alloy_storage_block", - "top": "techreborn:block/storage/advanced_alloy_storage_block", - "side": "techreborn:block/storage/advanced_alloy_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_stairs_inner.json deleted file mode 100644 index 9787e3f41..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/advanced_alloy_storage_block", - "top": "techreborn:block/storage/advanced_alloy_storage_block", - "side": "techreborn:block/storage/advanced_alloy_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_stairs_outer.json deleted file mode 100644 index fba4edbde..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/advanced_alloy_storage_block", - "top": "techreborn:block/storage/advanced_alloy_storage_block", - "side": "techreborn:block/storage/advanced_alloy_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_wall_inventory.json deleted file mode 100644 index 018aba3be..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/advanced_alloy_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_wall_post.json deleted file mode 100644 index b5682bd99..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/advanced_alloy_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_wall_side.json deleted file mode 100644 index ec8ed9cee..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/advanced_alloy_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_wall_side_tall.json deleted file mode 100644 index 7b719afad..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/advanced_alloy_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/advanced_alloy_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block.json deleted file mode 100644 index 0b97436cc..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/aluminum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_slab.json deleted file mode 100644 index 0db7298a4..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/aluminum_storage_block", - "top": "techreborn:block/storage/aluminum_storage_block", - "side": "techreborn:block/storage/aluminum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_slab_top.json deleted file mode 100644 index 370c47f23..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/aluminum_storage_block", - "top": "techreborn:block/storage/aluminum_storage_block", - "side": "techreborn:block/storage/aluminum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_stairs.json deleted file mode 100644 index 9c6a55dc8..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/aluminum_storage_block", - "top": "techreborn:block/storage/aluminum_storage_block", - "side": "techreborn:block/storage/aluminum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_stairs_inner.json deleted file mode 100644 index 78d2c61b7..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/aluminum_storage_block", - "top": "techreborn:block/storage/aluminum_storage_block", - "side": "techreborn:block/storage/aluminum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_stairs_outer.json deleted file mode 100644 index a4f92ebaa..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/aluminum_storage_block", - "top": "techreborn:block/storage/aluminum_storage_block", - "side": "techreborn:block/storage/aluminum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_wall_inventory.json deleted file mode 100644 index a193de326..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/aluminum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_wall_post.json deleted file mode 100644 index 97879a38d..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/aluminum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_wall_side.json deleted file mode 100644 index f8d30e863..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/aluminum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_wall_side_tall.json deleted file mode 100644 index 45e31d3cd..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/aluminum_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/aluminum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block.json deleted file mode 100644 index e7c52bf65..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/brass_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_slab.json deleted file mode 100644 index 19a2648ea..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/brass_storage_block", - "top": "techreborn:block/storage/brass_storage_block", - "side": "techreborn:block/storage/brass_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_slab_top.json deleted file mode 100644 index df2eee043..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/brass_storage_block", - "top": "techreborn:block/storage/brass_storage_block", - "side": "techreborn:block/storage/brass_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_stairs.json deleted file mode 100644 index a50409bb2..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/brass_storage_block", - "top": "techreborn:block/storage/brass_storage_block", - "side": "techreborn:block/storage/brass_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_stairs_inner.json deleted file mode 100644 index 37444a43f..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/brass_storage_block", - "top": "techreborn:block/storage/brass_storage_block", - "side": "techreborn:block/storage/brass_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_stairs_outer.json deleted file mode 100644 index 1d95bd995..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/brass_storage_block", - "top": "techreborn:block/storage/brass_storage_block", - "side": "techreborn:block/storage/brass_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_wall_inventory.json deleted file mode 100644 index 13ac0517a..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/brass_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_wall_post.json deleted file mode 100644 index 94a4c4efe..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/brass_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_wall_side.json deleted file mode 100644 index 30fbdd93c..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/brass_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_wall_side_tall.json deleted file mode 100644 index 3a246e8af..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/brass_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/brass_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block.json deleted file mode 100644 index 1039a76ec..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/bronze_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_slab.json deleted file mode 100644 index 2355ed08b..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/bronze_storage_block", - "top": "techreborn:block/storage/bronze_storage_block", - "side": "techreborn:block/storage/bronze_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_slab_top.json deleted file mode 100644 index 1f9ddef25..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/bronze_storage_block", - "top": "techreborn:block/storage/bronze_storage_block", - "side": "techreborn:block/storage/bronze_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_stairs.json deleted file mode 100644 index dbb940889..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/bronze_storage_block", - "top": "techreborn:block/storage/bronze_storage_block", - "side": "techreborn:block/storage/bronze_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_stairs_inner.json deleted file mode 100644 index 2021f89fb..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/bronze_storage_block", - "top": "techreborn:block/storage/bronze_storage_block", - "side": "techreborn:block/storage/bronze_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_stairs_outer.json deleted file mode 100644 index 6290b1444..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/bronze_storage_block", - "top": "techreborn:block/storage/bronze_storage_block", - "side": "techreborn:block/storage/bronze_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_wall_inventory.json deleted file mode 100644 index 67af9e53e..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/bronze_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_wall_post.json deleted file mode 100644 index a63040b58..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/bronze_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_wall_side.json deleted file mode 100644 index a04beecc4..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/bronze_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_wall_side_tall.json deleted file mode 100644 index 370e0b138..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/bronze_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/bronze_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block.json deleted file mode 100644 index a64057a5d..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/chrome_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_slab.json deleted file mode 100644 index 97fc98905..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/chrome_storage_block", - "top": "techreborn:block/storage/chrome_storage_block", - "side": "techreborn:block/storage/chrome_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_slab_top.json deleted file mode 100644 index 228adfbca..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/chrome_storage_block", - "top": "techreborn:block/storage/chrome_storage_block", - "side": "techreborn:block/storage/chrome_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_stairs.json deleted file mode 100644 index 24433d44b..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/chrome_storage_block", - "top": "techreborn:block/storage/chrome_storage_block", - "side": "techreborn:block/storage/chrome_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_stairs_inner.json deleted file mode 100644 index 3f75681e6..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/chrome_storage_block", - "top": "techreborn:block/storage/chrome_storage_block", - "side": "techreborn:block/storage/chrome_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_stairs_outer.json deleted file mode 100644 index 409c55081..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/chrome_storage_block", - "top": "techreborn:block/storage/chrome_storage_block", - "side": "techreborn:block/storage/chrome_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_wall_inventory.json deleted file mode 100644 index 05a5ab9a5..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/chrome_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_wall_post.json deleted file mode 100644 index 9226f7cdd..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/chrome_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_wall_side.json deleted file mode 100644 index 3cf59c767..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/chrome_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_wall_side_tall.json deleted file mode 100644 index c27dc4f43..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/chrome_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/chrome_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block.json deleted file mode 100644 index 7b608cea6..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/electrum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_slab.json deleted file mode 100644 index bb0afddc8..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/electrum_storage_block", - "top": "techreborn:block/storage/electrum_storage_block", - "side": "techreborn:block/storage/electrum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_slab_top.json deleted file mode 100644 index 6e26122bd..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/electrum_storage_block", - "top": "techreborn:block/storage/electrum_storage_block", - "side": "techreborn:block/storage/electrum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_stairs.json deleted file mode 100644 index cb8857fae..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/electrum_storage_block", - "top": "techreborn:block/storage/electrum_storage_block", - "side": "techreborn:block/storage/electrum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_stairs_inner.json deleted file mode 100644 index 6d94019cb..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/electrum_storage_block", - "top": "techreborn:block/storage/electrum_storage_block", - "side": "techreborn:block/storage/electrum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_stairs_outer.json deleted file mode 100644 index e8f78f36c..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/electrum_storage_block", - "top": "techreborn:block/storage/electrum_storage_block", - "side": "techreborn:block/storage/electrum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_wall_inventory.json deleted file mode 100644 index d7262acbe..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/electrum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_wall_post.json deleted file mode 100644 index 33239bce9..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/electrum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_wall_side.json deleted file mode 100644 index a95efa189..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/electrum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_wall_side_tall.json deleted file mode 100644 index c3c08a762..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/electrum_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/electrum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block.json deleted file mode 100644 index 71a326662..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/hot_tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_slab.json deleted file mode 100644 index 67463c2d3..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/hot_tungstensteel_storage_block", - "top": "techreborn:block/storage/hot_tungstensteel_storage_block", - "side": "techreborn:block/storage/hot_tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_slab_top.json deleted file mode 100644 index e1eb0d2f5..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/hot_tungstensteel_storage_block", - "top": "techreborn:block/storage/hot_tungstensteel_storage_block", - "side": "techreborn:block/storage/hot_tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_stairs.json deleted file mode 100644 index 3f386dd6e..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/hot_tungstensteel_storage_block", - "top": "techreborn:block/storage/hot_tungstensteel_storage_block", - "side": "techreborn:block/storage/hot_tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_stairs_inner.json deleted file mode 100644 index 75fe3c6b9..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/hot_tungstensteel_storage_block", - "top": "techreborn:block/storage/hot_tungstensteel_storage_block", - "side": "techreborn:block/storage/hot_tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_stairs_outer.json deleted file mode 100644 index 8428b6f84..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/hot_tungstensteel_storage_block", - "top": "techreborn:block/storage/hot_tungstensteel_storage_block", - "side": "techreborn:block/storage/hot_tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_wall_inventory.json deleted file mode 100644 index 153d5f4f0..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/hot_tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_wall_post.json deleted file mode 100644 index 23f7044fb..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/hot_tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_wall_side.json deleted file mode 100644 index 81635393a..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/hot_tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_wall_side_tall.json deleted file mode 100644 index c6e99b0db..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/hot_tungstensteel_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/hot_tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block.json deleted file mode 100644 index 92f08489c..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/invar_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_slab.json deleted file mode 100644 index aaf67b0c4..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/invar_storage_block", - "top": "techreborn:block/storage/invar_storage_block", - "side": "techreborn:block/storage/invar_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_slab_top.json deleted file mode 100644 index 9b90f62a5..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/invar_storage_block", - "top": "techreborn:block/storage/invar_storage_block", - "side": "techreborn:block/storage/invar_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_stairs.json deleted file mode 100644 index 02ef1b147..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/invar_storage_block", - "top": "techreborn:block/storage/invar_storage_block", - "side": "techreborn:block/storage/invar_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_stairs_inner.json deleted file mode 100644 index aa402e1d2..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/invar_storage_block", - "top": "techreborn:block/storage/invar_storage_block", - "side": "techreborn:block/storage/invar_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_stairs_outer.json deleted file mode 100644 index 695faec75..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/invar_storage_block", - "top": "techreborn:block/storage/invar_storage_block", - "side": "techreborn:block/storage/invar_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_wall_inventory.json deleted file mode 100644 index 4e261c28e..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/invar_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_wall_post.json deleted file mode 100644 index cf2e4ce24..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/invar_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_wall_side.json deleted file mode 100644 index e4f5461ff..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/invar_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_wall_side_tall.json deleted file mode 100644 index 8cfecec05..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/invar_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/invar_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block.json deleted file mode 100644 index 67d7ac749..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/iridium_reinforced_stone_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_slab.json deleted file mode 100644 index 389ed63a5..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/iridium_reinforced_stone_storage_block", - "top": "techreborn:block/storage/iridium_reinforced_stone_storage_block", - "side": "techreborn:block/storage/iridium_reinforced_stone_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_slab_top.json deleted file mode 100644 index e91af4203..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/iridium_reinforced_stone_storage_block", - "top": "techreborn:block/storage/iridium_reinforced_stone_storage_block", - "side": "techreborn:block/storage/iridium_reinforced_stone_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_stairs.json deleted file mode 100644 index 3bd9ee83c..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/iridium_reinforced_stone_storage_block", - "top": "techreborn:block/storage/iridium_reinforced_stone_storage_block", - "side": "techreborn:block/storage/iridium_reinforced_stone_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_stairs_inner.json deleted file mode 100644 index c07d7c69c..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/iridium_reinforced_stone_storage_block", - "top": "techreborn:block/storage/iridium_reinforced_stone_storage_block", - "side": "techreborn:block/storage/iridium_reinforced_stone_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_stairs_outer.json deleted file mode 100644 index 1173edd41..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/iridium_reinforced_stone_storage_block", - "top": "techreborn:block/storage/iridium_reinforced_stone_storage_block", - "side": "techreborn:block/storage/iridium_reinforced_stone_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_wall_inventory.json deleted file mode 100644 index 24f51481c..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/iridium_reinforced_stone_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_wall_post.json deleted file mode 100644 index 2beb3d32e..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/iridium_reinforced_stone_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_wall_side.json deleted file mode 100644 index 0a09a3b6b..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/iridium_reinforced_stone_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_wall_side_tall.json deleted file mode 100644 index e9799de5f..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_stone_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/iridium_reinforced_stone_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block.json deleted file mode 100644 index 4a2cdb346..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_slab.json deleted file mode 100644 index 0f013d9bd..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block", - "top": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block", - "side": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_slab_top.json deleted file mode 100644 index 1dd7f12bd..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block", - "top": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block", - "side": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_stairs.json deleted file mode 100644 index 389a9f059..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block", - "top": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block", - "side": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner.json deleted file mode 100644 index 4aa6099dc..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block", - "top": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block", - "side": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer.json deleted file mode 100644 index d27bbe238..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block", - "top": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block", - "side": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_wall_inventory.json deleted file mode 100644 index 1015f95f1..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_wall_post.json deleted file mode 100644 index dffacd134..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_wall_side.json deleted file mode 100644 index 53c8040ac..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_wall_side_tall.json deleted file mode 100644 index a7124f6b2..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_reinforced_tungstensteel_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block.json deleted file mode 100644 index 7b003d31e..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/iridium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_slab.json deleted file mode 100644 index 9cda3f89a..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/iridium_storage_block", - "top": "techreborn:block/storage/iridium_storage_block", - "side": "techreborn:block/storage/iridium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_slab_top.json deleted file mode 100644 index fce02fc2d..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/iridium_storage_block", - "top": "techreborn:block/storage/iridium_storage_block", - "side": "techreborn:block/storage/iridium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_stairs.json deleted file mode 100644 index dcf4b9e93..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/iridium_storage_block", - "top": "techreborn:block/storage/iridium_storage_block", - "side": "techreborn:block/storage/iridium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_stairs_inner.json deleted file mode 100644 index c4bd79d4c..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/iridium_storage_block", - "top": "techreborn:block/storage/iridium_storage_block", - "side": "techreborn:block/storage/iridium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_stairs_outer.json deleted file mode 100644 index cb4d7d46d..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/iridium_storage_block", - "top": "techreborn:block/storage/iridium_storage_block", - "side": "techreborn:block/storage/iridium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_wall_inventory.json deleted file mode 100644 index d86061735..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/iridium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_wall_post.json deleted file mode 100644 index ec2eccdbb..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/iridium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_wall_side.json deleted file mode 100644 index fbfb0381a..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/iridium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_wall_side_tall.json deleted file mode 100644 index 85b20b8cb..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/iridium_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/iridium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block.json deleted file mode 100644 index f01080680..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/lead_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_slab.json deleted file mode 100644 index 189765dd1..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/lead_storage_block", - "top": "techreborn:block/storage/lead_storage_block", - "side": "techreborn:block/storage/lead_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_slab_top.json deleted file mode 100644 index 9b3d55d0e..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/lead_storage_block", - "top": "techreborn:block/storage/lead_storage_block", - "side": "techreborn:block/storage/lead_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_stairs.json deleted file mode 100644 index 7f47f450d..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/lead_storage_block", - "top": "techreborn:block/storage/lead_storage_block", - "side": "techreborn:block/storage/lead_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_stairs_inner.json deleted file mode 100644 index caf0256ff..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/lead_storage_block", - "top": "techreborn:block/storage/lead_storage_block", - "side": "techreborn:block/storage/lead_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_stairs_outer.json deleted file mode 100644 index d990a6357..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/lead_storage_block", - "top": "techreborn:block/storage/lead_storage_block", - "side": "techreborn:block/storage/lead_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_wall_inventory.json deleted file mode 100644 index efba34792..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/lead_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_wall_post.json deleted file mode 100644 index b3aad4bd4..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/lead_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_wall_side.json deleted file mode 100644 index 8da5f41f8..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/lead_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_wall_side_tall.json deleted file mode 100644 index 46b814d88..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/lead_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/lead_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block.json deleted file mode 100644 index 6f99bbc57..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/nickel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_slab.json deleted file mode 100644 index 14d04642d..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/nickel_storage_block", - "top": "techreborn:block/storage/nickel_storage_block", - "side": "techreborn:block/storage/nickel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_slab_top.json deleted file mode 100644 index 149c96696..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/nickel_storage_block", - "top": "techreborn:block/storage/nickel_storage_block", - "side": "techreborn:block/storage/nickel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_stairs.json deleted file mode 100644 index 4c221e582..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/nickel_storage_block", - "top": "techreborn:block/storage/nickel_storage_block", - "side": "techreborn:block/storage/nickel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_stairs_inner.json deleted file mode 100644 index 3aebf35ed..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/nickel_storage_block", - "top": "techreborn:block/storage/nickel_storage_block", - "side": "techreborn:block/storage/nickel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_stairs_outer.json deleted file mode 100644 index c7655ee4e..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/nickel_storage_block", - "top": "techreborn:block/storage/nickel_storage_block", - "side": "techreborn:block/storage/nickel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_wall_inventory.json deleted file mode 100644 index 1c5b8dbd0..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/nickel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_wall_post.json deleted file mode 100644 index b49275fb6..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/nickel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_wall_side.json deleted file mode 100644 index fe67b8aab..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/nickel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_wall_side_tall.json deleted file mode 100644 index 214c1467d..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/nickel_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/nickel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block.json deleted file mode 100644 index 2d7664f5d..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/peridot_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_slab.json deleted file mode 100644 index 40e16e3fe..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/peridot_storage_block", - "top": "techreborn:block/storage/peridot_storage_block", - "side": "techreborn:block/storage/peridot_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_slab_top.json deleted file mode 100644 index 363ffd108..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/peridot_storage_block", - "top": "techreborn:block/storage/peridot_storage_block", - "side": "techreborn:block/storage/peridot_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_stairs.json deleted file mode 100644 index ace9ca269..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/peridot_storage_block", - "top": "techreborn:block/storage/peridot_storage_block", - "side": "techreborn:block/storage/peridot_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_stairs_inner.json deleted file mode 100644 index cfe17f39e..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/peridot_storage_block", - "top": "techreborn:block/storage/peridot_storage_block", - "side": "techreborn:block/storage/peridot_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_stairs_outer.json deleted file mode 100644 index 7f2096f61..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/peridot_storage_block", - "top": "techreborn:block/storage/peridot_storage_block", - "side": "techreborn:block/storage/peridot_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_wall_inventory.json deleted file mode 100644 index a08cf60b4..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/peridot_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_wall_post.json deleted file mode 100644 index dd6e90a25..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/peridot_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_wall_side.json deleted file mode 100644 index 9571db9a8..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/peridot_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_wall_side_tall.json deleted file mode 100644 index d26b60394..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/peridot_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/peridot_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block.json deleted file mode 100644 index e39d0f593..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/platinum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_slab.json deleted file mode 100644 index b16477789..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/platinum_storage_block", - "top": "techreborn:block/storage/platinum_storage_block", - "side": "techreborn:block/storage/platinum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_slab_top.json deleted file mode 100644 index 2c8366ebf..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/platinum_storage_block", - "top": "techreborn:block/storage/platinum_storage_block", - "side": "techreborn:block/storage/platinum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_stairs.json deleted file mode 100644 index f161e1c46..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/platinum_storage_block", - "top": "techreborn:block/storage/platinum_storage_block", - "side": "techreborn:block/storage/platinum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_stairs_inner.json deleted file mode 100644 index 486a3eddd..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/platinum_storage_block", - "top": "techreborn:block/storage/platinum_storage_block", - "side": "techreborn:block/storage/platinum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_stairs_outer.json deleted file mode 100644 index 706597ea8..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/platinum_storage_block", - "top": "techreborn:block/storage/platinum_storage_block", - "side": "techreborn:block/storage/platinum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_wall_inventory.json deleted file mode 100644 index 61b17996c..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/platinum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_wall_post.json deleted file mode 100644 index 03c0c2c43..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/platinum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_wall_side.json deleted file mode 100644 index 63661042e..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/platinum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_wall_side_tall.json deleted file mode 100644 index a70eec4b5..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/platinum_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/platinum_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block.json deleted file mode 100644 index 5534337d1..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/raw_iridium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_slab.json deleted file mode 100644 index 78be6d873..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/raw_iridium_storage_block", - "top": "techreborn:block/storage/raw_iridium_storage_block", - "side": "techreborn:block/storage/raw_iridium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_slab_top.json deleted file mode 100644 index cd5ab4163..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/raw_iridium_storage_block", - "top": "techreborn:block/storage/raw_iridium_storage_block", - "side": "techreborn:block/storage/raw_iridium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_stairs.json deleted file mode 100644 index c19dd3b1d..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/raw_iridium_storage_block", - "top": "techreborn:block/storage/raw_iridium_storage_block", - "side": "techreborn:block/storage/raw_iridium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_stairs_inner.json deleted file mode 100644 index 63237b342..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/raw_iridium_storage_block", - "top": "techreborn:block/storage/raw_iridium_storage_block", - "side": "techreborn:block/storage/raw_iridium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_stairs_outer.json deleted file mode 100644 index d77ef73aa..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/raw_iridium_storage_block", - "top": "techreborn:block/storage/raw_iridium_storage_block", - "side": "techreborn:block/storage/raw_iridium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_wall_inventory.json deleted file mode 100644 index 45ec9ea06..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/raw_iridium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_wall_post.json deleted file mode 100644 index 27167681c..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/raw_iridium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_wall_side.json deleted file mode 100644 index c3bd7eceb..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/raw_iridium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_wall_side_tall.json deleted file mode 100644 index f4ed93e28..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_iridium_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/raw_iridium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block.json deleted file mode 100644 index aa195c492..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/raw_lead_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_slab.json deleted file mode 100644 index 36e8b9e33..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/raw_lead_storage_block", - "top": "techreborn:block/storage/raw_lead_storage_block", - "side": "techreborn:block/storage/raw_lead_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_slab_top.json deleted file mode 100644 index dad686112..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/raw_lead_storage_block", - "top": "techreborn:block/storage/raw_lead_storage_block", - "side": "techreborn:block/storage/raw_lead_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_stairs.json deleted file mode 100644 index 4ed72177e..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/raw_lead_storage_block", - "top": "techreborn:block/storage/raw_lead_storage_block", - "side": "techreborn:block/storage/raw_lead_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_stairs_inner.json deleted file mode 100644 index 33642e17c..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/raw_lead_storage_block", - "top": "techreborn:block/storage/raw_lead_storage_block", - "side": "techreborn:block/storage/raw_lead_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_stairs_outer.json deleted file mode 100644 index 0e884c12c..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/raw_lead_storage_block", - "top": "techreborn:block/storage/raw_lead_storage_block", - "side": "techreborn:block/storage/raw_lead_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_wall_inventory.json deleted file mode 100644 index 00baed7d3..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/raw_lead_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_wall_post.json deleted file mode 100644 index 134167cc6..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/raw_lead_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_wall_side.json deleted file mode 100644 index c8ae02ef1..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/raw_lead_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_wall_side_tall.json deleted file mode 100644 index f002729fe..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_lead_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/raw_lead_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block.json deleted file mode 100644 index aa000669a..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/raw_silver_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_slab.json deleted file mode 100644 index 6b2d90bbc..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/raw_silver_storage_block", - "top": "techreborn:block/storage/raw_silver_storage_block", - "side": "techreborn:block/storage/raw_silver_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_slab_top.json deleted file mode 100644 index 760739944..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/raw_silver_storage_block", - "top": "techreborn:block/storage/raw_silver_storage_block", - "side": "techreborn:block/storage/raw_silver_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_stairs.json deleted file mode 100644 index b4dcb76e1..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/raw_silver_storage_block", - "top": "techreborn:block/storage/raw_silver_storage_block", - "side": "techreborn:block/storage/raw_silver_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_stairs_inner.json deleted file mode 100644 index 0fd9f6642..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/raw_silver_storage_block", - "top": "techreborn:block/storage/raw_silver_storage_block", - "side": "techreborn:block/storage/raw_silver_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_stairs_outer.json deleted file mode 100644 index 9c0cc9340..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/raw_silver_storage_block", - "top": "techreborn:block/storage/raw_silver_storage_block", - "side": "techreborn:block/storage/raw_silver_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_wall_inventory.json deleted file mode 100644 index 7ddf99c05..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/raw_silver_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_wall_post.json deleted file mode 100644 index 1c39098e2..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/raw_silver_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_wall_side.json deleted file mode 100644 index 89c71eb7d..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/raw_silver_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_wall_side_tall.json deleted file mode 100644 index abc4e9a1f..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_silver_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/raw_silver_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block.json deleted file mode 100644 index cebee5528..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/raw_tin_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_slab.json deleted file mode 100644 index 59c8bb4fa..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/raw_tin_storage_block", - "top": "techreborn:block/storage/raw_tin_storage_block", - "side": "techreborn:block/storage/raw_tin_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_slab_top.json deleted file mode 100644 index 406f96a00..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/raw_tin_storage_block", - "top": "techreborn:block/storage/raw_tin_storage_block", - "side": "techreborn:block/storage/raw_tin_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_stairs.json deleted file mode 100644 index c8d3d8374..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/raw_tin_storage_block", - "top": "techreborn:block/storage/raw_tin_storage_block", - "side": "techreborn:block/storage/raw_tin_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_stairs_inner.json deleted file mode 100644 index 43c1843e7..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/raw_tin_storage_block", - "top": "techreborn:block/storage/raw_tin_storage_block", - "side": "techreborn:block/storage/raw_tin_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_stairs_outer.json deleted file mode 100644 index ce9c865e6..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/raw_tin_storage_block", - "top": "techreborn:block/storage/raw_tin_storage_block", - "side": "techreborn:block/storage/raw_tin_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_wall_inventory.json deleted file mode 100644 index 98fdb95c3..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/raw_tin_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_wall_post.json deleted file mode 100644 index 1b50acec7..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/raw_tin_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_wall_side.json deleted file mode 100644 index 01e486f47..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/raw_tin_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_wall_side_tall.json deleted file mode 100644 index 1bb2d6dea..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_tin_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/raw_tin_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block.json deleted file mode 100644 index 0669e6484..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/raw_tungsten_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_slab.json deleted file mode 100644 index 48cee042d..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/raw_tungsten_storage_block", - "top": "techreborn:block/storage/raw_tungsten_storage_block", - "side": "techreborn:block/storage/raw_tungsten_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_slab_top.json deleted file mode 100644 index 15457d445..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/raw_tungsten_storage_block", - "top": "techreborn:block/storage/raw_tungsten_storage_block", - "side": "techreborn:block/storage/raw_tungsten_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_stairs.json deleted file mode 100644 index b42f3e540..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/raw_tungsten_storage_block", - "top": "techreborn:block/storage/raw_tungsten_storage_block", - "side": "techreborn:block/storage/raw_tungsten_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_stairs_inner.json deleted file mode 100644 index 101b4b761..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/raw_tungsten_storage_block", - "top": "techreborn:block/storage/raw_tungsten_storage_block", - "side": "techreborn:block/storage/raw_tungsten_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_stairs_outer.json deleted file mode 100644 index 0f5883221..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/raw_tungsten_storage_block", - "top": "techreborn:block/storage/raw_tungsten_storage_block", - "side": "techreborn:block/storage/raw_tungsten_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_wall_inventory.json deleted file mode 100644 index 6299cdfd6..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/raw_tungsten_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_wall_post.json deleted file mode 100644 index 64c37eb87..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/raw_tungsten_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_wall_side.json deleted file mode 100644 index 2e0458dd8..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/raw_tungsten_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_wall_side_tall.json deleted file mode 100644 index b72cf1130..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/raw_tungsten_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/raw_tungsten_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block.json deleted file mode 100644 index b272f817e..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/red_garnet_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_slab.json deleted file mode 100644 index 00391f60a..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/red_garnet_storage_block", - "top": "techreborn:block/storage/red_garnet_storage_block", - "side": "techreborn:block/storage/red_garnet_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_slab_top.json deleted file mode 100644 index 41f697d8d..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/red_garnet_storage_block", - "top": "techreborn:block/storage/red_garnet_storage_block", - "side": "techreborn:block/storage/red_garnet_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_stairs.json deleted file mode 100644 index e1639a681..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/red_garnet_storage_block", - "top": "techreborn:block/storage/red_garnet_storage_block", - "side": "techreborn:block/storage/red_garnet_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_stairs_inner.json deleted file mode 100644 index 12deb81c5..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/red_garnet_storage_block", - "top": "techreborn:block/storage/red_garnet_storage_block", - "side": "techreborn:block/storage/red_garnet_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_stairs_outer.json deleted file mode 100644 index e92b59aad..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/red_garnet_storage_block", - "top": "techreborn:block/storage/red_garnet_storage_block", - "side": "techreborn:block/storage/red_garnet_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_wall_inventory.json deleted file mode 100644 index 5304902ee..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/red_garnet_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_wall_post.json deleted file mode 100644 index 7f55c71d6..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/red_garnet_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_wall_side.json deleted file mode 100644 index 16a32e266..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/red_garnet_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_wall_side_tall.json deleted file mode 100644 index 31b5ee412..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/red_garnet_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/red_garnet_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block.json deleted file mode 100644 index 6a6520b78..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/refined_iron_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_slab.json deleted file mode 100644 index b1a5ef042..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/refined_iron_storage_block", - "top": "techreborn:block/storage/refined_iron_storage_block", - "side": "techreborn:block/storage/refined_iron_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_slab_top.json deleted file mode 100644 index 042bb9d55..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/refined_iron_storage_block", - "top": "techreborn:block/storage/refined_iron_storage_block", - "side": "techreborn:block/storage/refined_iron_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_stairs.json deleted file mode 100644 index 7c610915c..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/refined_iron_storage_block", - "top": "techreborn:block/storage/refined_iron_storage_block", - "side": "techreborn:block/storage/refined_iron_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_stairs_inner.json deleted file mode 100644 index eefc1b67d..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/refined_iron_storage_block", - "top": "techreborn:block/storage/refined_iron_storage_block", - "side": "techreborn:block/storage/refined_iron_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_stairs_outer.json deleted file mode 100644 index 8dffe2494..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/refined_iron_storage_block", - "top": "techreborn:block/storage/refined_iron_storage_block", - "side": "techreborn:block/storage/refined_iron_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_wall_inventory.json deleted file mode 100644 index c1b5d3e30..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/refined_iron_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_wall_post.json deleted file mode 100644 index bbb97934d..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/refined_iron_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_wall_side.json deleted file mode 100644 index a52ca91d9..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/refined_iron_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_wall_side_tall.json deleted file mode 100644 index 60ba24068..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/refined_iron_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/refined_iron_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block.json deleted file mode 100644 index c4b1a7fd2..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/ruby_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_slab.json deleted file mode 100644 index 4aba73644..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/ruby_storage_block", - "top": "techreborn:block/storage/ruby_storage_block", - "side": "techreborn:block/storage/ruby_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_slab_top.json deleted file mode 100644 index e7f7179c5..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/ruby_storage_block", - "top": "techreborn:block/storage/ruby_storage_block", - "side": "techreborn:block/storage/ruby_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_stairs.json deleted file mode 100644 index e07086f70..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/ruby_storage_block", - "top": "techreborn:block/storage/ruby_storage_block", - "side": "techreborn:block/storage/ruby_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_stairs_inner.json deleted file mode 100644 index 41f85abae..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/ruby_storage_block", - "top": "techreborn:block/storage/ruby_storage_block", - "side": "techreborn:block/storage/ruby_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_stairs_outer.json deleted file mode 100644 index 2821cef3f..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/ruby_storage_block", - "top": "techreborn:block/storage/ruby_storage_block", - "side": "techreborn:block/storage/ruby_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_wall_inventory.json deleted file mode 100644 index 7aa6afa45..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/ruby_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_wall_post.json deleted file mode 100644 index b8919066d..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/ruby_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_wall_side.json deleted file mode 100644 index 9088cd530..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/ruby_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_wall_side_tall.json deleted file mode 100644 index 12bdc1355..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/ruby_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/ruby_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block.json deleted file mode 100644 index bbdeec52d..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/sapphire_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_slab.json deleted file mode 100644 index 8eb34b100..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/sapphire_storage_block", - "top": "techreborn:block/storage/sapphire_storage_block", - "side": "techreborn:block/storage/sapphire_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_slab_top.json deleted file mode 100644 index 2e4f285c5..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/sapphire_storage_block", - "top": "techreborn:block/storage/sapphire_storage_block", - "side": "techreborn:block/storage/sapphire_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_stairs.json deleted file mode 100644 index 1e7d7c2dd..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/sapphire_storage_block", - "top": "techreborn:block/storage/sapphire_storage_block", - "side": "techreborn:block/storage/sapphire_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_stairs_inner.json deleted file mode 100644 index 74a860bd0..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/sapphire_storage_block", - "top": "techreborn:block/storage/sapphire_storage_block", - "side": "techreborn:block/storage/sapphire_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_stairs_outer.json deleted file mode 100644 index 9af107a33..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/sapphire_storage_block", - "top": "techreborn:block/storage/sapphire_storage_block", - "side": "techreborn:block/storage/sapphire_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_wall_inventory.json deleted file mode 100644 index 3bbefd35d..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/sapphire_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_wall_post.json deleted file mode 100644 index a95714be9..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/sapphire_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_wall_side.json deleted file mode 100644 index 562c57dae..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/sapphire_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_wall_side_tall.json deleted file mode 100644 index 10b39e2ec..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/sapphire_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/sapphire_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block.json deleted file mode 100644 index 254ede2d3..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/silver_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_slab.json deleted file mode 100644 index 6b074a381..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/silver_storage_block", - "top": "techreborn:block/storage/silver_storage_block", - "side": "techreborn:block/storage/silver_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_slab_top.json deleted file mode 100644 index 78ed51694..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/silver_storage_block", - "top": "techreborn:block/storage/silver_storage_block", - "side": "techreborn:block/storage/silver_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_stairs.json deleted file mode 100644 index 28aafa249..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/silver_storage_block", - "top": "techreborn:block/storage/silver_storage_block", - "side": "techreborn:block/storage/silver_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_stairs_inner.json deleted file mode 100644 index 3830144cc..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/silver_storage_block", - "top": "techreborn:block/storage/silver_storage_block", - "side": "techreborn:block/storage/silver_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_stairs_outer.json deleted file mode 100644 index e9bbd4a69..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/silver_storage_block", - "top": "techreborn:block/storage/silver_storage_block", - "side": "techreborn:block/storage/silver_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_wall_inventory.json deleted file mode 100644 index 1b1642236..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/silver_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_wall_post.json deleted file mode 100644 index fa9a95f94..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/silver_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_wall_side.json deleted file mode 100644 index 31230796e..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/silver_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_wall_side_tall.json deleted file mode 100644 index b0913fd2c..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/silver_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/silver_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block.json deleted file mode 100644 index 8bf7e8566..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/steel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_slab.json deleted file mode 100644 index cf679593e..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/steel_storage_block", - "top": "techreborn:block/storage/steel_storage_block", - "side": "techreborn:block/storage/steel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_slab_top.json deleted file mode 100644 index 728b772c1..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/steel_storage_block", - "top": "techreborn:block/storage/steel_storage_block", - "side": "techreborn:block/storage/steel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_stairs.json deleted file mode 100644 index af44091ee..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/steel_storage_block", - "top": "techreborn:block/storage/steel_storage_block", - "side": "techreborn:block/storage/steel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_stairs_inner.json deleted file mode 100644 index e2ba53858..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/steel_storage_block", - "top": "techreborn:block/storage/steel_storage_block", - "side": "techreborn:block/storage/steel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_stairs_outer.json deleted file mode 100644 index e8219f939..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/steel_storage_block", - "top": "techreborn:block/storage/steel_storage_block", - "side": "techreborn:block/storage/steel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_wall_inventory.json deleted file mode 100644 index 4ac94b2ec..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/steel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_wall_post.json deleted file mode 100644 index fa33e72a0..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/steel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_wall_side.json deleted file mode 100644 index 42f41ae73..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/steel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_wall_side_tall.json deleted file mode 100644 index 4a8ccd9be..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/steel_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/steel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block.json deleted file mode 100644 index f764f2006..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/tin_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_slab.json deleted file mode 100644 index 81a5e8560..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/tin_storage_block", - "top": "techreborn:block/storage/tin_storage_block", - "side": "techreborn:block/storage/tin_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_slab_top.json deleted file mode 100644 index 39bdc000f..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/tin_storage_block", - "top": "techreborn:block/storage/tin_storage_block", - "side": "techreborn:block/storage/tin_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_stairs.json deleted file mode 100644 index e82528da5..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/tin_storage_block", - "top": "techreborn:block/storage/tin_storage_block", - "side": "techreborn:block/storage/tin_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_stairs_inner.json deleted file mode 100644 index 4e6bafff7..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/tin_storage_block", - "top": "techreborn:block/storage/tin_storage_block", - "side": "techreborn:block/storage/tin_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_stairs_outer.json deleted file mode 100644 index e55f33eb8..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/tin_storage_block", - "top": "techreborn:block/storage/tin_storage_block", - "side": "techreborn:block/storage/tin_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_wall_inventory.json deleted file mode 100644 index 5432f8df7..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/tin_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_wall_post.json deleted file mode 100644 index 37eb57de0..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/tin_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_wall_side.json deleted file mode 100644 index 23bc6292d..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/tin_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_wall_side_tall.json deleted file mode 100644 index eccba38c7..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tin_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/tin_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block.json deleted file mode 100644 index 0123abe7f..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/titanium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_slab.json deleted file mode 100644 index d9d0dc124..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/titanium_storage_block", - "top": "techreborn:block/storage/titanium_storage_block", - "side": "techreborn:block/storage/titanium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_slab_top.json deleted file mode 100644 index a01b31087..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/titanium_storage_block", - "top": "techreborn:block/storage/titanium_storage_block", - "side": "techreborn:block/storage/titanium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_stairs.json deleted file mode 100644 index 21d792e81..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/titanium_storage_block", - "top": "techreborn:block/storage/titanium_storage_block", - "side": "techreborn:block/storage/titanium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_stairs_inner.json deleted file mode 100644 index 2925cb099..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/titanium_storage_block", - "top": "techreborn:block/storage/titanium_storage_block", - "side": "techreborn:block/storage/titanium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_stairs_outer.json deleted file mode 100644 index 8608e5230..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/titanium_storage_block", - "top": "techreborn:block/storage/titanium_storage_block", - "side": "techreborn:block/storage/titanium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_wall_inventory.json deleted file mode 100644 index b020d436b..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/titanium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_wall_post.json deleted file mode 100644 index e02729db4..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/titanium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_wall_side.json deleted file mode 100644 index 802f395e8..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/titanium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_wall_side_tall.json deleted file mode 100644 index fed274642..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/titanium_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/titanium_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block.json deleted file mode 100644 index 16e9b8e36..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/tungsten_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_slab.json deleted file mode 100644 index 4be20ecd5..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/tungsten_storage_block", - "top": "techreborn:block/storage/tungsten_storage_block", - "side": "techreborn:block/storage/tungsten_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_slab_top.json deleted file mode 100644 index 9ac21ac47..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/tungsten_storage_block", - "top": "techreborn:block/storage/tungsten_storage_block", - "side": "techreborn:block/storage/tungsten_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_stairs.json deleted file mode 100644 index fad390890..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/tungsten_storage_block", - "top": "techreborn:block/storage/tungsten_storage_block", - "side": "techreborn:block/storage/tungsten_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_stairs_inner.json deleted file mode 100644 index 65ee40db3..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/tungsten_storage_block", - "top": "techreborn:block/storage/tungsten_storage_block", - "side": "techreborn:block/storage/tungsten_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_stairs_outer.json deleted file mode 100644 index ac56522a4..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/tungsten_storage_block", - "top": "techreborn:block/storage/tungsten_storage_block", - "side": "techreborn:block/storage/tungsten_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_wall_inventory.json deleted file mode 100644 index 83ef765ec..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/tungsten_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_wall_post.json deleted file mode 100644 index b25489dc7..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/tungsten_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_wall_side.json deleted file mode 100644 index 608687fd6..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/tungsten_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_wall_side_tall.json deleted file mode 100644 index db6f9da1d..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tungsten_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/tungsten_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block.json deleted file mode 100644 index 968b9f315..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_slab.json deleted file mode 100644 index 5b8c61668..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/tungstensteel_storage_block", - "top": "techreborn:block/storage/tungstensteel_storage_block", - "side": "techreborn:block/storage/tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_slab_top.json deleted file mode 100644 index 32b9e09ea..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/tungstensteel_storage_block", - "top": "techreborn:block/storage/tungstensteel_storage_block", - "side": "techreborn:block/storage/tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_stairs.json deleted file mode 100644 index 121f74ecc..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/tungstensteel_storage_block", - "top": "techreborn:block/storage/tungstensteel_storage_block", - "side": "techreborn:block/storage/tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_stairs_inner.json deleted file mode 100644 index 2d160a97c..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/tungstensteel_storage_block", - "top": "techreborn:block/storage/tungstensteel_storage_block", - "side": "techreborn:block/storage/tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_stairs_outer.json deleted file mode 100644 index 66b4a2502..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/tungstensteel_storage_block", - "top": "techreborn:block/storage/tungstensteel_storage_block", - "side": "techreborn:block/storage/tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_wall_inventory.json deleted file mode 100644 index 5e0dc7021..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_wall_post.json deleted file mode 100644 index 82242ded4..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_wall_side.json deleted file mode 100644 index 1501861cc..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_wall_side_tall.json deleted file mode 100644 index 0ef56a73d..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/tungstensteel_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/tungstensteel_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block.json deleted file mode 100644 index 891891d8d..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/yellow_garnet_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_slab.json deleted file mode 100644 index 4d650b16f..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/yellow_garnet_storage_block", - "top": "techreborn:block/storage/yellow_garnet_storage_block", - "side": "techreborn:block/storage/yellow_garnet_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_slab_top.json deleted file mode 100644 index 6ee40ef9f..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/yellow_garnet_storage_block", - "top": "techreborn:block/storage/yellow_garnet_storage_block", - "side": "techreborn:block/storage/yellow_garnet_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_stairs.json deleted file mode 100644 index 239a2d27e..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/yellow_garnet_storage_block", - "top": "techreborn:block/storage/yellow_garnet_storage_block", - "side": "techreborn:block/storage/yellow_garnet_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_stairs_inner.json deleted file mode 100644 index 67dd58cd1..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/yellow_garnet_storage_block", - "top": "techreborn:block/storage/yellow_garnet_storage_block", - "side": "techreborn:block/storage/yellow_garnet_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_stairs_outer.json deleted file mode 100644 index 90c5ce7c1..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/yellow_garnet_storage_block", - "top": "techreborn:block/storage/yellow_garnet_storage_block", - "side": "techreborn:block/storage/yellow_garnet_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_wall_inventory.json deleted file mode 100644 index 624fcaf6f..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/yellow_garnet_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_wall_post.json deleted file mode 100644 index 97c3fe8b4..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/yellow_garnet_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_wall_side.json deleted file mode 100644 index 56b4cab9a..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/yellow_garnet_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_wall_side_tall.json deleted file mode 100644 index 20d08e2e1..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/yellow_garnet_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/yellow_garnet_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block.json b/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block.json deleted file mode 100644 index e08fde93e..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "techreborn:block/storage/zinc_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_slab.json b/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_slab.json deleted file mode 100644 index 559a5ce73..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "techreborn:block/storage/zinc_storage_block", - "top": "techreborn:block/storage/zinc_storage_block", - "side": "techreborn:block/storage/zinc_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_slab_top.json b/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_slab_top.json deleted file mode 100644 index ba45c4b1e..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "techreborn:block/storage/zinc_storage_block", - "top": "techreborn:block/storage/zinc_storage_block", - "side": "techreborn:block/storage/zinc_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_stairs.json deleted file mode 100644 index 27553e96e..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "techreborn:block/storage/zinc_storage_block", - "top": "techreborn:block/storage/zinc_storage_block", - "side": "techreborn:block/storage/zinc_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_stairs_inner.json b/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_stairs_inner.json deleted file mode 100644 index a1f255680..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "techreborn:block/storage/zinc_storage_block", - "top": "techreborn:block/storage/zinc_storage_block", - "side": "techreborn:block/storage/zinc_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_stairs_outer.json b/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_stairs_outer.json deleted file mode 100644 index be06b7eb9..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "techreborn:block/storage/zinc_storage_block", - "top": "techreborn:block/storage/zinc_storage_block", - "side": "techreborn:block/storage/zinc_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_wall_inventory.json b/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_wall_inventory.json deleted file mode 100644 index 2404b0485..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/wall_inventory", - "textures": { - "wall": "techreborn:block/storage/zinc_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_wall_post.json b/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_wall_post.json deleted file mode 100644 index 3d5caa0de..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_post", - "textures": { - "wall": "techreborn:block/storage/zinc_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_wall_side.json b/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_wall_side.json deleted file mode 100644 index a034f4d17..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side", - "textures": { - "wall": "techreborn:block/storage/zinc_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_wall_side_tall.json b/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_wall_side_tall.json deleted file mode 100644 index 5533f0675..000000000 --- a/src/main/resources/assets/techreborn/models/block/storage/zinc_storage_block_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_wall_side_tall", - "textures": { - "wall": "techreborn:block/storage/zinc_storage_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/advanced_alloy_ingot.json b/src/main/resources/assets/techreborn/models/item/advanced_alloy_ingot.json deleted file mode 100644 index 4a41d851e..000000000 --- a/src/main/resources/assets/techreborn/models/item/advanced_alloy_ingot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/ingot/advanced_alloy_ingot" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/advanced_alloy_plate.json b/src/main/resources/assets/techreborn/models/item/advanced_alloy_plate.json deleted file mode 100644 index 69e4d5c50..000000000 --- a/src/main/resources/assets/techreborn/models/item/advanced_alloy_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/advanced_alloy_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/advanced_alloy_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/advanced_alloy_storage_block_slab.json deleted file mode 100644 index e27ced6ea..000000000 --- a/src/main/resources/assets/techreborn/models/item/advanced_alloy_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/advanced_alloy_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/advanced_alloy_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/advanced_alloy_storage_block_stairs.json deleted file mode 100644 index 30e6fd424..000000000 --- a/src/main/resources/assets/techreborn/models/item/advanced_alloy_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/advanced_alloy_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/advanced_alloy_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/advanced_alloy_storage_block_wall.json deleted file mode 100644 index 9f55bbbd9..000000000 --- a/src/main/resources/assets/techreborn/models/item/advanced_alloy_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/advanced_alloy_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/almandine_dust.json b/src/main/resources/assets/techreborn/models/item/almandine_dust.json deleted file mode 100644 index 20fa2b990..000000000 --- a/src/main/resources/assets/techreborn/models/item/almandine_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/almandine_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/almandine_small_dust.json b/src/main/resources/assets/techreborn/models/item/almandine_small_dust.json deleted file mode 100644 index 5f2944965..000000000 --- a/src/main/resources/assets/techreborn/models/item/almandine_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/almandine_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/aluminum_dust.json b/src/main/resources/assets/techreborn/models/item/aluminum_dust.json deleted file mode 100644 index 5f416a83f..000000000 --- a/src/main/resources/assets/techreborn/models/item/aluminum_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/aluminum_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/aluminum_ingot.json b/src/main/resources/assets/techreborn/models/item/aluminum_ingot.json deleted file mode 100644 index 6a674d4f6..000000000 --- a/src/main/resources/assets/techreborn/models/item/aluminum_ingot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/ingot/aluminum_ingot" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/aluminum_nugget.json b/src/main/resources/assets/techreborn/models/item/aluminum_nugget.json deleted file mode 100644 index a24a79bbf..000000000 --- a/src/main/resources/assets/techreborn/models/item/aluminum_nugget.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/nugget/aluminum_nugget" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/aluminum_plate.json b/src/main/resources/assets/techreborn/models/item/aluminum_plate.json deleted file mode 100644 index 49ff37853..000000000 --- a/src/main/resources/assets/techreborn/models/item/aluminum_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/aluminum_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/aluminum_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/aluminum_storage_block_slab.json deleted file mode 100644 index a5747905d..000000000 --- a/src/main/resources/assets/techreborn/models/item/aluminum_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/aluminum_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/aluminum_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/aluminum_storage_block_stairs.json deleted file mode 100644 index ff979d3ca..000000000 --- a/src/main/resources/assets/techreborn/models/item/aluminum_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/aluminum_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/aluminum_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/aluminum_storage_block_wall.json deleted file mode 100644 index 25f2acd74..000000000 --- a/src/main/resources/assets/techreborn/models/item/aluminum_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/aluminum_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/amethyst_dust.json b/src/main/resources/assets/techreborn/models/item/amethyst_dust.json deleted file mode 100644 index c35d13841..000000000 --- a/src/main/resources/assets/techreborn/models/item/amethyst_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/amethyst_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/andesite_dust.json b/src/main/resources/assets/techreborn/models/item/andesite_dust.json deleted file mode 100644 index e3d9832b2..000000000 --- a/src/main/resources/assets/techreborn/models/item/andesite_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/andesite_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/andesite_small_dust.json b/src/main/resources/assets/techreborn/models/item/andesite_small_dust.json deleted file mode 100644 index 487355fb2..000000000 --- a/src/main/resources/assets/techreborn/models/item/andesite_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/andesite_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/andradite_dust.json b/src/main/resources/assets/techreborn/models/item/andradite_dust.json deleted file mode 100644 index 7732ea7eb..000000000 --- a/src/main/resources/assets/techreborn/models/item/andradite_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/andradite_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/andradite_small_dust.json b/src/main/resources/assets/techreborn/models/item/andradite_small_dust.json deleted file mode 100644 index 6ab0e99a0..000000000 --- a/src/main/resources/assets/techreborn/models/item/andradite_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/andradite_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/ashes_dust.json b/src/main/resources/assets/techreborn/models/item/ashes_dust.json deleted file mode 100644 index c26ab3cf8..000000000 --- a/src/main/resources/assets/techreborn/models/item/ashes_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/ashes_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/ashes_small_dust.json b/src/main/resources/assets/techreborn/models/item/ashes_small_dust.json deleted file mode 100644 index a5ab06c49..000000000 --- a/src/main/resources/assets/techreborn/models/item/ashes_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/ashes_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/basalt_dust.json b/src/main/resources/assets/techreborn/models/item/basalt_dust.json deleted file mode 100644 index 506fe0fdd..000000000 --- a/src/main/resources/assets/techreborn/models/item/basalt_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/basalt_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/basalt_small_dust.json b/src/main/resources/assets/techreborn/models/item/basalt_small_dust.json deleted file mode 100644 index 04ffc0272..000000000 --- a/src/main/resources/assets/techreborn/models/item/basalt_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/basalt_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/bauxite_dust.json b/src/main/resources/assets/techreborn/models/item/bauxite_dust.json deleted file mode 100644 index cb2a5ff5c..000000000 --- a/src/main/resources/assets/techreborn/models/item/bauxite_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/bauxite_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/bauxite_ore.json b/src/main/resources/assets/techreborn/models/item/bauxite_ore.json deleted file mode 100644 index 668398316..000000000 --- a/src/main/resources/assets/techreborn/models/item/bauxite_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/bauxite_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/bauxite_small_dust.json b/src/main/resources/assets/techreborn/models/item/bauxite_small_dust.json deleted file mode 100644 index 063ea1ac5..000000000 --- a/src/main/resources/assets/techreborn/models/item/bauxite_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/bauxite_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/brass_dust.json b/src/main/resources/assets/techreborn/models/item/brass_dust.json deleted file mode 100644 index 9bb384195..000000000 --- a/src/main/resources/assets/techreborn/models/item/brass_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/brass_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/brass_ingot.json b/src/main/resources/assets/techreborn/models/item/brass_ingot.json deleted file mode 100644 index f22489a61..000000000 --- a/src/main/resources/assets/techreborn/models/item/brass_ingot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/ingot/brass_ingot" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/brass_nugget.json b/src/main/resources/assets/techreborn/models/item/brass_nugget.json deleted file mode 100644 index 150299d9e..000000000 --- a/src/main/resources/assets/techreborn/models/item/brass_nugget.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/nugget/brass_nugget" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/brass_plate.json b/src/main/resources/assets/techreborn/models/item/brass_plate.json deleted file mode 100644 index bdc96a025..000000000 --- a/src/main/resources/assets/techreborn/models/item/brass_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/brass_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/brass_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/brass_storage_block_slab.json deleted file mode 100644 index 1957db093..000000000 --- a/src/main/resources/assets/techreborn/models/item/brass_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/brass_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/brass_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/brass_storage_block_stairs.json deleted file mode 100644 index ed7d7ee14..000000000 --- a/src/main/resources/assets/techreborn/models/item/brass_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/brass_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/brass_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/brass_storage_block_wall.json deleted file mode 100644 index 5e3c9cd74..000000000 --- a/src/main/resources/assets/techreborn/models/item/brass_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/brass_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/bronze_dust.json b/src/main/resources/assets/techreborn/models/item/bronze_dust.json deleted file mode 100644 index a1d2fe3e6..000000000 --- a/src/main/resources/assets/techreborn/models/item/bronze_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/bronze_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/bronze_ingot.json b/src/main/resources/assets/techreborn/models/item/bronze_ingot.json deleted file mode 100644 index b753496f6..000000000 --- a/src/main/resources/assets/techreborn/models/item/bronze_ingot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/ingot/bronze_ingot" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/bronze_nugget.json b/src/main/resources/assets/techreborn/models/item/bronze_nugget.json deleted file mode 100644 index 32411b363..000000000 --- a/src/main/resources/assets/techreborn/models/item/bronze_nugget.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/nugget/bronze_nugget" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/bronze_plate.json b/src/main/resources/assets/techreborn/models/item/bronze_plate.json deleted file mode 100644 index ed49414cb..000000000 --- a/src/main/resources/assets/techreborn/models/item/bronze_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/bronze_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/bronze_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/bronze_storage_block_slab.json deleted file mode 100644 index a7373e83a..000000000 --- a/src/main/resources/assets/techreborn/models/item/bronze_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/bronze_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/bronze_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/bronze_storage_block_stairs.json deleted file mode 100644 index 82f88ece2..000000000 --- a/src/main/resources/assets/techreborn/models/item/bronze_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/bronze_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/bronze_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/bronze_storage_block_wall.json deleted file mode 100644 index 40b4a575d..000000000 --- a/src/main/resources/assets/techreborn/models/item/bronze_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/bronze_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/calcite_dust.json b/src/main/resources/assets/techreborn/models/item/calcite_dust.json deleted file mode 100644 index 9520f0691..000000000 --- a/src/main/resources/assets/techreborn/models/item/calcite_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/calcite_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/calcite_small_dust.json b/src/main/resources/assets/techreborn/models/item/calcite_small_dust.json deleted file mode 100644 index 1a99ac61d..000000000 --- a/src/main/resources/assets/techreborn/models/item/calcite_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/calcite_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/carbon_plate.json b/src/main/resources/assets/techreborn/models/item/carbon_plate.json deleted file mode 100644 index 47fc02119..000000000 --- a/src/main/resources/assets/techreborn/models/item/carbon_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/carbon_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/charcoal_dust.json b/src/main/resources/assets/techreborn/models/item/charcoal_dust.json deleted file mode 100644 index 08913c0cf..000000000 --- a/src/main/resources/assets/techreborn/models/item/charcoal_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/charcoal_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/charcoal_small_dust.json b/src/main/resources/assets/techreborn/models/item/charcoal_small_dust.json deleted file mode 100644 index ba71c7a91..000000000 --- a/src/main/resources/assets/techreborn/models/item/charcoal_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/charcoal_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/chrome_dust.json b/src/main/resources/assets/techreborn/models/item/chrome_dust.json deleted file mode 100644 index 9e46854ec..000000000 --- a/src/main/resources/assets/techreborn/models/item/chrome_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/chrome_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/chrome_ingot.json b/src/main/resources/assets/techreborn/models/item/chrome_ingot.json deleted file mode 100644 index e1ebf5efe..000000000 --- a/src/main/resources/assets/techreborn/models/item/chrome_ingot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/ingot/chrome_ingot" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/chrome_nugget.json b/src/main/resources/assets/techreborn/models/item/chrome_nugget.json deleted file mode 100644 index 17cc57e3d..000000000 --- a/src/main/resources/assets/techreborn/models/item/chrome_nugget.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/nugget/chrome_nugget" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/chrome_plate.json b/src/main/resources/assets/techreborn/models/item/chrome_plate.json deleted file mode 100644 index 5e13a5cc3..000000000 --- a/src/main/resources/assets/techreborn/models/item/chrome_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/chrome_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/chrome_small_dust.json b/src/main/resources/assets/techreborn/models/item/chrome_small_dust.json deleted file mode 100644 index 79a98c0ac..000000000 --- a/src/main/resources/assets/techreborn/models/item/chrome_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/chrome_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/chrome_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/chrome_storage_block_slab.json deleted file mode 100644 index 0b28ae2eb..000000000 --- a/src/main/resources/assets/techreborn/models/item/chrome_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/chrome_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/chrome_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/chrome_storage_block_stairs.json deleted file mode 100644 index 4d75d3340..000000000 --- a/src/main/resources/assets/techreborn/models/item/chrome_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/chrome_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/chrome_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/chrome_storage_block_wall.json deleted file mode 100644 index 3b17297bf..000000000 --- a/src/main/resources/assets/techreborn/models/item/chrome_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/chrome_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/cinnabar_dust.json b/src/main/resources/assets/techreborn/models/item/cinnabar_dust.json deleted file mode 100644 index fe80716b7..000000000 --- a/src/main/resources/assets/techreborn/models/item/cinnabar_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/cinnabar_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/cinnabar_ore.json b/src/main/resources/assets/techreborn/models/item/cinnabar_ore.json deleted file mode 100644 index ee13d0831..000000000 --- a/src/main/resources/assets/techreborn/models/item/cinnabar_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/cinnabar_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/cinnabar_small_dust.json b/src/main/resources/assets/techreborn/models/item/cinnabar_small_dust.json deleted file mode 100644 index 2413fefd7..000000000 --- a/src/main/resources/assets/techreborn/models/item/cinnabar_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/cinnabar_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/clay_dust.json b/src/main/resources/assets/techreborn/models/item/clay_dust.json deleted file mode 100644 index 1500f583c..000000000 --- a/src/main/resources/assets/techreborn/models/item/clay_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/clay_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/clay_small_dust.json b/src/main/resources/assets/techreborn/models/item/clay_small_dust.json deleted file mode 100644 index 7e7ce72c1..000000000 --- a/src/main/resources/assets/techreborn/models/item/clay_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/clay_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/coal_dust.json b/src/main/resources/assets/techreborn/models/item/coal_dust.json deleted file mode 100644 index 8d1ccd65b..000000000 --- a/src/main/resources/assets/techreborn/models/item/coal_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/coal_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/coal_plate.json b/src/main/resources/assets/techreborn/models/item/coal_plate.json deleted file mode 100644 index 3aa19e92a..000000000 --- a/src/main/resources/assets/techreborn/models/item/coal_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/coal_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/coal_small_dust.json b/src/main/resources/assets/techreborn/models/item/coal_small_dust.json deleted file mode 100644 index 6cf2d4399..000000000 --- a/src/main/resources/assets/techreborn/models/item/coal_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/coal_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/copper_dust.json b/src/main/resources/assets/techreborn/models/item/copper_dust.json deleted file mode 100644 index 6ef8ce651..000000000 --- a/src/main/resources/assets/techreborn/models/item/copper_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/copper_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/copper_ingot.json b/src/main/resources/assets/techreborn/models/item/copper_ingot.json deleted file mode 100644 index 95836f3ce..000000000 --- a/src/main/resources/assets/techreborn/models/item/copper_ingot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/ingot/copper_ingot" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/copper_nugget.json b/src/main/resources/assets/techreborn/models/item/copper_nugget.json deleted file mode 100644 index 3a3258f39..000000000 --- a/src/main/resources/assets/techreborn/models/item/copper_nugget.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/nugget/copper_nugget" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/copper_ore.json b/src/main/resources/assets/techreborn/models/item/copper_ore.json deleted file mode 100644 index b3c0a0d49..000000000 --- a/src/main/resources/assets/techreborn/models/item/copper_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/copper_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/copper_plate.json b/src/main/resources/assets/techreborn/models/item/copper_plate.json deleted file mode 100644 index 5a12527e3..000000000 --- a/src/main/resources/assets/techreborn/models/item/copper_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/copper_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/dark_ashes_dust.json b/src/main/resources/assets/techreborn/models/item/dark_ashes_dust.json deleted file mode 100644 index ea4d0edee..000000000 --- a/src/main/resources/assets/techreborn/models/item/dark_ashes_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/dark_ashes_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/dark_ashes_small_dust.json b/src/main/resources/assets/techreborn/models/item/dark_ashes_small_dust.json deleted file mode 100644 index d3ca599bb..000000000 --- a/src/main/resources/assets/techreborn/models/item/dark_ashes_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/dark_ashes_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/deepslate_bauxite_ore.json b/src/main/resources/assets/techreborn/models/item/deepslate_bauxite_ore.json deleted file mode 100644 index 1f3ca08bb..000000000 --- a/src/main/resources/assets/techreborn/models/item/deepslate_bauxite_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/deepslate/deepslate_bauxite_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/deepslate_galena_ore.json b/src/main/resources/assets/techreborn/models/item/deepslate_galena_ore.json deleted file mode 100644 index 2250be690..000000000 --- a/src/main/resources/assets/techreborn/models/item/deepslate_galena_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/deepslate/deepslate_galena_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/deepslate_iridium_ore.json b/src/main/resources/assets/techreborn/models/item/deepslate_iridium_ore.json deleted file mode 100644 index 61688d73f..000000000 --- a/src/main/resources/assets/techreborn/models/item/deepslate_iridium_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/deepslate/deepslate_iridium_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/deepslate_lead_ore.json b/src/main/resources/assets/techreborn/models/item/deepslate_lead_ore.json deleted file mode 100644 index d4b495d50..000000000 --- a/src/main/resources/assets/techreborn/models/item/deepslate_lead_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/deepslate/deepslate_lead_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/deepslate_peridot_ore.json b/src/main/resources/assets/techreborn/models/item/deepslate_peridot_ore.json deleted file mode 100644 index 532e1adf5..000000000 --- a/src/main/resources/assets/techreborn/models/item/deepslate_peridot_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/deepslate/deepslate_peridot_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/deepslate_ruby_ore.json b/src/main/resources/assets/techreborn/models/item/deepslate_ruby_ore.json deleted file mode 100644 index b947cadec..000000000 --- a/src/main/resources/assets/techreborn/models/item/deepslate_ruby_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/deepslate/deepslate_ruby_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/deepslate_sapphire_ore.json b/src/main/resources/assets/techreborn/models/item/deepslate_sapphire_ore.json deleted file mode 100644 index 07bb3d7e1..000000000 --- a/src/main/resources/assets/techreborn/models/item/deepslate_sapphire_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/deepslate/deepslate_sapphire_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/deepslate_sheldonite_ore.json b/src/main/resources/assets/techreborn/models/item/deepslate_sheldonite_ore.json deleted file mode 100644 index 53895bdba..000000000 --- a/src/main/resources/assets/techreborn/models/item/deepslate_sheldonite_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/deepslate/deepslate_sheldonite_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/deepslate_silver_ore.json b/src/main/resources/assets/techreborn/models/item/deepslate_silver_ore.json deleted file mode 100644 index 24aecf828..000000000 --- a/src/main/resources/assets/techreborn/models/item/deepslate_silver_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/deepslate/deepslate_silver_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/deepslate_sodalite_ore.json b/src/main/resources/assets/techreborn/models/item/deepslate_sodalite_ore.json deleted file mode 100644 index c2cb9c3ee..000000000 --- a/src/main/resources/assets/techreborn/models/item/deepslate_sodalite_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/deepslate/deepslate_sodalite_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/deepslate_tin_ore.json b/src/main/resources/assets/techreborn/models/item/deepslate_tin_ore.json deleted file mode 100644 index d3675f0f5..000000000 --- a/src/main/resources/assets/techreborn/models/item/deepslate_tin_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/deepslate/deepslate_tin_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/deepslate_tungsten_ore.json b/src/main/resources/assets/techreborn/models/item/deepslate_tungsten_ore.json deleted file mode 100644 index 0b0c710b8..000000000 --- a/src/main/resources/assets/techreborn/models/item/deepslate_tungsten_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/deepslate/deepslate_tungsten_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/diamond_dust.json b/src/main/resources/assets/techreborn/models/item/diamond_dust.json deleted file mode 100644 index c9935c25d..000000000 --- a/src/main/resources/assets/techreborn/models/item/diamond_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/diamond_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/diamond_nugget.json b/src/main/resources/assets/techreborn/models/item/diamond_nugget.json deleted file mode 100644 index a557717db..000000000 --- a/src/main/resources/assets/techreborn/models/item/diamond_nugget.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/nugget/diamond_nugget" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/diamond_plate.json b/src/main/resources/assets/techreborn/models/item/diamond_plate.json deleted file mode 100644 index 8e3dbd74a..000000000 --- a/src/main/resources/assets/techreborn/models/item/diamond_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/diamond_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/diamond_small_dust.json b/src/main/resources/assets/techreborn/models/item/diamond_small_dust.json deleted file mode 100644 index 4083b26c3..000000000 --- a/src/main/resources/assets/techreborn/models/item/diamond_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/diamond_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/diorite_dust.json b/src/main/resources/assets/techreborn/models/item/diorite_dust.json deleted file mode 100644 index def1083f9..000000000 --- a/src/main/resources/assets/techreborn/models/item/diorite_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/diorite_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/diorite_small_dust.json b/src/main/resources/assets/techreborn/models/item/diorite_small_dust.json deleted file mode 100644 index 75567d1f8..000000000 --- a/src/main/resources/assets/techreborn/models/item/diorite_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/diorite_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/electrum_dust.json b/src/main/resources/assets/techreborn/models/item/electrum_dust.json deleted file mode 100644 index d1d96f037..000000000 --- a/src/main/resources/assets/techreborn/models/item/electrum_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/electrum_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/electrum_ingot.json b/src/main/resources/assets/techreborn/models/item/electrum_ingot.json deleted file mode 100644 index cf3472a73..000000000 --- a/src/main/resources/assets/techreborn/models/item/electrum_ingot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/ingot/electrum_ingot" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/electrum_nugget.json b/src/main/resources/assets/techreborn/models/item/electrum_nugget.json deleted file mode 100644 index bf52a50d6..000000000 --- a/src/main/resources/assets/techreborn/models/item/electrum_nugget.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/nugget/electrum_nugget" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/electrum_plate.json b/src/main/resources/assets/techreborn/models/item/electrum_plate.json deleted file mode 100644 index 0a5c4902f..000000000 --- a/src/main/resources/assets/techreborn/models/item/electrum_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/electrum_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/electrum_small_dust.json b/src/main/resources/assets/techreborn/models/item/electrum_small_dust.json deleted file mode 100644 index 7597a62f5..000000000 --- a/src/main/resources/assets/techreborn/models/item/electrum_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/electrum_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/electrum_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/electrum_storage_block_slab.json deleted file mode 100644 index 6881e3777..000000000 --- a/src/main/resources/assets/techreborn/models/item/electrum_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/electrum_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/electrum_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/electrum_storage_block_stairs.json deleted file mode 100644 index dc56fab64..000000000 --- a/src/main/resources/assets/techreborn/models/item/electrum_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/electrum_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/electrum_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/electrum_storage_block_wall.json deleted file mode 100644 index 6295d9902..000000000 --- a/src/main/resources/assets/techreborn/models/item/electrum_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/electrum_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/emerald_dust.json b/src/main/resources/assets/techreborn/models/item/emerald_dust.json deleted file mode 100644 index 2a796f90b..000000000 --- a/src/main/resources/assets/techreborn/models/item/emerald_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/emerald_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/emerald_nugget.json b/src/main/resources/assets/techreborn/models/item/emerald_nugget.json deleted file mode 100644 index 0a5d76c62..000000000 --- a/src/main/resources/assets/techreborn/models/item/emerald_nugget.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/nugget/emerald_nugget" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/emerald_plate.json b/src/main/resources/assets/techreborn/models/item/emerald_plate.json deleted file mode 100644 index 330f376fe..000000000 --- a/src/main/resources/assets/techreborn/models/item/emerald_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/emerald_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/emerald_small_dust.json b/src/main/resources/assets/techreborn/models/item/emerald_small_dust.json deleted file mode 100644 index 9a1f125ff..000000000 --- a/src/main/resources/assets/techreborn/models/item/emerald_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/emerald_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/ender_eye_dust.json b/src/main/resources/assets/techreborn/models/item/ender_eye_dust.json deleted file mode 100644 index a4f975007..000000000 --- a/src/main/resources/assets/techreborn/models/item/ender_eye_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/ender_eye_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/ender_eye_small_dust.json b/src/main/resources/assets/techreborn/models/item/ender_eye_small_dust.json deleted file mode 100644 index 6383129a6..000000000 --- a/src/main/resources/assets/techreborn/models/item/ender_eye_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/ender_eye_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/ender_pearl_dust.json b/src/main/resources/assets/techreborn/models/item/ender_pearl_dust.json deleted file mode 100644 index 3e76a4f5e..000000000 --- a/src/main/resources/assets/techreborn/models/item/ender_pearl_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/ender_pearl_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/ender_pearl_small_dust.json b/src/main/resources/assets/techreborn/models/item/ender_pearl_small_dust.json deleted file mode 100644 index 0f67618ee..000000000 --- a/src/main/resources/assets/techreborn/models/item/ender_pearl_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/ender_pearl_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/endstone_dust.json b/src/main/resources/assets/techreborn/models/item/endstone_dust.json deleted file mode 100644 index 0f4b913d0..000000000 --- a/src/main/resources/assets/techreborn/models/item/endstone_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/endstone_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/endstone_small_dust.json b/src/main/resources/assets/techreborn/models/item/endstone_small_dust.json deleted file mode 100644 index ffd838f52..000000000 --- a/src/main/resources/assets/techreborn/models/item/endstone_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/endstone_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/flint_dust.json b/src/main/resources/assets/techreborn/models/item/flint_dust.json deleted file mode 100644 index 5c999f5cb..000000000 --- a/src/main/resources/assets/techreborn/models/item/flint_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/flint_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/flint_small_dust.json b/src/main/resources/assets/techreborn/models/item/flint_small_dust.json deleted file mode 100644 index 4cb4b253c..000000000 --- a/src/main/resources/assets/techreborn/models/item/flint_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/flint_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/galena_dust.json b/src/main/resources/assets/techreborn/models/item/galena_dust.json deleted file mode 100644 index be7f02455..000000000 --- a/src/main/resources/assets/techreborn/models/item/galena_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/galena_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/galena_ore.json b/src/main/resources/assets/techreborn/models/item/galena_ore.json deleted file mode 100644 index 56e055792..000000000 --- a/src/main/resources/assets/techreborn/models/item/galena_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/galena_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/galena_small_dust.json b/src/main/resources/assets/techreborn/models/item/galena_small_dust.json deleted file mode 100644 index bfa7453da..000000000 --- a/src/main/resources/assets/techreborn/models/item/galena_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/galena_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/glowstone_small_dust.json b/src/main/resources/assets/techreborn/models/item/glowstone_small_dust.json deleted file mode 100644 index 148dbca84..000000000 --- a/src/main/resources/assets/techreborn/models/item/glowstone_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/glowstone_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/gold_plate.json b/src/main/resources/assets/techreborn/models/item/gold_plate.json deleted file mode 100644 index 2de6645a3..000000000 --- a/src/main/resources/assets/techreborn/models/item/gold_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/gold_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/granite_dust.json b/src/main/resources/assets/techreborn/models/item/granite_dust.json deleted file mode 100644 index 5d5791828..000000000 --- a/src/main/resources/assets/techreborn/models/item/granite_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/granite_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/granite_small_dust.json b/src/main/resources/assets/techreborn/models/item/granite_small_dust.json deleted file mode 100644 index f7801f875..000000000 --- a/src/main/resources/assets/techreborn/models/item/granite_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/granite_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/grossular_dust.json b/src/main/resources/assets/techreborn/models/item/grossular_dust.json deleted file mode 100644 index 6376003d6..000000000 --- a/src/main/resources/assets/techreborn/models/item/grossular_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/grossular_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/grossular_small_dust.json b/src/main/resources/assets/techreborn/models/item/grossular_small_dust.json deleted file mode 100644 index 68dafb8e6..000000000 --- a/src/main/resources/assets/techreborn/models/item/grossular_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/grossular_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/hot_tungstensteel_ingot.json b/src/main/resources/assets/techreborn/models/item/hot_tungstensteel_ingot.json deleted file mode 100644 index 89fef5ab3..000000000 --- a/src/main/resources/assets/techreborn/models/item/hot_tungstensteel_ingot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/ingot/hot_tungstensteel_ingot" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/hot_tungstensteel_nugget.json b/src/main/resources/assets/techreborn/models/item/hot_tungstensteel_nugget.json deleted file mode 100644 index 59e1725a7..000000000 --- a/src/main/resources/assets/techreborn/models/item/hot_tungstensteel_nugget.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/nugget/hot_tungstensteel_nugget" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/hot_tungstensteel_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/hot_tungstensteel_storage_block_slab.json deleted file mode 100644 index df35c466b..000000000 --- a/src/main/resources/assets/techreborn/models/item/hot_tungstensteel_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/hot_tungstensteel_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/hot_tungstensteel_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/hot_tungstensteel_storage_block_stairs.json deleted file mode 100644 index 9be9d6b69..000000000 --- a/src/main/resources/assets/techreborn/models/item/hot_tungstensteel_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/hot_tungstensteel_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/hot_tungstensteel_storage_block_wall.json deleted file mode 100644 index 674cbc8d3..000000000 --- a/src/main/resources/assets/techreborn/models/item/hot_tungstensteel_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/hot_tungstensteel_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/invar_dust.json b/src/main/resources/assets/techreborn/models/item/invar_dust.json deleted file mode 100644 index 4d742d0b0..000000000 --- a/src/main/resources/assets/techreborn/models/item/invar_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/invar_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/invar_ingot.json b/src/main/resources/assets/techreborn/models/item/invar_ingot.json deleted file mode 100644 index 72d6b6529..000000000 --- a/src/main/resources/assets/techreborn/models/item/invar_ingot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/ingot/invar_ingot" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/invar_nugget.json b/src/main/resources/assets/techreborn/models/item/invar_nugget.json deleted file mode 100644 index 59a895f96..000000000 --- a/src/main/resources/assets/techreborn/models/item/invar_nugget.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/nugget/invar_nugget" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/invar_plate.json b/src/main/resources/assets/techreborn/models/item/invar_plate.json deleted file mode 100644 index 51d66d245..000000000 --- a/src/main/resources/assets/techreborn/models/item/invar_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/invar_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/invar_small_dust.json b/src/main/resources/assets/techreborn/models/item/invar_small_dust.json deleted file mode 100644 index 4afb7a0b0..000000000 --- a/src/main/resources/assets/techreborn/models/item/invar_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/invar_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/invar_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/invar_storage_block_slab.json deleted file mode 100644 index e647a656a..000000000 --- a/src/main/resources/assets/techreborn/models/item/invar_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/invar_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/invar_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/invar_storage_block_stairs.json deleted file mode 100644 index 2785ff496..000000000 --- a/src/main/resources/assets/techreborn/models/item/invar_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/invar_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/invar_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/invar_storage_block_wall.json deleted file mode 100644 index ef7506cf0..000000000 --- a/src/main/resources/assets/techreborn/models/item/invar_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/invar_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/iridium_alloy_ingot.json b/src/main/resources/assets/techreborn/models/item/iridium_alloy_ingot.json deleted file mode 100644 index ff79d7bc7..000000000 --- a/src/main/resources/assets/techreborn/models/item/iridium_alloy_ingot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/ingot/iridium_alloy_ingot" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/iridium_alloy_plate.json b/src/main/resources/assets/techreborn/models/item/iridium_alloy_plate.json deleted file mode 100644 index d44d4dc17..000000000 --- a/src/main/resources/assets/techreborn/models/item/iridium_alloy_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/iridium_alloy_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/iridium_ingot.json b/src/main/resources/assets/techreborn/models/item/iridium_ingot.json deleted file mode 100644 index 185587e07..000000000 --- a/src/main/resources/assets/techreborn/models/item/iridium_ingot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/ingot/iridium_ingot" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/iridium_nugget.json b/src/main/resources/assets/techreborn/models/item/iridium_nugget.json deleted file mode 100644 index 8d4cdd907..000000000 --- a/src/main/resources/assets/techreborn/models/item/iridium_nugget.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/nugget/iridium_nugget" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/iridium_ore.json b/src/main/resources/assets/techreborn/models/item/iridium_ore.json deleted file mode 100644 index 37e238833..000000000 --- a/src/main/resources/assets/techreborn/models/item/iridium_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/iridium_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/iridium_plate.json b/src/main/resources/assets/techreborn/models/item/iridium_plate.json deleted file mode 100644 index e35ef7684..000000000 --- a/src/main/resources/assets/techreborn/models/item/iridium_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/iridium_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/iridium_reinforced_stone_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/iridium_reinforced_stone_storage_block_slab.json deleted file mode 100644 index f31d1992b..000000000 --- a/src/main/resources/assets/techreborn/models/item/iridium_reinforced_stone_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/iridium_reinforced_stone_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/iridium_reinforced_stone_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/iridium_reinforced_stone_storage_block_stairs.json deleted file mode 100644 index 6ea5e6588..000000000 --- a/src/main/resources/assets/techreborn/models/item/iridium_reinforced_stone_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/iridium_reinforced_stone_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/iridium_reinforced_stone_storage_block_wall.json deleted file mode 100644 index 967764786..000000000 --- a/src/main/resources/assets/techreborn/models/item/iridium_reinforced_stone_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/iridium_reinforced_stone_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/iridium_reinforced_tungstensteel_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/iridium_reinforced_tungstensteel_storage_block_slab.json deleted file mode 100644 index 38dc3c649..000000000 --- a/src/main/resources/assets/techreborn/models/item/iridium_reinforced_tungstensteel_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/iridium_reinforced_tungstensteel_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/iridium_reinforced_tungstensteel_storage_block_stairs.json deleted file mode 100644 index 93e3f87ba..000000000 --- a/src/main/resources/assets/techreborn/models/item/iridium_reinforced_tungstensteel_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/iridium_reinforced_tungstensteel_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/iridium_reinforced_tungstensteel_storage_block_wall.json deleted file mode 100644 index b397e5f2b..000000000 --- a/src/main/resources/assets/techreborn/models/item/iridium_reinforced_tungstensteel_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/iridium_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/iridium_storage_block_slab.json deleted file mode 100644 index 0ac72944c..000000000 --- a/src/main/resources/assets/techreborn/models/item/iridium_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/iridium_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/iridium_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/iridium_storage_block_stairs.json deleted file mode 100644 index e6f2037e7..000000000 --- a/src/main/resources/assets/techreborn/models/item/iridium_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/iridium_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/iridium_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/iridium_storage_block_wall.json deleted file mode 100644 index d43a4a0e2..000000000 --- a/src/main/resources/assets/techreborn/models/item/iridium_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/iridium_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/iron_plate.json b/src/main/resources/assets/techreborn/models/item/iron_plate.json deleted file mode 100644 index 21849213a..000000000 --- a/src/main/resources/assets/techreborn/models/item/iron_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/iron_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/lapis_plate.json b/src/main/resources/assets/techreborn/models/item/lapis_plate.json deleted file mode 100644 index 995819b46..000000000 --- a/src/main/resources/assets/techreborn/models/item/lapis_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/lapis_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/lazurite_dust.json b/src/main/resources/assets/techreborn/models/item/lazurite_dust.json deleted file mode 100644 index 57af1f90f..000000000 --- a/src/main/resources/assets/techreborn/models/item/lazurite_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/lazurite_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/lazurite_plate.json b/src/main/resources/assets/techreborn/models/item/lazurite_plate.json deleted file mode 100644 index 4250860cf..000000000 --- a/src/main/resources/assets/techreborn/models/item/lazurite_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/lazurite_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/lazurite_small_dust.json b/src/main/resources/assets/techreborn/models/item/lazurite_small_dust.json deleted file mode 100644 index a2a165e5c..000000000 --- a/src/main/resources/assets/techreborn/models/item/lazurite_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/lazurite_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/lead_dust.json b/src/main/resources/assets/techreborn/models/item/lead_dust.json deleted file mode 100644 index 74a4b7bc6..000000000 --- a/src/main/resources/assets/techreborn/models/item/lead_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/lead_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/lead_ingot.json b/src/main/resources/assets/techreborn/models/item/lead_ingot.json deleted file mode 100644 index 0d40a6932..000000000 --- a/src/main/resources/assets/techreborn/models/item/lead_ingot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/ingot/lead_ingot" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/lead_nugget.json b/src/main/resources/assets/techreborn/models/item/lead_nugget.json deleted file mode 100644 index 36702d1e3..000000000 --- a/src/main/resources/assets/techreborn/models/item/lead_nugget.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/nugget/lead_nugget" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/lead_ore.json b/src/main/resources/assets/techreborn/models/item/lead_ore.json deleted file mode 100644 index c08e75460..000000000 --- a/src/main/resources/assets/techreborn/models/item/lead_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/lead_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/lead_plate.json b/src/main/resources/assets/techreborn/models/item/lead_plate.json deleted file mode 100644 index 100473f6c..000000000 --- a/src/main/resources/assets/techreborn/models/item/lead_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/lead_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/lead_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/lead_storage_block_slab.json deleted file mode 100644 index c50238366..000000000 --- a/src/main/resources/assets/techreborn/models/item/lead_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/lead_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/lead_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/lead_storage_block_stairs.json deleted file mode 100644 index 752bad0bc..000000000 --- a/src/main/resources/assets/techreborn/models/item/lead_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/lead_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/lead_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/lead_storage_block_wall.json deleted file mode 100644 index 1ba8ebca0..000000000 --- a/src/main/resources/assets/techreborn/models/item/lead_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/lead_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/magnalium_plate.json b/src/main/resources/assets/techreborn/models/item/magnalium_plate.json deleted file mode 100644 index 3222a39e8..000000000 --- a/src/main/resources/assets/techreborn/models/item/magnalium_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/magnalium_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/magnesium_dust.json b/src/main/resources/assets/techreborn/models/item/magnesium_dust.json deleted file mode 100644 index d5d2888a9..000000000 --- a/src/main/resources/assets/techreborn/models/item/magnesium_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/magnesium_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/magnesium_small_dust.json b/src/main/resources/assets/techreborn/models/item/magnesium_small_dust.json deleted file mode 100644 index d5a70d14a..000000000 --- a/src/main/resources/assets/techreborn/models/item/magnesium_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/magnesium_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/manganese_dust.json b/src/main/resources/assets/techreborn/models/item/manganese_dust.json deleted file mode 100644 index 268215c1e..000000000 --- a/src/main/resources/assets/techreborn/models/item/manganese_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/manganese_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/manganese_small_dust.json b/src/main/resources/assets/techreborn/models/item/manganese_small_dust.json deleted file mode 100644 index de89012b5..000000000 --- a/src/main/resources/assets/techreborn/models/item/manganese_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/manganese_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/marble_dust.json b/src/main/resources/assets/techreborn/models/item/marble_dust.json deleted file mode 100644 index afe420b44..000000000 --- a/src/main/resources/assets/techreborn/models/item/marble_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/marble_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/marble_small_dust.json b/src/main/resources/assets/techreborn/models/item/marble_small_dust.json deleted file mode 100644 index d6e63f1c4..000000000 --- a/src/main/resources/assets/techreborn/models/item/marble_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/marble_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/mixed_metal_ingot.json b/src/main/resources/assets/techreborn/models/item/mixed_metal_ingot.json deleted file mode 100644 index 6ad4697c1..000000000 --- a/src/main/resources/assets/techreborn/models/item/mixed_metal_ingot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/ingot/mixed_metal_ingot" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/netherite_nugget.json b/src/main/resources/assets/techreborn/models/item/netherite_nugget.json deleted file mode 100644 index 7e1246328..000000000 --- a/src/main/resources/assets/techreborn/models/item/netherite_nugget.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/nugget/netherite_nugget" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/netherrack_dust.json b/src/main/resources/assets/techreborn/models/item/netherrack_dust.json deleted file mode 100644 index b1f44fc0e..000000000 --- a/src/main/resources/assets/techreborn/models/item/netherrack_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/netherrack_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/netherrack_small_dust.json b/src/main/resources/assets/techreborn/models/item/netherrack_small_dust.json deleted file mode 100644 index 4571e613c..000000000 --- a/src/main/resources/assets/techreborn/models/item/netherrack_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/netherrack_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/nickel_dust.json b/src/main/resources/assets/techreborn/models/item/nickel_dust.json deleted file mode 100644 index 27ba86a04..000000000 --- a/src/main/resources/assets/techreborn/models/item/nickel_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/nickel_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/nickel_ingot.json b/src/main/resources/assets/techreborn/models/item/nickel_ingot.json deleted file mode 100644 index f43730ac6..000000000 --- a/src/main/resources/assets/techreborn/models/item/nickel_ingot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/ingot/nickel_ingot" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/nickel_nugget.json b/src/main/resources/assets/techreborn/models/item/nickel_nugget.json deleted file mode 100644 index 3012dae4a..000000000 --- a/src/main/resources/assets/techreborn/models/item/nickel_nugget.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/nugget/nickel_nugget" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/nickel_plate.json b/src/main/resources/assets/techreborn/models/item/nickel_plate.json deleted file mode 100644 index 70bdebefc..000000000 --- a/src/main/resources/assets/techreborn/models/item/nickel_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/nickel_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/nickel_small_dust.json b/src/main/resources/assets/techreborn/models/item/nickel_small_dust.json deleted file mode 100644 index 4b984e468..000000000 --- a/src/main/resources/assets/techreborn/models/item/nickel_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/nickel_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/nickel_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/nickel_storage_block_slab.json deleted file mode 100644 index 350df7727..000000000 --- a/src/main/resources/assets/techreborn/models/item/nickel_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/nickel_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/nickel_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/nickel_storage_block_stairs.json deleted file mode 100644 index b13fd3621..000000000 --- a/src/main/resources/assets/techreborn/models/item/nickel_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/nickel_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/nickel_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/nickel_storage_block_wall.json deleted file mode 100644 index 1f474b62a..000000000 --- a/src/main/resources/assets/techreborn/models/item/nickel_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/nickel_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/obsidian_dust.json b/src/main/resources/assets/techreborn/models/item/obsidian_dust.json deleted file mode 100644 index 2ed0480fb..000000000 --- a/src/main/resources/assets/techreborn/models/item/obsidian_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/obsidian_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/obsidian_plate.json b/src/main/resources/assets/techreborn/models/item/obsidian_plate.json deleted file mode 100644 index 62bfb0b6d..000000000 --- a/src/main/resources/assets/techreborn/models/item/obsidian_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/obsidian_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/obsidian_small_dust.json b/src/main/resources/assets/techreborn/models/item/obsidian_small_dust.json deleted file mode 100644 index ae7f08fc7..000000000 --- a/src/main/resources/assets/techreborn/models/item/obsidian_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/obsidian_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/olivine_dust.json b/src/main/resources/assets/techreborn/models/item/olivine_dust.json deleted file mode 100644 index b58a88ced..000000000 --- a/src/main/resources/assets/techreborn/models/item/olivine_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/olivine_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/olivine_small_dust.json b/src/main/resources/assets/techreborn/models/item/olivine_small_dust.json deleted file mode 100644 index 1213e5cf6..000000000 --- a/src/main/resources/assets/techreborn/models/item/olivine_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/olivine_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/peridot_dust.json b/src/main/resources/assets/techreborn/models/item/peridot_dust.json deleted file mode 100644 index 77922a2ee..000000000 --- a/src/main/resources/assets/techreborn/models/item/peridot_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/peridot_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/peridot_ore.json b/src/main/resources/assets/techreborn/models/item/peridot_ore.json deleted file mode 100644 index 179ca4f49..000000000 --- a/src/main/resources/assets/techreborn/models/item/peridot_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/peridot_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/peridot_plate.json b/src/main/resources/assets/techreborn/models/item/peridot_plate.json deleted file mode 100644 index ce1815a97..000000000 --- a/src/main/resources/assets/techreborn/models/item/peridot_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/peridot_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/peridot_small_dust.json b/src/main/resources/assets/techreborn/models/item/peridot_small_dust.json deleted file mode 100644 index 7c32c3e9f..000000000 --- a/src/main/resources/assets/techreborn/models/item/peridot_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/peridot_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/peridot_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/peridot_storage_block_slab.json deleted file mode 100644 index 00e8ba024..000000000 --- a/src/main/resources/assets/techreborn/models/item/peridot_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/peridot_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/peridot_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/peridot_storage_block_stairs.json deleted file mode 100644 index 962c862ae..000000000 --- a/src/main/resources/assets/techreborn/models/item/peridot_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/peridot_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/peridot_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/peridot_storage_block_wall.json deleted file mode 100644 index 0cf520539..000000000 --- a/src/main/resources/assets/techreborn/models/item/peridot_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/peridot_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/phosphorous_dust.json b/src/main/resources/assets/techreborn/models/item/phosphorous_dust.json deleted file mode 100644 index 347eb205e..000000000 --- a/src/main/resources/assets/techreborn/models/item/phosphorous_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/phosphorous_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/phosphorous_small_dust.json b/src/main/resources/assets/techreborn/models/item/phosphorous_small_dust.json deleted file mode 100644 index d6b24e652..000000000 --- a/src/main/resources/assets/techreborn/models/item/phosphorous_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/phosphorous_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/platinum_dust.json b/src/main/resources/assets/techreborn/models/item/platinum_dust.json deleted file mode 100644 index b853e40db..000000000 --- a/src/main/resources/assets/techreborn/models/item/platinum_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/platinum_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/platinum_ingot.json b/src/main/resources/assets/techreborn/models/item/platinum_ingot.json deleted file mode 100644 index aae9f7e0f..000000000 --- a/src/main/resources/assets/techreborn/models/item/platinum_ingot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/ingot/platinum_ingot" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/platinum_nugget.json b/src/main/resources/assets/techreborn/models/item/platinum_nugget.json deleted file mode 100644 index e850b366f..000000000 --- a/src/main/resources/assets/techreborn/models/item/platinum_nugget.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/nugget/platinum_nugget" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/platinum_plate.json b/src/main/resources/assets/techreborn/models/item/platinum_plate.json deleted file mode 100644 index e26903329..000000000 --- a/src/main/resources/assets/techreborn/models/item/platinum_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/platinum_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/platinum_small_dust.json b/src/main/resources/assets/techreborn/models/item/platinum_small_dust.json deleted file mode 100644 index d81a78e74..000000000 --- a/src/main/resources/assets/techreborn/models/item/platinum_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/platinum_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/platinum_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/platinum_storage_block_slab.json deleted file mode 100644 index b329eb11d..000000000 --- a/src/main/resources/assets/techreborn/models/item/platinum_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/platinum_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/platinum_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/platinum_storage_block_stairs.json deleted file mode 100644 index 44e231023..000000000 --- a/src/main/resources/assets/techreborn/models/item/platinum_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/platinum_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/platinum_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/platinum_storage_block_wall.json deleted file mode 100644 index 6453ad915..000000000 --- a/src/main/resources/assets/techreborn/models/item/platinum_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/platinum_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/pyrite_dust.json b/src/main/resources/assets/techreborn/models/item/pyrite_dust.json deleted file mode 100644 index 8c681870a..000000000 --- a/src/main/resources/assets/techreborn/models/item/pyrite_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/pyrite_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/pyrite_ore.json b/src/main/resources/assets/techreborn/models/item/pyrite_ore.json deleted file mode 100644 index 982420daf..000000000 --- a/src/main/resources/assets/techreborn/models/item/pyrite_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/pyrite_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/pyrite_small_dust.json b/src/main/resources/assets/techreborn/models/item/pyrite_small_dust.json deleted file mode 100644 index 06979798c..000000000 --- a/src/main/resources/assets/techreborn/models/item/pyrite_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/pyrite_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/pyrope_dust.json b/src/main/resources/assets/techreborn/models/item/pyrope_dust.json deleted file mode 100644 index 5f1da29c8..000000000 --- a/src/main/resources/assets/techreborn/models/item/pyrope_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/pyrope_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/pyrope_small_dust.json b/src/main/resources/assets/techreborn/models/item/pyrope_small_dust.json deleted file mode 100644 index 80bbf9211..000000000 --- a/src/main/resources/assets/techreborn/models/item/pyrope_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/pyrope_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/quartz_dust.json b/src/main/resources/assets/techreborn/models/item/quartz_dust.json deleted file mode 100644 index e0273d726..000000000 --- a/src/main/resources/assets/techreborn/models/item/quartz_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/quartz_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/quartz_plate.json b/src/main/resources/assets/techreborn/models/item/quartz_plate.json deleted file mode 100644 index a25f7533d..000000000 --- a/src/main/resources/assets/techreborn/models/item/quartz_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/quartz_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/quartz_small_dust.json b/src/main/resources/assets/techreborn/models/item/quartz_small_dust.json deleted file mode 100644 index 61f2e62a8..000000000 --- a/src/main/resources/assets/techreborn/models/item/quartz_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/quartz_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/raw_iridium_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/raw_iridium_storage_block_slab.json deleted file mode 100644 index 6e5bfab7c..000000000 --- a/src/main/resources/assets/techreborn/models/item/raw_iridium_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/raw_iridium_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/raw_iridium_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/raw_iridium_storage_block_stairs.json deleted file mode 100644 index d951b31b4..000000000 --- a/src/main/resources/assets/techreborn/models/item/raw_iridium_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/raw_iridium_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/raw_iridium_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/raw_iridium_storage_block_wall.json deleted file mode 100644 index 61e8ea60e..000000000 --- a/src/main/resources/assets/techreborn/models/item/raw_iridium_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/raw_iridium_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/raw_lead_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/raw_lead_storage_block_slab.json deleted file mode 100644 index 29b9590e0..000000000 --- a/src/main/resources/assets/techreborn/models/item/raw_lead_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/raw_lead_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/raw_lead_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/raw_lead_storage_block_stairs.json deleted file mode 100644 index 4e599eef4..000000000 --- a/src/main/resources/assets/techreborn/models/item/raw_lead_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/raw_lead_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/raw_lead_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/raw_lead_storage_block_wall.json deleted file mode 100644 index f35384690..000000000 --- a/src/main/resources/assets/techreborn/models/item/raw_lead_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/raw_lead_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/raw_silver_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/raw_silver_storage_block_slab.json deleted file mode 100644 index 2c23632b8..000000000 --- a/src/main/resources/assets/techreborn/models/item/raw_silver_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/raw_silver_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/raw_silver_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/raw_silver_storage_block_stairs.json deleted file mode 100644 index 077fbc0ed..000000000 --- a/src/main/resources/assets/techreborn/models/item/raw_silver_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/raw_silver_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/raw_silver_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/raw_silver_storage_block_wall.json deleted file mode 100644 index 62a08bdde..000000000 --- a/src/main/resources/assets/techreborn/models/item/raw_silver_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/raw_silver_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/raw_tin_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/raw_tin_storage_block_slab.json deleted file mode 100644 index f3fc800ab..000000000 --- a/src/main/resources/assets/techreborn/models/item/raw_tin_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/raw_tin_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/raw_tin_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/raw_tin_storage_block_stairs.json deleted file mode 100644 index 6f2ff564d..000000000 --- a/src/main/resources/assets/techreborn/models/item/raw_tin_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/raw_tin_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/raw_tin_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/raw_tin_storage_block_wall.json deleted file mode 100644 index b2fd590c2..000000000 --- a/src/main/resources/assets/techreborn/models/item/raw_tin_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/raw_tin_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/raw_tungsten_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/raw_tungsten_storage_block_slab.json deleted file mode 100644 index 9d8d0eedd..000000000 --- a/src/main/resources/assets/techreborn/models/item/raw_tungsten_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/raw_tungsten_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/raw_tungsten_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/raw_tungsten_storage_block_stairs.json deleted file mode 100644 index 5bf0672f0..000000000 --- a/src/main/resources/assets/techreborn/models/item/raw_tungsten_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/raw_tungsten_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/raw_tungsten_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/raw_tungsten_storage_block_wall.json deleted file mode 100644 index 23dc05eb5..000000000 --- a/src/main/resources/assets/techreborn/models/item/raw_tungsten_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/raw_tungsten_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/red_garnet_dust.json b/src/main/resources/assets/techreborn/models/item/red_garnet_dust.json deleted file mode 100644 index f312760d4..000000000 --- a/src/main/resources/assets/techreborn/models/item/red_garnet_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/red_garnet_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/red_garnet_plate.json b/src/main/resources/assets/techreborn/models/item/red_garnet_plate.json deleted file mode 100644 index f91e5ef1d..000000000 --- a/src/main/resources/assets/techreborn/models/item/red_garnet_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/red_garnet_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/red_garnet_small_dust.json b/src/main/resources/assets/techreborn/models/item/red_garnet_small_dust.json deleted file mode 100644 index 31b0125a3..000000000 --- a/src/main/resources/assets/techreborn/models/item/red_garnet_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/red_garnet_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/red_garnet_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/red_garnet_storage_block_slab.json deleted file mode 100644 index 9c49fcdf7..000000000 --- a/src/main/resources/assets/techreborn/models/item/red_garnet_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/red_garnet_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/red_garnet_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/red_garnet_storage_block_stairs.json deleted file mode 100644 index 5062c69da..000000000 --- a/src/main/resources/assets/techreborn/models/item/red_garnet_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/red_garnet_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/red_garnet_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/red_garnet_storage_block_wall.json deleted file mode 100644 index c9e0b2346..000000000 --- a/src/main/resources/assets/techreborn/models/item/red_garnet_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/red_garnet_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/redstone_plate.json b/src/main/resources/assets/techreborn/models/item/redstone_plate.json deleted file mode 100644 index 9be4e7375..000000000 --- a/src/main/resources/assets/techreborn/models/item/redstone_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/redstone_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/redstone_small_dust.json b/src/main/resources/assets/techreborn/models/item/redstone_small_dust.json deleted file mode 100644 index 5a30df246..000000000 --- a/src/main/resources/assets/techreborn/models/item/redstone_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/redstone_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/refined_iron_ingot.json b/src/main/resources/assets/techreborn/models/item/refined_iron_ingot.json deleted file mode 100644 index 92ddb918e..000000000 --- a/src/main/resources/assets/techreborn/models/item/refined_iron_ingot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/ingot/refined_iron_ingot" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/refined_iron_nugget.json b/src/main/resources/assets/techreborn/models/item/refined_iron_nugget.json deleted file mode 100644 index e37842501..000000000 --- a/src/main/resources/assets/techreborn/models/item/refined_iron_nugget.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/nugget/refined_iron_nugget" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/refined_iron_plate.json b/src/main/resources/assets/techreborn/models/item/refined_iron_plate.json deleted file mode 100644 index e0de77a5c..000000000 --- a/src/main/resources/assets/techreborn/models/item/refined_iron_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/refined_iron_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/refined_iron_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/refined_iron_storage_block_slab.json deleted file mode 100644 index 3f4828d22..000000000 --- a/src/main/resources/assets/techreborn/models/item/refined_iron_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/refined_iron_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/refined_iron_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/refined_iron_storage_block_stairs.json deleted file mode 100644 index 5c3f46fae..000000000 --- a/src/main/resources/assets/techreborn/models/item/refined_iron_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/refined_iron_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/refined_iron_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/refined_iron_storage_block_wall.json deleted file mode 100644 index a16b74376..000000000 --- a/src/main/resources/assets/techreborn/models/item/refined_iron_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/refined_iron_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/ruby_dust.json b/src/main/resources/assets/techreborn/models/item/ruby_dust.json deleted file mode 100644 index 7be288cbf..000000000 --- a/src/main/resources/assets/techreborn/models/item/ruby_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/ruby_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/ruby_ore.json b/src/main/resources/assets/techreborn/models/item/ruby_ore.json deleted file mode 100644 index 59076c1f9..000000000 --- a/src/main/resources/assets/techreborn/models/item/ruby_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/ruby_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/ruby_plate.json b/src/main/resources/assets/techreborn/models/item/ruby_plate.json deleted file mode 100644 index 9fd36a429..000000000 --- a/src/main/resources/assets/techreborn/models/item/ruby_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/ruby_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/ruby_small_dust.json b/src/main/resources/assets/techreborn/models/item/ruby_small_dust.json deleted file mode 100644 index 6b71c7961..000000000 --- a/src/main/resources/assets/techreborn/models/item/ruby_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/ruby_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/ruby_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/ruby_storage_block_slab.json deleted file mode 100644 index 7011e6194..000000000 --- a/src/main/resources/assets/techreborn/models/item/ruby_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/ruby_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/ruby_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/ruby_storage_block_stairs.json deleted file mode 100644 index 08704ce3b..000000000 --- a/src/main/resources/assets/techreborn/models/item/ruby_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/ruby_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/ruby_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/ruby_storage_block_wall.json deleted file mode 100644 index 259e19071..000000000 --- a/src/main/resources/assets/techreborn/models/item/ruby_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/ruby_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/saltpeter_dust.json b/src/main/resources/assets/techreborn/models/item/saltpeter_dust.json deleted file mode 100644 index 4168ad24f..000000000 --- a/src/main/resources/assets/techreborn/models/item/saltpeter_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/saltpeter_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/saltpeter_small_dust.json b/src/main/resources/assets/techreborn/models/item/saltpeter_small_dust.json deleted file mode 100644 index 7b2c605d6..000000000 --- a/src/main/resources/assets/techreborn/models/item/saltpeter_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/saltpeter_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/sapphire_dust.json b/src/main/resources/assets/techreborn/models/item/sapphire_dust.json deleted file mode 100644 index 9a23e7bcc..000000000 --- a/src/main/resources/assets/techreborn/models/item/sapphire_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/sapphire_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/sapphire_ore.json b/src/main/resources/assets/techreborn/models/item/sapphire_ore.json deleted file mode 100644 index 504d38a9c..000000000 --- a/src/main/resources/assets/techreborn/models/item/sapphire_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/sapphire_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/sapphire_plate.json b/src/main/resources/assets/techreborn/models/item/sapphire_plate.json deleted file mode 100644 index 92876b93b..000000000 --- a/src/main/resources/assets/techreborn/models/item/sapphire_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/sapphire_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/sapphire_small_dust.json b/src/main/resources/assets/techreborn/models/item/sapphire_small_dust.json deleted file mode 100644 index 438172859..000000000 --- a/src/main/resources/assets/techreborn/models/item/sapphire_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/sapphire_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/sapphire_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/sapphire_storage_block_slab.json deleted file mode 100644 index 815031022..000000000 --- a/src/main/resources/assets/techreborn/models/item/sapphire_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/sapphire_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/sapphire_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/sapphire_storage_block_stairs.json deleted file mode 100644 index 01a263015..000000000 --- a/src/main/resources/assets/techreborn/models/item/sapphire_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/sapphire_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/sapphire_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/sapphire_storage_block_wall.json deleted file mode 100644 index ccb151622..000000000 --- a/src/main/resources/assets/techreborn/models/item/sapphire_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/sapphire_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/saw_dust.json b/src/main/resources/assets/techreborn/models/item/saw_dust.json deleted file mode 100644 index 642a306e9..000000000 --- a/src/main/resources/assets/techreborn/models/item/saw_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/saw_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/saw_small_dust.json b/src/main/resources/assets/techreborn/models/item/saw_small_dust.json deleted file mode 100644 index 5ba84dd9f..000000000 --- a/src/main/resources/assets/techreborn/models/item/saw_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/saw_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/sheldonite_ore.json b/src/main/resources/assets/techreborn/models/item/sheldonite_ore.json deleted file mode 100644 index e80acb259..000000000 --- a/src/main/resources/assets/techreborn/models/item/sheldonite_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/sheldonite_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/silicon_plate.json b/src/main/resources/assets/techreborn/models/item/silicon_plate.json deleted file mode 100644 index f7d02c5e4..000000000 --- a/src/main/resources/assets/techreborn/models/item/silicon_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/silicon_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/silver_dust.json b/src/main/resources/assets/techreborn/models/item/silver_dust.json deleted file mode 100644 index 276f8127e..000000000 --- a/src/main/resources/assets/techreborn/models/item/silver_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/silver_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/silver_ingot.json b/src/main/resources/assets/techreborn/models/item/silver_ingot.json deleted file mode 100644 index 0f6491721..000000000 --- a/src/main/resources/assets/techreborn/models/item/silver_ingot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/ingot/silver_ingot" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/silver_nugget.json b/src/main/resources/assets/techreborn/models/item/silver_nugget.json deleted file mode 100644 index 00571f68d..000000000 --- a/src/main/resources/assets/techreborn/models/item/silver_nugget.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/nugget/silver_nugget" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/silver_ore.json b/src/main/resources/assets/techreborn/models/item/silver_ore.json deleted file mode 100644 index 2f4288c24..000000000 --- a/src/main/resources/assets/techreborn/models/item/silver_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/silver_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/silver_plate.json b/src/main/resources/assets/techreborn/models/item/silver_plate.json deleted file mode 100644 index 8cbd3d9a7..000000000 --- a/src/main/resources/assets/techreborn/models/item/silver_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/silver_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/silver_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/silver_storage_block_slab.json deleted file mode 100644 index d8223aba8..000000000 --- a/src/main/resources/assets/techreborn/models/item/silver_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/silver_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/silver_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/silver_storage_block_stairs.json deleted file mode 100644 index 4aa89c41d..000000000 --- a/src/main/resources/assets/techreborn/models/item/silver_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/silver_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/silver_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/silver_storage_block_wall.json deleted file mode 100644 index 6d66463c7..000000000 --- a/src/main/resources/assets/techreborn/models/item/silver_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/silver_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/sodalite_dust.json b/src/main/resources/assets/techreborn/models/item/sodalite_dust.json deleted file mode 100644 index fafb44dd4..000000000 --- a/src/main/resources/assets/techreborn/models/item/sodalite_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/sodalite_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/sodalite_ore.json b/src/main/resources/assets/techreborn/models/item/sodalite_ore.json deleted file mode 100644 index a9b0636f9..000000000 --- a/src/main/resources/assets/techreborn/models/item/sodalite_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/sodalite_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/sodalite_small_dust.json b/src/main/resources/assets/techreborn/models/item/sodalite_small_dust.json deleted file mode 100644 index c2c05c91b..000000000 --- a/src/main/resources/assets/techreborn/models/item/sodalite_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/sodalite_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/spessartine_dust.json b/src/main/resources/assets/techreborn/models/item/spessartine_dust.json deleted file mode 100644 index 669ca3159..000000000 --- a/src/main/resources/assets/techreborn/models/item/spessartine_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/spessartine_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/spessartine_small_dust.json b/src/main/resources/assets/techreborn/models/item/spessartine_small_dust.json deleted file mode 100644 index 05dd90b2b..000000000 --- a/src/main/resources/assets/techreborn/models/item/spessartine_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/spessartine_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/sphalerite_dust.json b/src/main/resources/assets/techreborn/models/item/sphalerite_dust.json deleted file mode 100644 index e3e21f204..000000000 --- a/src/main/resources/assets/techreborn/models/item/sphalerite_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/sphalerite_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/sphalerite_ore.json b/src/main/resources/assets/techreborn/models/item/sphalerite_ore.json deleted file mode 100644 index 593c5cf52..000000000 --- a/src/main/resources/assets/techreborn/models/item/sphalerite_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/sphalerite_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/sphalerite_small_dust.json b/src/main/resources/assets/techreborn/models/item/sphalerite_small_dust.json deleted file mode 100644 index 91fa54f66..000000000 --- a/src/main/resources/assets/techreborn/models/item/sphalerite_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/sphalerite_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/steel_dust.json b/src/main/resources/assets/techreborn/models/item/steel_dust.json deleted file mode 100644 index e659f155a..000000000 --- a/src/main/resources/assets/techreborn/models/item/steel_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/steel_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/steel_ingot.json b/src/main/resources/assets/techreborn/models/item/steel_ingot.json deleted file mode 100644 index 7486b44bb..000000000 --- a/src/main/resources/assets/techreborn/models/item/steel_ingot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/ingot/steel_ingot" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/steel_nugget.json b/src/main/resources/assets/techreborn/models/item/steel_nugget.json deleted file mode 100644 index 1f8d50687..000000000 --- a/src/main/resources/assets/techreborn/models/item/steel_nugget.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/nugget/steel_nugget" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/steel_plate.json b/src/main/resources/assets/techreborn/models/item/steel_plate.json deleted file mode 100644 index 49ff1acb2..000000000 --- a/src/main/resources/assets/techreborn/models/item/steel_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/steel_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/steel_small_dust.json b/src/main/resources/assets/techreborn/models/item/steel_small_dust.json deleted file mode 100644 index b2aa130e7..000000000 --- a/src/main/resources/assets/techreborn/models/item/steel_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/steel_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/steel_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/steel_storage_block_slab.json deleted file mode 100644 index f4d61afe1..000000000 --- a/src/main/resources/assets/techreborn/models/item/steel_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/steel_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/steel_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/steel_storage_block_stairs.json deleted file mode 100644 index f174a9e66..000000000 --- a/src/main/resources/assets/techreborn/models/item/steel_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/steel_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/steel_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/steel_storage_block_wall.json deleted file mode 100644 index 977e23f4c..000000000 --- a/src/main/resources/assets/techreborn/models/item/steel_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/steel_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/sulfur_dust.json b/src/main/resources/assets/techreborn/models/item/sulfur_dust.json deleted file mode 100644 index 333235f85..000000000 --- a/src/main/resources/assets/techreborn/models/item/sulfur_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/sulfur_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/sulfur_small_dust.json b/src/main/resources/assets/techreborn/models/item/sulfur_small_dust.json deleted file mode 100644 index 68fa5eb5c..000000000 --- a/src/main/resources/assets/techreborn/models/item/sulfur_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/sulfur_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/tin_dust.json b/src/main/resources/assets/techreborn/models/item/tin_dust.json deleted file mode 100644 index c13a3131f..000000000 --- a/src/main/resources/assets/techreborn/models/item/tin_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/tin_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/tin_ingot.json b/src/main/resources/assets/techreborn/models/item/tin_ingot.json deleted file mode 100644 index 1272f0b4d..000000000 --- a/src/main/resources/assets/techreborn/models/item/tin_ingot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/ingot/tin_ingot" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/tin_nugget.json b/src/main/resources/assets/techreborn/models/item/tin_nugget.json deleted file mode 100644 index 980ea6a42..000000000 --- a/src/main/resources/assets/techreborn/models/item/tin_nugget.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/nugget/tin_nugget" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/tin_ore.json b/src/main/resources/assets/techreborn/models/item/tin_ore.json deleted file mode 100644 index 904bf1c75..000000000 --- a/src/main/resources/assets/techreborn/models/item/tin_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/tin_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/tin_plate.json b/src/main/resources/assets/techreborn/models/item/tin_plate.json deleted file mode 100644 index a1185b018..000000000 --- a/src/main/resources/assets/techreborn/models/item/tin_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/tin_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/tin_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/tin_storage_block_slab.json deleted file mode 100644 index 4c3cea714..000000000 --- a/src/main/resources/assets/techreborn/models/item/tin_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/tin_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/tin_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/tin_storage_block_stairs.json deleted file mode 100644 index eaf3fa206..000000000 --- a/src/main/resources/assets/techreborn/models/item/tin_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/tin_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/tin_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/tin_storage_block_wall.json deleted file mode 100644 index b26b07102..000000000 --- a/src/main/resources/assets/techreborn/models/item/tin_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/tin_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/titanium_dust.json b/src/main/resources/assets/techreborn/models/item/titanium_dust.json deleted file mode 100644 index 9461c5582..000000000 --- a/src/main/resources/assets/techreborn/models/item/titanium_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/titanium_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/titanium_ingot.json b/src/main/resources/assets/techreborn/models/item/titanium_ingot.json deleted file mode 100644 index ca7521f86..000000000 --- a/src/main/resources/assets/techreborn/models/item/titanium_ingot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/ingot/titanium_ingot" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/titanium_nugget.json b/src/main/resources/assets/techreborn/models/item/titanium_nugget.json deleted file mode 100644 index 8c3a56259..000000000 --- a/src/main/resources/assets/techreborn/models/item/titanium_nugget.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/nugget/titanium_nugget" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/titanium_plate.json b/src/main/resources/assets/techreborn/models/item/titanium_plate.json deleted file mode 100644 index 84ec7f390..000000000 --- a/src/main/resources/assets/techreborn/models/item/titanium_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/titanium_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/titanium_small_dust.json b/src/main/resources/assets/techreborn/models/item/titanium_small_dust.json deleted file mode 100644 index 41e3fe1c3..000000000 --- a/src/main/resources/assets/techreborn/models/item/titanium_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/titanium_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/titanium_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/titanium_storage_block_slab.json deleted file mode 100644 index 6775f0179..000000000 --- a/src/main/resources/assets/techreborn/models/item/titanium_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/titanium_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/titanium_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/titanium_storage_block_stairs.json deleted file mode 100644 index bc7ec85eb..000000000 --- a/src/main/resources/assets/techreborn/models/item/titanium_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/titanium_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/titanium_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/titanium_storage_block_wall.json deleted file mode 100644 index 8590e7d5b..000000000 --- a/src/main/resources/assets/techreborn/models/item/titanium_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/titanium_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/tungsten_dust.json b/src/main/resources/assets/techreborn/models/item/tungsten_dust.json deleted file mode 100644 index e4efe2911..000000000 --- a/src/main/resources/assets/techreborn/models/item/tungsten_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/tungsten_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/tungsten_ingot.json b/src/main/resources/assets/techreborn/models/item/tungsten_ingot.json deleted file mode 100644 index 570cf85d4..000000000 --- a/src/main/resources/assets/techreborn/models/item/tungsten_ingot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/ingot/tungsten_ingot" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/tungsten_nugget.json b/src/main/resources/assets/techreborn/models/item/tungsten_nugget.json deleted file mode 100644 index ba19e995f..000000000 --- a/src/main/resources/assets/techreborn/models/item/tungsten_nugget.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/nugget/tungsten_nugget" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/tungsten_ore.json b/src/main/resources/assets/techreborn/models/item/tungsten_ore.json deleted file mode 100644 index 77c837fc0..000000000 --- a/src/main/resources/assets/techreborn/models/item/tungsten_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/ore/tungsten_ore" -} diff --git a/src/main/resources/assets/techreborn/models/item/tungsten_plate.json b/src/main/resources/assets/techreborn/models/item/tungsten_plate.json deleted file mode 100644 index 10a5a428d..000000000 --- a/src/main/resources/assets/techreborn/models/item/tungsten_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/tungsten_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/tungsten_small_dust.json b/src/main/resources/assets/techreborn/models/item/tungsten_small_dust.json deleted file mode 100644 index 655f9eb72..000000000 --- a/src/main/resources/assets/techreborn/models/item/tungsten_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/tungsten_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/tungsten_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/tungsten_storage_block_slab.json deleted file mode 100644 index 598f3bdf8..000000000 --- a/src/main/resources/assets/techreborn/models/item/tungsten_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/tungsten_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/tungsten_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/tungsten_storage_block_stairs.json deleted file mode 100644 index 77dec0f73..000000000 --- a/src/main/resources/assets/techreborn/models/item/tungsten_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/tungsten_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/tungsten_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/tungsten_storage_block_wall.json deleted file mode 100644 index 4ba455a9c..000000000 --- a/src/main/resources/assets/techreborn/models/item/tungsten_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/tungsten_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/tungstensteel_ingot.json b/src/main/resources/assets/techreborn/models/item/tungstensteel_ingot.json deleted file mode 100644 index 38a98e71e..000000000 --- a/src/main/resources/assets/techreborn/models/item/tungstensteel_ingot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/ingot/tungstensteel_ingot" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/tungstensteel_nugget.json b/src/main/resources/assets/techreborn/models/item/tungstensteel_nugget.json deleted file mode 100644 index f4accea1f..000000000 --- a/src/main/resources/assets/techreborn/models/item/tungstensteel_nugget.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/nugget/tungstensteel_nugget" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/tungstensteel_plate.json b/src/main/resources/assets/techreborn/models/item/tungstensteel_plate.json deleted file mode 100644 index ab554fafb..000000000 --- a/src/main/resources/assets/techreborn/models/item/tungstensteel_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/tungstensteel_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/tungstensteel_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/tungstensteel_storage_block_slab.json deleted file mode 100644 index 52d43a475..000000000 --- a/src/main/resources/assets/techreborn/models/item/tungstensteel_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/tungstensteel_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/tungstensteel_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/tungstensteel_storage_block_stairs.json deleted file mode 100644 index 154166de7..000000000 --- a/src/main/resources/assets/techreborn/models/item/tungstensteel_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/tungstensteel_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/tungstensteel_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/tungstensteel_storage_block_wall.json deleted file mode 100644 index 0acd78758..000000000 --- a/src/main/resources/assets/techreborn/models/item/tungstensteel_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/tungstensteel_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/uvarovite_dust.json b/src/main/resources/assets/techreborn/models/item/uvarovite_dust.json deleted file mode 100644 index dfee18873..000000000 --- a/src/main/resources/assets/techreborn/models/item/uvarovite_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/uvarovite_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/uvarovite_small_dust.json b/src/main/resources/assets/techreborn/models/item/uvarovite_small_dust.json deleted file mode 100644 index a96c32216..000000000 --- a/src/main/resources/assets/techreborn/models/item/uvarovite_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/uvarovite_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/wood_plate.json b/src/main/resources/assets/techreborn/models/item/wood_plate.json deleted file mode 100644 index 61eb6a533..000000000 --- a/src/main/resources/assets/techreborn/models/item/wood_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/wood_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/yellow_garnet_dust.json b/src/main/resources/assets/techreborn/models/item/yellow_garnet_dust.json deleted file mode 100644 index 95419543d..000000000 --- a/src/main/resources/assets/techreborn/models/item/yellow_garnet_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/yellow_garnet_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/yellow_garnet_plate.json b/src/main/resources/assets/techreborn/models/item/yellow_garnet_plate.json deleted file mode 100644 index 35a9f5cd5..000000000 --- a/src/main/resources/assets/techreborn/models/item/yellow_garnet_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/yellow_garnet_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/yellow_garnet_small_dust.json b/src/main/resources/assets/techreborn/models/item/yellow_garnet_small_dust.json deleted file mode 100644 index f901242b8..000000000 --- a/src/main/resources/assets/techreborn/models/item/yellow_garnet_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/yellow_garnet_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/yellow_garnet_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/yellow_garnet_storage_block_slab.json deleted file mode 100644 index 8dc319eb4..000000000 --- a/src/main/resources/assets/techreborn/models/item/yellow_garnet_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/yellow_garnet_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/yellow_garnet_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/yellow_garnet_storage_block_stairs.json deleted file mode 100644 index a0259f8ba..000000000 --- a/src/main/resources/assets/techreborn/models/item/yellow_garnet_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/yellow_garnet_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/yellow_garnet_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/yellow_garnet_storage_block_wall.json deleted file mode 100644 index ff0300a80..000000000 --- a/src/main/resources/assets/techreborn/models/item/yellow_garnet_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/yellow_garnet_storage_block_wall_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/zinc_dust.json b/src/main/resources/assets/techreborn/models/item/zinc_dust.json deleted file mode 100644 index 32f089c9b..000000000 --- a/src/main/resources/assets/techreborn/models/item/zinc_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/dust/zinc_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/zinc_ingot.json b/src/main/resources/assets/techreborn/models/item/zinc_ingot.json deleted file mode 100644 index 8c9946365..000000000 --- a/src/main/resources/assets/techreborn/models/item/zinc_ingot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/ingot/zinc_ingot" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/zinc_nugget.json b/src/main/resources/assets/techreborn/models/item/zinc_nugget.json deleted file mode 100644 index 265178768..000000000 --- a/src/main/resources/assets/techreborn/models/item/zinc_nugget.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/nugget/zinc_nugget" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/zinc_plate.json b/src/main/resources/assets/techreborn/models/item/zinc_plate.json deleted file mode 100644 index ec8d123e0..000000000 --- a/src/main/resources/assets/techreborn/models/item/zinc_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/plate/zinc_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/zinc_small_dust.json b/src/main/resources/assets/techreborn/models/item/zinc_small_dust.json deleted file mode 100644 index b6298a155..000000000 --- a/src/main/resources/assets/techreborn/models/item/zinc_small_dust.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "techreborn:item/smalldust/zinc_small_dust" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/zinc_storage_block_slab.json b/src/main/resources/assets/techreborn/models/item/zinc_storage_block_slab.json deleted file mode 100644 index 8dcdf9b7d..000000000 --- a/src/main/resources/assets/techreborn/models/item/zinc_storage_block_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/zinc_storage_block_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/zinc_storage_block_stairs.json b/src/main/resources/assets/techreborn/models/item/zinc_storage_block_stairs.json deleted file mode 100644 index d6ba51b4f..000000000 --- a/src/main/resources/assets/techreborn/models/item/zinc_storage_block_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/zinc_storage_block_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/zinc_storage_block_wall.json b/src/main/resources/assets/techreborn/models/item/zinc_storage_block_wall.json deleted file mode 100644 index 990efa49a..000000000 --- a/src/main/resources/assets/techreborn/models/item/zinc_storage_block_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/storage/zinc_storage_block_wall_inventory" -} \ No newline at end of file