diff --git a/src/datagen/groovy/techreborn/datagen/TechRebornDataGen.groovy b/src/datagen/groovy/techreborn/datagen/TechRebornDataGen.groovy index 5ba1068e9..2ae410f4b 100644 --- a/src/datagen/groovy/techreborn/datagen/TechRebornDataGen.groovy +++ b/src/datagen/groovy/techreborn/datagen/TechRebornDataGen.groovy @@ -27,6 +27,7 @@ package techreborn.datagen import net.fabricmc.fabric.api.datagen.v1.DataGeneratorEntrypoint import net.fabricmc.fabric.api.datagen.v1.FabricDataGenerator import techreborn.TechReborn +import techreborn.datagen.models.BlockLootTableProvider import techreborn.datagen.models.ModelProvider import techreborn.datagen.recipes.crafting.CraftingRecipesProvider import techreborn.datagen.recipes.machine.assembling_machine.AssemblingMachineRecipesProvider @@ -65,6 +66,7 @@ class TechRebornDataGen implements DataGeneratorEntrypoint { fabricDataGenerator.addProvider(IndustrialSawmillRecipesProvider.&new) fabricDataGenerator.addProvider(ModelProvider.&new) + fabricDataGenerator.addProvider(BlockLootTableProvider.&new) } @Override diff --git a/src/datagen/groovy/techreborn/datagen/models/BlockLootTableProvider.groovy b/src/datagen/groovy/techreborn/datagen/models/BlockLootTableProvider.groovy new file mode 100644 index 000000000..4aa00e568 --- /dev/null +++ b/src/datagen/groovy/techreborn/datagen/models/BlockLootTableProvider.groovy @@ -0,0 +1,50 @@ +package techreborn.datagen.models + +import net.fabricmc.fabric.api.datagen.v1.FabricDataGenerator +import net.fabricmc.fabric.api.datagen.v1.provider.FabricBlockLootTableProvider +import net.fabricmc.fabric.api.resource.conditions.v1.ConditionJsonProvider +import net.minecraft.data.DataWriter +import net.minecraft.data.server.BlockLootTableGenerator +import net.minecraft.loot.LootTable +import net.minecraft.util.Identifier +import org.jetbrains.annotations.NotNull +import techreborn.init.TRContent + +import java.util.function.BiConsumer +import java.util.function.Consumer + +class BlockLootTableProvider extends FabricBlockLootTableProvider{ + + BlockLootTableProvider(FabricDataGenerator dataGenerator) { + super(dataGenerator) + } + + @Override + protected void generateBlockLootTables() { + TRContent.StorageBlocks.values().each { + addDrop(it.getBlock()) + addDrop(it.getSlabBlock()) + addDrop(it.getStairsBlock()) + addDrop(it.getWallBlock()) + } + TRContent.Cables.values().each { + addDrop(it.block) + } + TRContent.Machine.values().each { + addDrop(it.block) + } + TRContent.SolarPanels.values().each { + addDrop(it.block) + } + TRContent.StorageUnit.values().each { + addDrop(it.block) + } + TRContent.TankUnit.values().each { + addDrop(it.block) + } + TRContent.MachineBlocks.values().each { + addDrop(it.getFrame()) + addDrop(it.getCasing()) + } + } +} diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/adjustable_su.json b/src/main/resources/data/techreborn/loot_tables/blocks/adjustable_su.json deleted file mode 100644 index 29d508918..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/adjustable_su.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:adjustable_su" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/advanced_alloy_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/advanced_alloy_storage_block.json deleted file mode 100644 index 03b6fba8e..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/advanced_alloy_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:advanced_alloy_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/advanced_alloy_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/advanced_alloy_storage_block_slab.json deleted file mode 100644 index 23b6a2ee2..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/advanced_alloy_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:advanced_alloy_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/advanced_alloy_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/advanced_alloy_storage_block_stairs.json deleted file mode 100644 index 2cc0f7324..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/advanced_alloy_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:advanced_alloy_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/advanced_alloy_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/advanced_alloy_storage_block_wall.json deleted file mode 100644 index e1efd61b0..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/advanced_alloy_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:advanced_alloy_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/advanced_machine_casing.json b/src/main/resources/data/techreborn/loot_tables/blocks/advanced_machine_casing.json deleted file mode 100644 index 2f607f3c2..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/advanced_machine_casing.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:advanced_machine_casing" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/advanced_machine_frame.json b/src/main/resources/data/techreborn/loot_tables/blocks/advanced_machine_frame.json deleted file mode 100644 index 9b5d5b960..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/advanced_machine_frame.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:advanced_machine_frame" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/advanced_solar_panel.json b/src/main/resources/data/techreborn/loot_tables/blocks/advanced_solar_panel.json deleted file mode 100644 index 72fb8490e..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/advanced_solar_panel.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:advanced_solar_panel" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/advanced_storage_unit.json b/src/main/resources/data/techreborn/loot_tables/blocks/advanced_storage_unit.json deleted file mode 100644 index 3b37c51d6..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/advanced_storage_unit.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:advanced_storage_unit" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/advanced_tank_unit.json b/src/main/resources/data/techreborn/loot_tables/blocks/advanced_tank_unit.json deleted file mode 100644 index 6fb6ef624..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/advanced_tank_unit.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:advanced_tank_unit" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/alarm.json b/src/main/resources/data/techreborn/loot_tables/blocks/alarm.json deleted file mode 100644 index 0c6c3d487..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/alarm.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:alarm" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/alloy_smelter.json b/src/main/resources/data/techreborn/loot_tables/blocks/alloy_smelter.json deleted file mode 100644 index be68b739d..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/alloy_smelter.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:alloy_smelter" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/aluminum_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/aluminum_storage_block.json deleted file mode 100644 index 7aaabf2eb..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/aluminum_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:aluminum_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/aluminum_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/aluminum_storage_block_slab.json deleted file mode 100644 index 2bdf293ae..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/aluminum_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:aluminum_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/aluminum_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/aluminum_storage_block_stairs.json deleted file mode 100644 index 593bfa141..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/aluminum_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:aluminum_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/aluminum_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/aluminum_storage_block_wall.json deleted file mode 100644 index 2529ef7b0..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/aluminum_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:aluminum_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/assembly_machine.json b/src/main/resources/data/techreborn/loot_tables/blocks/assembly_machine.json deleted file mode 100644 index ecc1c9d55..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/assembly_machine.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:assembly_machine" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/auto_crafting_table.json b/src/main/resources/data/techreborn/loot_tables/blocks/auto_crafting_table.json deleted file mode 100644 index 31600d5e7..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/auto_crafting_table.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:auto_crafting_table" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/basic_machine_casing.json b/src/main/resources/data/techreborn/loot_tables/blocks/basic_machine_casing.json deleted file mode 100644 index eada8b8fa..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/basic_machine_casing.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:basic_machine_casing" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/basic_machine_frame.json b/src/main/resources/data/techreborn/loot_tables/blocks/basic_machine_frame.json deleted file mode 100644 index 4640244c6..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/basic_machine_frame.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:basic_machine_frame" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/basic_solar_panel.json b/src/main/resources/data/techreborn/loot_tables/blocks/basic_solar_panel.json deleted file mode 100644 index 8d7e51932..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/basic_solar_panel.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:basic_solar_panel" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/basic_storage_unit.json b/src/main/resources/data/techreborn/loot_tables/blocks/basic_storage_unit.json deleted file mode 100644 index 2109e24a5..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/basic_storage_unit.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:basic_storage_unit" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/basic_tank_unit.json b/src/main/resources/data/techreborn/loot_tables/blocks/basic_tank_unit.json deleted file mode 100644 index dc8b0757d..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/basic_tank_unit.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:basic_tank_unit" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/block_breaker.json b/src/main/resources/data/techreborn/loot_tables/blocks/block_breaker.json deleted file mode 100644 index 1392c4208..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/block_breaker.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:block_breaker" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/block_placer.json b/src/main/resources/data/techreborn/loot_tables/blocks/block_placer.json deleted file mode 100644 index 81f0c72af..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/block_placer.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:block_placer" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/brass_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/brass_storage_block.json deleted file mode 100644 index 10d9ff6f7..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/brass_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:brass_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/brass_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/brass_storage_block_slab.json deleted file mode 100644 index fe6d7a575..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/brass_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:brass_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/brass_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/brass_storage_block_stairs.json deleted file mode 100644 index 48f17be17..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/brass_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:brass_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/brass_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/brass_storage_block_wall.json deleted file mode 100644 index 286031b16..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/brass_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:brass_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/bronze_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/bronze_storage_block.json deleted file mode 100644 index 846f3d26d..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/bronze_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:bronze_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/bronze_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/bronze_storage_block_slab.json deleted file mode 100644 index c42ea8de0..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/bronze_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:bronze_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/bronze_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/bronze_storage_block_stairs.json deleted file mode 100644 index 9170a3a5e..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/bronze_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:bronze_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/bronze_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/bronze_storage_block_wall.json deleted file mode 100644 index 0e182353d..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/bronze_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:bronze_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/charge_o_mat.json b/src/main/resources/data/techreborn/loot_tables/blocks/charge_o_mat.json deleted file mode 100644 index 083682bcc..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/charge_o_mat.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:charge_o_mat" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/chemical_reactor.json b/src/main/resources/data/techreborn/loot_tables/blocks/chemical_reactor.json deleted file mode 100644 index 8e3ecba8a..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/chemical_reactor.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:chemical_reactor" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/chrome_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/chrome_storage_block.json deleted file mode 100644 index 7e0cc81df..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/chrome_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:chrome_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/chrome_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/chrome_storage_block_slab.json deleted file mode 100644 index 87b7cfbb3..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/chrome_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:chrome_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/chrome_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/chrome_storage_block_stairs.json deleted file mode 100644 index 9915599d4..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/chrome_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:chrome_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/chrome_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/chrome_storage_block_wall.json deleted file mode 100644 index 2ac49e466..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/chrome_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:chrome_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/chunk_loader.json b/src/main/resources/data/techreborn/loot_tables/blocks/chunk_loader.json deleted file mode 100644 index bc9932486..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/chunk_loader.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:chunk_loader" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/compressor.json b/src/main/resources/data/techreborn/loot_tables/blocks/compressor.json deleted file mode 100644 index 310e200dc..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/compressor.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:compressor" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/computer_cube.json b/src/main/resources/data/techreborn/loot_tables/blocks/computer_cube.json deleted file mode 100644 index 0dec8e5f1..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/computer_cube.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:computer_cube" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/copper_cable.json b/src/main/resources/data/techreborn/loot_tables/blocks/copper_cable.json deleted file mode 100644 index 2cfe4a2c0..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/copper_cable.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:copper_cable" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/creative_solar_panel.json b/src/main/resources/data/techreborn/loot_tables/blocks/creative_solar_panel.json deleted file mode 100644 index cd993afe3..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/creative_solar_panel.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:creative_solar_panel" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/creative_storage_unit.json b/src/main/resources/data/techreborn/loot_tables/blocks/creative_storage_unit.json deleted file mode 100644 index b8bc01c4c..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/creative_storage_unit.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:creative_storage_unit" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/creative_tank_unit.json b/src/main/resources/data/techreborn/loot_tables/blocks/creative_tank_unit.json deleted file mode 100644 index 14e59958f..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/creative_tank_unit.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:creative_tank_unit" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/crude_storage_unit.json b/src/main/resources/data/techreborn/loot_tables/blocks/crude_storage_unit.json deleted file mode 100644 index 299e6b830..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/crude_storage_unit.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:crude_storage_unit" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/diesel_generator.json b/src/main/resources/data/techreborn/loot_tables/blocks/diesel_generator.json deleted file mode 100644 index e54d7882e..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/diesel_generator.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:diesel_generator" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/distillation_tower.json b/src/main/resources/data/techreborn/loot_tables/blocks/distillation_tower.json deleted file mode 100644 index 7036c0f94..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/distillation_tower.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:distillation_tower" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/dragon_egg_syphon.json b/src/main/resources/data/techreborn/loot_tables/blocks/dragon_egg_syphon.json deleted file mode 100644 index c1d09bf32..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/dragon_egg_syphon.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:dragon_egg_syphon" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/drain.json b/src/main/resources/data/techreborn/loot_tables/blocks/drain.json deleted file mode 100644 index 31b24e32c..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/drain.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:drain" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/electric_furnace.json b/src/main/resources/data/techreborn/loot_tables/blocks/electric_furnace.json deleted file mode 100644 index 41878b62d..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/electric_furnace.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:electric_furnace" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/electrum_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/electrum_storage_block.json deleted file mode 100644 index c27f727c6..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/electrum_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:electrum_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/electrum_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/electrum_storage_block_slab.json deleted file mode 100644 index 6207b8124..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/electrum_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:electrum_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/electrum_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/electrum_storage_block_stairs.json deleted file mode 100644 index 6c2ea8e7e..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/electrum_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:electrum_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/electrum_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/electrum_storage_block_wall.json deleted file mode 100644 index be8263dd1..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/electrum_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:electrum_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/extractor.json b/src/main/resources/data/techreborn/loot_tables/blocks/extractor.json deleted file mode 100644 index f8c6a443d..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/extractor.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:extractor" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/fluid_replicator.json b/src/main/resources/data/techreborn/loot_tables/blocks/fluid_replicator.json deleted file mode 100644 index 850ed0ae5..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/fluid_replicator.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:fluid_replicator" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/fusion_coil.json b/src/main/resources/data/techreborn/loot_tables/blocks/fusion_coil.json deleted file mode 100644 index 69abc081d..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/fusion_coil.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:fusion_coil" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/fusion_control_computer.json b/src/main/resources/data/techreborn/loot_tables/blocks/fusion_control_computer.json deleted file mode 100644 index 23a7c2141..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/fusion_control_computer.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:fusion_control_computer" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/gas_turbine.json b/src/main/resources/data/techreborn/loot_tables/blocks/gas_turbine.json deleted file mode 100644 index c218573ae..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/gas_turbine.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:gas_turbine" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/glassfiber_cable.json b/src/main/resources/data/techreborn/loot_tables/blocks/glassfiber_cable.json deleted file mode 100644 index 05ebfd75d..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/glassfiber_cable.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:glassfiber_cable" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/gold_cable.json b/src/main/resources/data/techreborn/loot_tables/blocks/gold_cable.json deleted file mode 100644 index 5e2f580aa..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/gold_cable.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:gold_cable" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/greenhouse_controller.json b/src/main/resources/data/techreborn/loot_tables/blocks/greenhouse_controller.json deleted file mode 100644 index 54aedb2c2..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/greenhouse_controller.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:greenhouse_controller" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/grinder.json b/src/main/resources/data/techreborn/loot_tables/blocks/grinder.json deleted file mode 100644 index 3fdec1a3d..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/grinder.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:grinder" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/high_voltage_su.json b/src/main/resources/data/techreborn/loot_tables/blocks/high_voltage_su.json deleted file mode 100644 index bec93d66d..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/high_voltage_su.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:high_voltage_su" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/hot_tungstensteel_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/hot_tungstensteel_storage_block.json deleted file mode 100644 index 16c039e93..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/hot_tungstensteel_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:hot_tungstensteel_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/hot_tungstensteel_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/hot_tungstensteel_storage_block_slab.json deleted file mode 100644 index 0756ec453..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/hot_tungstensteel_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:hot_tungstensteel_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/hot_tungstensteel_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/hot_tungstensteel_storage_block_stairs.json deleted file mode 100644 index 593bfa141..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/hot_tungstensteel_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:aluminum_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/hot_tungstensteel_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/hot_tungstensteel_storage_block_wall.json deleted file mode 100644 index 2529ef7b0..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/hot_tungstensteel_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:aluminum_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/hv_cable.json b/src/main/resources/data/techreborn/loot_tables/blocks/hv_cable.json deleted file mode 100644 index 07d28f6e5..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/hv_cable.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:hv_cable" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/hv_transformer.json b/src/main/resources/data/techreborn/loot_tables/blocks/hv_transformer.json deleted file mode 100644 index e42afc320..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/hv_transformer.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:hv_transformer" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/implosion_compressor.json b/src/main/resources/data/techreborn/loot_tables/blocks/implosion_compressor.json deleted file mode 100644 index b05941654..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/implosion_compressor.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:implosion_compressor" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/industrial_blast_furnace.json b/src/main/resources/data/techreborn/loot_tables/blocks/industrial_blast_furnace.json deleted file mode 100644 index 1bb5afa82..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/industrial_blast_furnace.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:industrial_blast_furnace" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/industrial_centrifuge.json b/src/main/resources/data/techreborn/loot_tables/blocks/industrial_centrifuge.json deleted file mode 100644 index 362979f5d..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/industrial_centrifuge.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:industrial_centrifuge" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/industrial_electrolyzer.json b/src/main/resources/data/techreborn/loot_tables/blocks/industrial_electrolyzer.json deleted file mode 100644 index 7bdfe26c3..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/industrial_electrolyzer.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:industrial_electrolyzer" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/industrial_grinder.json b/src/main/resources/data/techreborn/loot_tables/blocks/industrial_grinder.json deleted file mode 100644 index 9dc55c864..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/industrial_grinder.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:industrial_grinder" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/industrial_machine_casing.json b/src/main/resources/data/techreborn/loot_tables/blocks/industrial_machine_casing.json deleted file mode 100644 index 78266bf30..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/industrial_machine_casing.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:industrial_machine_casing" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/industrial_machine_frame.json b/src/main/resources/data/techreborn/loot_tables/blocks/industrial_machine_frame.json deleted file mode 100644 index 0f2785373..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/industrial_machine_frame.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:industrial_machine_frame" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/industrial_sawmill.json b/src/main/resources/data/techreborn/loot_tables/blocks/industrial_sawmill.json deleted file mode 100644 index fa1f8a20d..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/industrial_sawmill.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:industrial_sawmill" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/industrial_solar_panel.json b/src/main/resources/data/techreborn/loot_tables/blocks/industrial_solar_panel.json deleted file mode 100644 index ec05c8d6b..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/industrial_solar_panel.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:industrial_solar_panel" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/industrial_storage_unit.json b/src/main/resources/data/techreborn/loot_tables/blocks/industrial_storage_unit.json deleted file mode 100644 index 2c7e731f0..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/industrial_storage_unit.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:industrial_storage_unit" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/industrial_tank_unit.json b/src/main/resources/data/techreborn/loot_tables/blocks/industrial_tank_unit.json deleted file mode 100644 index a8d8bfb74..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/industrial_tank_unit.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:industrial_tank_unit" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/insulated_copper_cable.json b/src/main/resources/data/techreborn/loot_tables/blocks/insulated_copper_cable.json deleted file mode 100644 index 2b9b94882..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/insulated_copper_cable.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:insulated_copper_cable" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/insulated_gold_cable.json b/src/main/resources/data/techreborn/loot_tables/blocks/insulated_gold_cable.json deleted file mode 100644 index ff8db2c96..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/insulated_gold_cable.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:insulated_gold_cable" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/insulated_hv_cable.json b/src/main/resources/data/techreborn/loot_tables/blocks/insulated_hv_cable.json deleted file mode 100644 index 93fd4d9b9..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/insulated_hv_cable.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:insulated_hv_cable" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/interdimensional_su.json b/src/main/resources/data/techreborn/loot_tables/blocks/interdimensional_su.json deleted file mode 100644 index 089963ca8..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/interdimensional_su.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:interdimensional_su" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/invar_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/invar_storage_block.json deleted file mode 100644 index e7c5cc06a..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/invar_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:invar_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/invar_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/invar_storage_block_slab.json deleted file mode 100644 index da162c8ed..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/invar_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:invar_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/invar_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/invar_storage_block_stairs.json deleted file mode 100644 index 06258e93c..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/invar_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:invar_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/invar_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/invar_storage_block_wall.json deleted file mode 100644 index d0864c893..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/invar_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:invar_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/iridium_reinforced_stone_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/iridium_reinforced_stone_storage_block.json deleted file mode 100644 index 34ee83fec..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/iridium_reinforced_stone_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:iridium_reinforced_stone_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/iridium_reinforced_stone_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/iridium_reinforced_stone_storage_block_slab.json deleted file mode 100644 index a40985b6d..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/iridium_reinforced_stone_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:iridium_reinforced_stone_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/iridium_reinforced_stone_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/iridium_reinforced_stone_storage_block_stairs.json deleted file mode 100644 index c5c26beb6..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/iridium_reinforced_stone_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:iridium_reinforced_stone_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/iridium_reinforced_stone_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/iridium_reinforced_stone_storage_block_wall.json deleted file mode 100644 index 8e6829fa3..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/iridium_reinforced_stone_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:iridium_reinforced_stone_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/iridium_reinforced_tungstensteel_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/iridium_reinforced_tungstensteel_storage_block.json deleted file mode 100644 index 9cccebbc1..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/iridium_reinforced_tungstensteel_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:iridium_reinforced_tungstensteel_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/iridium_reinforced_tungstensteel_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/iridium_reinforced_tungstensteel_storage_block_slab.json deleted file mode 100644 index 89cb93dd6..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/iridium_reinforced_tungstensteel_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:iridium_reinforced_tungstensteel_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/iridium_reinforced_tungstensteel_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/iridium_reinforced_tungstensteel_storage_block_stairs.json deleted file mode 100644 index d83d44503..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/iridium_reinforced_tungstensteel_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:iridium_reinforced_tungstensteel_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/iridium_reinforced_tungstensteel_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/iridium_reinforced_tungstensteel_storage_block_wall.json deleted file mode 100644 index da67fe412..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/iridium_reinforced_tungstensteel_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:iridium_reinforced_tungstensteel_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/iridium_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/iridium_storage_block.json deleted file mode 100644 index 87822fa07..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/iridium_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:iridium_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/iridium_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/iridium_storage_block_slab.json deleted file mode 100644 index f6ebe6937..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/iridium_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:iridium_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/iridium_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/iridium_storage_block_stairs.json deleted file mode 100644 index 1c40e591e..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/iridium_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:iridium_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/iridium_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/iridium_storage_block_wall.json deleted file mode 100644 index 840c87dfe..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/iridium_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:iridium_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/iron_alloy_furnace.json b/src/main/resources/data/techreborn/loot_tables/blocks/iron_alloy_furnace.json deleted file mode 100644 index b06c1722e..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/iron_alloy_furnace.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:iron_alloy_furnace" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/iron_furnace.json b/src/main/resources/data/techreborn/loot_tables/blocks/iron_furnace.json deleted file mode 100644 index c87c5782c..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/iron_furnace.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:iron_furnace" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/lamp_incandescent.json b/src/main/resources/data/techreborn/loot_tables/blocks/lamp_incandescent.json deleted file mode 100644 index e9457a6a2..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/lamp_incandescent.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:lamp_incandescent" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/lamp_led.json b/src/main/resources/data/techreborn/loot_tables/blocks/lamp_led.json deleted file mode 100644 index 8c0c80ec8..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/lamp_led.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:lamp_led" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/lapotronic_su.json b/src/main/resources/data/techreborn/loot_tables/blocks/lapotronic_su.json deleted file mode 100644 index b30595ef3..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/lapotronic_su.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:lapotronic_su" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/lead_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/lead_storage_block.json deleted file mode 100644 index 137a75b7c..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/lead_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:lead_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/lead_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/lead_storage_block_slab.json deleted file mode 100644 index 321d1afad..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/lead_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:lead_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/lead_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/lead_storage_block_stairs.json deleted file mode 100644 index c193ca434..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/lead_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:lead_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/lead_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/lead_storage_block_wall.json deleted file mode 100644 index c68f4cda7..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/lead_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:lead_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/lightning_rod.json b/src/main/resources/data/techreborn/loot_tables/blocks/lightning_rod.json deleted file mode 100644 index cbf394ed3..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/lightning_rod.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:lightning_rod" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/low_voltage_su.json b/src/main/resources/data/techreborn/loot_tables/blocks/low_voltage_su.json deleted file mode 100644 index db6fb95e9..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/low_voltage_su.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:low_voltage_su" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/lsu_storage.json b/src/main/resources/data/techreborn/loot_tables/blocks/lsu_storage.json deleted file mode 100644 index 23dd2c4b2..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/lsu_storage.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:lsu_storage" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/lv_transformer.json b/src/main/resources/data/techreborn/loot_tables/blocks/lv_transformer.json deleted file mode 100644 index 4c3d3d3c3..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/lv_transformer.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:lv_transformer" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/matter_fabricator.json b/src/main/resources/data/techreborn/loot_tables/blocks/matter_fabricator.json deleted file mode 100644 index 91ebf5962..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/matter_fabricator.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:matter_fabricator" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/medium_voltage_su.json b/src/main/resources/data/techreborn/loot_tables/blocks/medium_voltage_su.json deleted file mode 100644 index 0916bec26..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/medium_voltage_su.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:medium_voltage_su" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/mv_transformer.json b/src/main/resources/data/techreborn/loot_tables/blocks/mv_transformer.json deleted file mode 100644 index 5d835bdae..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/mv_transformer.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:mv_transformer" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/nickel_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/nickel_storage_block.json deleted file mode 100644 index fd7e3ae7f..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/nickel_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:nickel_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/nickel_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/nickel_storage_block_slab.json deleted file mode 100644 index 06adade9e..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/nickel_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:nickel_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/nickel_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/nickel_storage_block_stairs.json deleted file mode 100644 index 3114d500a..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/nickel_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:nickel_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/nickel_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/nickel_storage_block_wall.json deleted file mode 100644 index 4389f17d2..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/nickel_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:nickel_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/peridot_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/peridot_storage_block.json deleted file mode 100644 index 7036bc024..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/peridot_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:peridot_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/peridot_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/peridot_storage_block_slab.json deleted file mode 100644 index 1c495b8c2..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/peridot_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:peridot_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/peridot_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/peridot_storage_block_stairs.json deleted file mode 100644 index 3487033ac..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/peridot_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:peridot_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/peridot_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/peridot_storage_block_wall.json deleted file mode 100644 index 557226735..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/peridot_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:peridot_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/plasma_generator.json b/src/main/resources/data/techreborn/loot_tables/blocks/plasma_generator.json deleted file mode 100644 index debcccac7..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/plasma_generator.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:plasma_generator" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/platinum_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/platinum_storage_block.json deleted file mode 100644 index f1247ba71..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/platinum_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:platinum_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/platinum_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/platinum_storage_block_slab.json deleted file mode 100644 index 62e646613..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/platinum_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:platinum_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/platinum_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/platinum_storage_block_stairs.json deleted file mode 100644 index 5a69f08b0..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/platinum_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:platinum_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/platinum_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/platinum_storage_block_wall.json deleted file mode 100644 index 6311bd4c3..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/platinum_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:platinum_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/player_detector.json b/src/main/resources/data/techreborn/loot_tables/blocks/player_detector.json deleted file mode 100644 index cf578ecbc..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/player_detector.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:player_detector" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/quantum_solar_panel.json b/src/main/resources/data/techreborn/loot_tables/blocks/quantum_solar_panel.json deleted file mode 100644 index 1d65e708d..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/quantum_solar_panel.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:quantum_solar_panel" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/quantum_storage_unit.json b/src/main/resources/data/techreborn/loot_tables/blocks/quantum_storage_unit.json deleted file mode 100644 index 3898316c2..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/quantum_storage_unit.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:quantum_storage_unit" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/quantum_tank_unit.json b/src/main/resources/data/techreborn/loot_tables/blocks/quantum_tank_unit.json deleted file mode 100644 index 87930166d..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/quantum_tank_unit.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:quantum_tank_unit" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/raw_iridium_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/raw_iridium_storage_block.json deleted file mode 100644 index 89c50e243..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/raw_iridium_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:raw_iridium_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/raw_iridium_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/raw_iridium_storage_block_slab.json deleted file mode 100644 index 28691caf9..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/raw_iridium_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:raw_iridium_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/raw_iridium_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/raw_iridium_storage_block_stairs.json deleted file mode 100644 index 0071a3f87..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/raw_iridium_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:raw_iridium_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/raw_iridium_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/raw_iridium_storage_block_wall.json deleted file mode 100644 index 56a2eb37e..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/raw_iridium_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:raw_iridium_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/raw_lead_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/raw_lead_storage_block.json deleted file mode 100644 index 04764af11..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/raw_lead_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:raw_lead_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/raw_lead_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/raw_lead_storage_block_slab.json deleted file mode 100644 index 791a02fe6..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/raw_lead_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:raw_lead_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/raw_lead_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/raw_lead_storage_block_stairs.json deleted file mode 100644 index 114029022..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/raw_lead_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:raw_lead_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/raw_lead_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/raw_lead_storage_block_wall.json deleted file mode 100644 index ee11b78c1..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/raw_lead_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:raw_lead_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/raw_silver_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/raw_silver_storage_block.json deleted file mode 100644 index 072e0a4bb..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/raw_silver_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:raw_silver_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/raw_silver_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/raw_silver_storage_block_slab.json deleted file mode 100644 index 9dce24264..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/raw_silver_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:raw_silver_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/raw_silver_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/raw_silver_storage_block_stairs.json deleted file mode 100644 index 74ce84771..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/raw_silver_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:raw_silver_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/raw_silver_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/raw_silver_storage_block_wall.json deleted file mode 100644 index 42591049a..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/raw_silver_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:raw_silver_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/raw_tin_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/raw_tin_storage_block.json deleted file mode 100644 index 7027bafe4..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/raw_tin_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:raw_tin_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/raw_tin_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/raw_tin_storage_block_slab.json deleted file mode 100644 index 63f74416f..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/raw_tin_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:raw_tin_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/raw_tin_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/raw_tin_storage_block_stairs.json deleted file mode 100644 index 83b35154d..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/raw_tin_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:raw_tin_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/raw_tin_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/raw_tin_storage_block_wall.json deleted file mode 100644 index 12f800847..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/raw_tin_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:raw_tin_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/raw_tungsten_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/raw_tungsten_storage_block.json deleted file mode 100644 index 0f1c2f005..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/raw_tungsten_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:raw_tungsten_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/raw_tungsten_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/raw_tungsten_storage_block_slab.json deleted file mode 100644 index 6182a083d..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/raw_tungsten_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:raw_tungsten_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/raw_tungsten_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/raw_tungsten_storage_block_stairs.json deleted file mode 100644 index e2b5c788e..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/raw_tungsten_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:raw_tungsten_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/raw_tungsten_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/raw_tungsten_storage_block_wall.json deleted file mode 100644 index ac1d1b1b1..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/raw_tungsten_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:raw_tungsten_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/recycler.json b/src/main/resources/data/techreborn/loot_tables/blocks/recycler.json deleted file mode 100644 index d1da8b37f..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/recycler.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:recycler" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/red_garnet_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/red_garnet_storage_block.json deleted file mode 100644 index ef659adb6..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/red_garnet_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:red_garnet_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/red_garnet_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/red_garnet_storage_block_slab.json deleted file mode 100644 index 5f8abf9b7..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/red_garnet_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:red_garnet_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/red_garnet_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/red_garnet_storage_block_stairs.json deleted file mode 100644 index a1bc03679..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/red_garnet_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:red_garnet_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/red_garnet_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/red_garnet_storage_block_wall.json deleted file mode 100644 index 493fd098a..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/red_garnet_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:red_garnet_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/refined_iron_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/refined_iron_storage_block.json deleted file mode 100644 index 23600bb27..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/refined_iron_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:refined_iron_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/refined_iron_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/refined_iron_storage_block_slab.json deleted file mode 100644 index a2f70df3f..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/refined_iron_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:refined_iron_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/refined_iron_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/refined_iron_storage_block_stairs.json deleted file mode 100644 index 4e08f9267..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/refined_iron_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:refined_iron_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/refined_iron_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/refined_iron_storage_block_wall.json deleted file mode 100644 index 459b6e638..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/refined_iron_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:refined_iron_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/resin_basin.json b/src/main/resources/data/techreborn/loot_tables/blocks/resin_basin.json deleted file mode 100644 index 33f41903b..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/resin_basin.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:resin_basin" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/rolling_machine.json b/src/main/resources/data/techreborn/loot_tables/blocks/rolling_machine.json deleted file mode 100644 index ed42f7a39..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/rolling_machine.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:rolling_machine" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/ruby_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/ruby_storage_block.json deleted file mode 100644 index e2ca60eab..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/ruby_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:ruby_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/ruby_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/ruby_storage_block_slab.json deleted file mode 100644 index 994659f83..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/ruby_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:ruby_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/ruby_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/ruby_storage_block_stairs.json deleted file mode 100644 index 83ae8a43e..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/ruby_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:ruby_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/ruby_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/ruby_storage_block_wall.json deleted file mode 100644 index a1e003105..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/ruby_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:ruby_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/sapphire_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/sapphire_storage_block.json deleted file mode 100644 index bdf10d212..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/sapphire_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:sapphire_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/sapphire_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/sapphire_storage_block_slab.json deleted file mode 100644 index 7aae4c5e4..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/sapphire_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:sapphire_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/sapphire_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/sapphire_storage_block_stairs.json deleted file mode 100644 index 44b0f69d3..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/sapphire_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:sapphire_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/sapphire_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/sapphire_storage_block_wall.json deleted file mode 100644 index ef4290703..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/sapphire_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:sapphire_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/scrapboxinator.json b/src/main/resources/data/techreborn/loot_tables/blocks/scrapboxinator.json deleted file mode 100644 index d208b08db..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/scrapboxinator.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:scrapboxinator" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/semi_fluid_generator.json b/src/main/resources/data/techreborn/loot_tables/blocks/semi_fluid_generator.json deleted file mode 100644 index 910bfea70..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/semi_fluid_generator.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:semi_fluid_generator" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/silver_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/silver_storage_block.json deleted file mode 100644 index aa0c2b367..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/silver_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:silver_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/silver_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/silver_storage_block_slab.json deleted file mode 100644 index 6a26efa1b..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/silver_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:silver_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/silver_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/silver_storage_block_stairs.json deleted file mode 100644 index 73f546abb..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/silver_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:silver_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/silver_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/silver_storage_block_wall.json deleted file mode 100644 index e982ba3b4..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/silver_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:silver_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/solid_canning_machine.json b/src/main/resources/data/techreborn/loot_tables/blocks/solid_canning_machine.json deleted file mode 100644 index 3cf488345..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/solid_canning_machine.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:solid_canning_machine" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/solid_fuel_generator.json b/src/main/resources/data/techreborn/loot_tables/blocks/solid_fuel_generator.json deleted file mode 100644 index c1079b065..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/solid_fuel_generator.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:solid_fuel_generator" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/steel_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/steel_storage_block.json deleted file mode 100644 index 3c03254ba..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/steel_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:steel_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/steel_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/steel_storage_block_slab.json deleted file mode 100644 index 491a69611..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/steel_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:steel_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/steel_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/steel_storage_block_stairs.json deleted file mode 100644 index 0de814f95..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/steel_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:steel_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/steel_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/steel_storage_block_wall.json deleted file mode 100644 index 4dcc5293f..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/steel_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:steel_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/storage_buffer.json b/src/main/resources/data/techreborn/loot_tables/blocks/storage_buffer.json deleted file mode 100644 index 81a908f85..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/storage_buffer.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:storage_buffer" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/superconductor_cable.json b/src/main/resources/data/techreborn/loot_tables/blocks/superconductor_cable.json deleted file mode 100644 index 326cbe49c..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/superconductor_cable.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:superconductor_cable" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/thermal_generator.json b/src/main/resources/data/techreborn/loot_tables/blocks/thermal_generator.json deleted file mode 100644 index be2dc9582..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/thermal_generator.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:thermal_generator" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/tin_cable.json b/src/main/resources/data/techreborn/loot_tables/blocks/tin_cable.json deleted file mode 100644 index bc19a911f..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/tin_cable.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:tin_cable" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/tin_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/tin_storage_block.json deleted file mode 100644 index 8ab65834e..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/tin_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:tin_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/tin_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/tin_storage_block_slab.json deleted file mode 100644 index 339db5d04..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/tin_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:tin_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/tin_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/tin_storage_block_stairs.json deleted file mode 100644 index 6f1eb525c..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/tin_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:tin_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/tin_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/tin_storage_block_wall.json deleted file mode 100644 index 7d28c3da6..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/tin_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:tin_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/titanium_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/titanium_storage_block.json deleted file mode 100644 index ec8516a2b..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/titanium_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:titanium_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/titanium_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/titanium_storage_block_slab.json deleted file mode 100644 index ccca350bb..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/titanium_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:titanium_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/titanium_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/titanium_storage_block_stairs.json deleted file mode 100644 index 4578e36a8..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/titanium_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:titanium_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/titanium_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/titanium_storage_block_wall.json deleted file mode 100644 index 7b02a1e60..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/titanium_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:titanium_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/tungsten_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/tungsten_storage_block.json deleted file mode 100644 index 7a2121389..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/tungsten_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:tungsten_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/tungsten_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/tungsten_storage_block_slab.json deleted file mode 100644 index 3779d4d41..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/tungsten_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:tungsten_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/tungsten_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/tungsten_storage_block_stairs.json deleted file mode 100644 index 326df4ebd..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/tungsten_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:tungsten_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/tungsten_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/tungsten_storage_block_wall.json deleted file mode 100644 index a2466fd66..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/tungsten_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:tungsten_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/tungstensteel_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/tungstensteel_storage_block.json deleted file mode 100644 index 4665f58df..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/tungstensteel_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:tungstensteel_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/tungstensteel_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/tungstensteel_storage_block_slab.json deleted file mode 100644 index bee81143d..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/tungstensteel_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:tungstensteel_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/tungstensteel_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/tungstensteel_storage_block_stairs.json deleted file mode 100644 index 77086a555..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/tungstensteel_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:tungstensteel_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/tungstensteel_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/tungstensteel_storage_block_wall.json deleted file mode 100644 index a434b2187..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/tungstensteel_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:tungstensteel_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/ultimate_solar_panel.json b/src/main/resources/data/techreborn/loot_tables/blocks/ultimate_solar_panel.json deleted file mode 100644 index df1e88323..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/ultimate_solar_panel.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:ultimate_solar_panel" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/vacuum_freezer.json b/src/main/resources/data/techreborn/loot_tables/blocks/vacuum_freezer.json deleted file mode 100644 index 025f2d5b4..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/vacuum_freezer.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:vacuum_freezer" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/water_mill.json b/src/main/resources/data/techreborn/loot_tables/blocks/water_mill.json deleted file mode 100644 index 8428d71e3..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/water_mill.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:water_mill" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/wind_mill.json b/src/main/resources/data/techreborn/loot_tables/blocks/wind_mill.json deleted file mode 100644 index 7fba9ed8e..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/wind_mill.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:wind_mill" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/wire_mill.json b/src/main/resources/data/techreborn/loot_tables/blocks/wire_mill.json deleted file mode 100644 index cf2797273..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/wire_mill.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:wire_mill" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/yellow_garnet_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/yellow_garnet_storage_block.json deleted file mode 100644 index c5ec720d3..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/yellow_garnet_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:yellow_garnet_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/yellow_garnet_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/yellow_garnet_storage_block_slab.json deleted file mode 100644 index 1bbc886bf..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/yellow_garnet_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:yellow_garnet_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/yellow_garnet_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/yellow_garnet_storage_block_stairs.json deleted file mode 100644 index 61b0cd3ab..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/yellow_garnet_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:yellow_garnet_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/yellow_garnet_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/yellow_garnet_storage_block_wall.json deleted file mode 100644 index 5e2457c33..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/yellow_garnet_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:yellow_garnet_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/zinc_storage_block.json b/src/main/resources/data/techreborn/loot_tables/blocks/zinc_storage_block.json deleted file mode 100644 index 73a4c7c9e..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/zinc_storage_block.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:zinc_storage_block" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/zinc_storage_block_slab.json b/src/main/resources/data/techreborn/loot_tables/blocks/zinc_storage_block_slab.json deleted file mode 100644 index da80f53b2..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/zinc_storage_block_slab.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:zinc_storage_block_slab" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/zinc_storage_block_stairs.json b/src/main/resources/data/techreborn/loot_tables/blocks/zinc_storage_block_stairs.json deleted file mode 100644 index 07d64cb18..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/zinc_storage_block_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:zinc_storage_block_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/zinc_storage_block_wall.json b/src/main/resources/data/techreborn/loot_tables/blocks/zinc_storage_block_wall.json deleted file mode 100644 index 7a1fa39e5..000000000 --- a/src/main/resources/data/techreborn/loot_tables/blocks/zinc_storage_block_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:zinc_storage_block_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file