diff --git a/build.gradle b/build.gradle index 69ce03a1..45f99359 100644 --- a/build.gradle +++ b/build.gradle @@ -13,20 +13,21 @@ apply plugin: 'net.minecraftforge.gradle' apply plugin: 'eclipse' apply plugin: 'maven-publish' -version = '1.15.2-1.2.0' +version = '1.16.4-1.3.0' group = 'com.quizer9o8.strata' // http://maven.apache.org/guides/mini/guide-naming-conventions.html archivesBaseName = 'strata' sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8' // Need this here so eclipse task generates correctly. +println('Java: ' + System.getProperty('java.version') + ' JVM: ' + System.getProperty('java.vm.version') + '(' + System.getProperty('java.vendor') + ') Arch: ' + System.getProperty('os.arch')) minecraft { // The mappings can be changed at any time, and must be in the following format. // snapshot_YYYYMMDD Snapshot are built nightly. // stable_# Stables are built at the discretion of the MCP team. // Use non-default mappings at your own risk. they may not always work. // Simply re-run your setup task after changing the mappings to update your workspace. - mappings channel: 'snapshot', version: '20201228-1.15.1' + mappings channel: 'snapshot', version: '20201028-1.16.3' // makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable. // accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') @@ -75,7 +76,8 @@ minecraft { // Recommended logging level for the console property 'forge.logging.console.level', 'debug' - args '--mod', 'examplemod', '--all', '--output', file('src/generated/resources/') +// Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources. + args '--mod', 'examplemod', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/') mods { examplemod { @@ -90,7 +92,7 @@ dependencies { // Specify the version of Minecraft to use, If this is any group other then 'net.minecraft' it is assumed // that the dep is a ForgeGradle 'patcher' dependency. And it's patches will be applied. // The userdev artifact is a special name and will get all sorts of transformations applied to it. - minecraft 'net.minecraftforge:forge:1.15.2-31.2.0' + minecraft 'net.minecraftforge:forge:1.16.4-35.1.37' // You may put jars on which you depend on in ./libs or you may define them like so.. // compile "some.group:artifact:version:classifier" @@ -141,7 +143,7 @@ publishing { } repositories { maven { - url "https://example.com/" + url "file:///${project.projectDir}/mcmodsrepo" } } } \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index 878bf1f7..5b983618 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,5 @@ # Sets default memory used for gradle commands. Can be overridden by user or command line properties. # This is required to provide enough memory for the Minecraft decompilation process. org.gradle.jvmargs=-Xmx3G -org.gradle.daemon=false \ No newline at end of file +org.gradle.daemon=false +JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64 ./gradlew \ No newline at end of file diff --git a/src/main/java/com/quizer9o8/strata/Strata.java b/src/main/java/com/quizer9o8/strata/Strata.java index eb2ac23a..c431370b 100644 --- a/src/main/java/com/quizer9o8/strata/Strata.java +++ b/src/main/java/com/quizer9o8/strata/Strata.java @@ -2,7 +2,6 @@ import com.quizer9o8.strata.list.BlockList; import com.quizer9o8.strata.list.ItemList; -import com.quizer9o8.strata.world.gen.StrataGeneration; import net.minecraft.item.ItemGroup; import net.minecraft.item.ItemStack; import net.minecraft.tags.BlockTags; @@ -46,18 +45,12 @@ public Strata() final IEventBus modEventBus = FMLJavaModLoadingContext.get().getModEventBus(); - modEventBus.addListener(this::setup); modEventBus.addListener(this::clientSetup); BlockList.BLOCKS.register(modEventBus); ItemList.ITEMS.register(modEventBus); } - private void setup(final FMLCommonSetupEvent event) - { - StrataGeneration.generate(); - } - private void clientSetup(final FMLClientSetupEvent event) { @@ -69,10 +62,10 @@ public void onServerStarting(FMLServerStartingEvent event) } //Should tell in the logs if the blocks are correctly being read into the tag or not for TerraForged - @SubscribeEvent - public static void started(FMLServerStartedEvent event) { - new BlockTags.Wrapper(new ResourceLocation("forge:wg_stone")).getAllElements().forEach(System.out::println); - } + //@SubscribeEvent + //public static void started(FMLServerStartedEvent event) { + // new BlockTags.Wrapper(new ResourceLocation("reterraforged:rock")).getAllElements().forEach(System.out::println); + //} //Creative Tab Objects @@ -100,7 +93,7 @@ public IgneousRocksItemGroup(String name) { @Override public ItemStack createIcon(){ - return new ItemStack(ItemList.BASALT.get()); + return new ItemStack(ItemList.DACITE.get()); } } diff --git a/src/main/java/com/quizer9o8/strata/list/BlockList.java b/src/main/java/com/quizer9o8/strata/list/BlockList.java index f0686fc4..f4e12ba4 100644 --- a/src/main/java/com/quizer9o8/strata/list/BlockList.java +++ b/src/main/java/com/quizer9o8/strata/list/BlockList.java @@ -14,7 +14,7 @@ public class BlockList { //Deferred Registries Method - public static final DeferredRegister BLOCKS = new DeferredRegister(ForgeRegistries.BLOCKS, Strata.MOD_ID); + public static final DeferredRegister BLOCKS = DeferredRegister.create(ForgeRegistries.BLOCKS, Strata.MOD_ID); /* //Debug Blocks @@ -28,19 +28,19 @@ public class BlockList /*Igneous Rocks*/ //Aa - public static final RegistryObject AA = BLOCKS.register("aa", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject AA = BLOCKS.register("aa", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject AA_SLAB = BLOCKS.register("aa_slab", () -> new SlabBlock(Block.Properties.from(AA.get()))); public static final RegistryObject AA_STAIRS = BLOCKS.register("aa_stairs", () -> new StrataStairsBlock(AA.get().getDefaultState(), Block.Properties.from(AA.get()))); public static final RegistryObject AA_WALL = BLOCKS.register("aa_wall", () -> new WallBlock(Block.Properties.from(AA.get()))); //Cobblestone - public static final RegistryObject AA_COBBLESTONE = BLOCKS.register("aa_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject AA_COBBLESTONE = BLOCKS.register("aa_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject AA_COBBLESTONE_SLAB = BLOCKS.register("aa_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(AA_COBBLESTONE.get()))); public static final RegistryObject AA_COBBLESTONE_STAIRS = BLOCKS.register("aa_cobblestone_stairs", () -> new StrataStairsBlock(AA_COBBLESTONE.get().getDefaultState(), Block.Properties.from(AA_COBBLESTONE.get()))); public static final RegistryObject AA_COBBLESTONE_WALL = BLOCKS.register("aa_cobblestone_wall", () -> new WallBlock(Block.Properties.from(AA_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_AA_COBBLESTONE = BLOCKS.register("mossy_aa_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_AA_COBBLESTONE = BLOCKS.register("mossy_aa_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_AA_COBBLESTONE_SLAB = BLOCKS.register("mossy_aa_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_AA_COBBLESTONE.get()))); public static final RegistryObject MOSSY_AA_COBBLESTONE_STAIRS = BLOCKS.register("mossy_aa_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_AA_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_AA_COBBLESTONE.get()))); public static final RegistryObject MOSSY_AA_COBBLESTONE_WALL = BLOCKS.register("mossy_aa_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_AA_COBBLESTONE.get()))); @@ -49,10 +49,10 @@ public class BlockList public static final RegistryObject AA_BUTTON = BLOCKS.register("aa_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject AA_PRESSURE_PLATE = BLOCKS.register("aa_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject AA_PRESSURE_PLATE = BLOCKS.register("aa_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject AA_BRICKS = BLOCKS.register("aa_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject AA_BRICKS = BLOCKS.register("aa_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject AA_BRICK_SLAB = BLOCKS.register("aa_brick_slab", () -> new SlabBlock(Block.Properties.from(AA_BRICKS.get()))); public static final RegistryObject AA_BRICK_STAIRS = BLOCKS.register("aa_brick_stairs", () -> new StrataStairsBlock(AA_BRICKS.get().getDefaultState(), Block.Properties.from(AA_BRICKS.get()))); public static final RegistryObject AA_BRICK_WALL = BLOCKS.register("aa_brick_wall", () -> new WallBlock(Block.Properties.from(AA_BRICKS.get()))); @@ -64,24 +64,24 @@ public class BlockList public static final RegistryObject MOSSY_AA_BRICK_WALL = BLOCKS.register("mossy_aa_brick_wall", () -> new WallBlock(Block.Properties.from(AA_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_AA = BLOCKS.register("polished_aa", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_AA = BLOCKS.register("polished_aa", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_AA_SLAB = BLOCKS.register("polished_aa_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_AA.get()))); public static final RegistryObject POLISHED_AA_STAIRS = BLOCKS.register("polished_aa_stairs", () -> new StrataStairsBlock(POLISHED_AA.get().getDefaultState(), Block.Properties.from(POLISHED_AA.get()))); //Adakite - public static final RegistryObject ADAKITE = BLOCKS.register("adakite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject ADAKITE = BLOCKS.register("adakite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject ADAKITE_SLAB = BLOCKS.register("adakite_slab", () -> new SlabBlock(Block.Properties.from(ADAKITE.get()))); public static final RegistryObject ADAKITE_STAIRS = BLOCKS.register("adakite_stairs", () -> new StrataStairsBlock(ADAKITE.get().getDefaultState(), Block.Properties.from(ADAKITE.get()))); public static final RegistryObject ADAKITE_WALL = BLOCKS.register("adakite_wall", () -> new WallBlock(Block.Properties.from(ADAKITE.get()))); //Cobblestone - public static final RegistryObject ADAKITE_COBBLESTONE = BLOCKS.register("adakite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject ADAKITE_COBBLESTONE = BLOCKS.register("adakite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject ADAKITE_COBBLESTONE_SLAB = BLOCKS.register("adakite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(ADAKITE_COBBLESTONE.get()))); public static final RegistryObject ADAKITE_COBBLESTONE_STAIRS = BLOCKS.register("adakite_cobblestone_stairs", () -> new StrataStairsBlock(ADAKITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(ADAKITE_COBBLESTONE.get()))); public static final RegistryObject ADAKITE_COBBLESTONE_WALL = BLOCKS.register("adakite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(ADAKITE_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_ADAKITE_COBBLESTONE = BLOCKS.register("mossy_adakite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_ADAKITE_COBBLESTONE = BLOCKS.register("mossy_adakite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_ADAKITE_COBBLESTONE_SLAB = BLOCKS.register("mossy_adakite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_ADAKITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_ADAKITE_COBBLESTONE_STAIRS = BLOCKS.register("mossy_adakite_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_ADAKITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_ADAKITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_ADAKITE_COBBLESTONE_WALL = BLOCKS.register("mossy_adakite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_ADAKITE_COBBLESTONE.get()))); @@ -90,10 +90,10 @@ public class BlockList public static final RegistryObject ADAKITE_BUTTON = BLOCKS.register("adakite_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject ADAKITE_PRESSURE_PLATE = BLOCKS.register("adakite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject ADAKITE_PRESSURE_PLATE = BLOCKS.register("adakite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject ADAKITE_BRICKS = BLOCKS.register("adakite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject ADAKITE_BRICKS = BLOCKS.register("adakite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject ADAKITE_BRICK_SLAB = BLOCKS.register("adakite_brick_slab", () -> new SlabBlock(Block.Properties.from(ADAKITE_BRICKS.get()))); public static final RegistryObject ADAKITE_BRICK_STAIRS = BLOCKS.register("adakite_brick_stairs", () -> new StrataStairsBlock(ADAKITE_BRICKS.get().getDefaultState(), Block.Properties.from(ADAKITE_BRICKS.get()))); public static final RegistryObject ADAKITE_BRICK_WALL = BLOCKS.register("adakite_brick_wall", () -> new WallBlock(Block.Properties.from(ADAKITE_BRICKS.get()))); @@ -105,65 +105,65 @@ public class BlockList public static final RegistryObject MOSSY_ADAKITE_BRICK_WALL = BLOCKS.register("mossy_adakite_brick_wall", () -> new WallBlock(Block.Properties.from(ADAKITE_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_ADAKITE = BLOCKS.register("polished_adakite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_ADAKITE = BLOCKS.register("polished_adakite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_ADAKITE_SLAB = BLOCKS.register("polished_adakite_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_ADAKITE.get()))); public static final RegistryObject POLISHED_ADAKITE_STAIRS = BLOCKS.register("polished_adakite_stairs", () -> new StrataStairsBlock(POLISHED_ADAKITE.get().getDefaultState(), Block.Properties.from(POLISHED_ADAKITE.get()))); //Basalt - public static final RegistryObject BASALT = BLOCKS.register("basalt", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject BASALT_SLAB = BLOCKS.register("basalt_slab", () -> new SlabBlock(Block.Properties.from(BASALT.get()))); - public static final RegistryObject BASALT_STAIRS = BLOCKS.register("basalt_stairs", () -> new StrataStairsBlock(BASALT.get().getDefaultState(), Block.Properties.from(BASALT.get()))); - public static final RegistryObject BASALT_WALL = BLOCKS.register("basalt_wall", () -> new WallBlock(Block.Properties.from(BASALT.get()))); + //public static final RegistryObject BASALT = BLOCKS.register("basalt", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); + //public static final RegistryObject BASALT_SLAB = BLOCKS.register("basalt_slab", () -> new SlabBlock(Block.Properties.from(BASALT.get()))); + //public static final RegistryObject BASALT_STAIRS = BLOCKS.register("basalt_stairs", () -> new StrataStairsBlock(BASALT.get().getDefaultState(), Block.Properties.from(BASALT.get()))); + //public static final RegistryObject BASALT_WALL = BLOCKS.register("basalt_wall", () -> new WallBlock(Block.Properties.from(BASALT.get()))); //Cobblestone - public static final RegistryObject BASALT_COBBLESTONE = BLOCKS.register("basalt_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject BASALT_COBBLESTONE_SLAB = BLOCKS.register("basalt_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(BASALT_COBBLESTONE.get()))); - public static final RegistryObject BASALT_COBBLESTONE_STAIRS = BLOCKS.register("basalt_cobblestone_stairs", () -> new StrataStairsBlock(BASALT_COBBLESTONE.get().getDefaultState(), Block.Properties.from(BASALT_COBBLESTONE.get()))); - public static final RegistryObject BASALT_COBBLESTONE_WALL = BLOCKS.register("basalt_cobblestone_wall", () -> new WallBlock(Block.Properties.from(BASALT_COBBLESTONE.get()))); + //public static final RegistryObject BASALT_COBBLESTONE = BLOCKS.register("basalt_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); + //public static final RegistryObject BASALT_COBBLESTONE_SLAB = BLOCKS.register("basalt_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(BASALT_COBBLESTONE.get()))); + //public static final RegistryObject BASALT_COBBLESTONE_STAIRS = BLOCKS.register("basalt_cobblestone_stairs", () -> new StrataStairsBlock(BASALT_COBBLESTONE.get().getDefaultState(), Block.Properties.from(BASALT_COBBLESTONE.get()))); + //public static final RegistryObject BASALT_COBBLESTONE_WALL = BLOCKS.register("basalt_cobblestone_wall", () -> new WallBlock(Block.Properties.from(BASALT_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_BASALT_COBBLESTONE = BLOCKS.register("mossy_basalt_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject MOSSY_BASALT_COBBLESTONE_SLAB = BLOCKS.register("mossy_basalt_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_BASALT_COBBLESTONE.get()))); - public static final RegistryObject MOSSY_BASALT_COBBLESTONE_STAIRS = BLOCKS.register("mossy_basalt_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_BASALT_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_BASALT_COBBLESTONE.get()))); - public static final RegistryObject MOSSY_BASALT_COBBLESTONE_WALL = BLOCKS.register("mossy_basalt_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_BASALT_COBBLESTONE.get()))); + //public static final RegistryObject MOSSY_BASALT_COBBLESTONE = BLOCKS.register("mossy_basalt_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); + //public static final RegistryObject MOSSY_BASALT_COBBLESTONE_SLAB = BLOCKS.register("mossy_basalt_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_BASALT_COBBLESTONE.get()))); + //public static final RegistryObject MOSSY_BASALT_COBBLESTONE_STAIRS = BLOCKS.register("mossy_basalt_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_BASALT_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_BASALT_COBBLESTONE.get()))); + //public static final RegistryObject MOSSY_BASALT_COBBLESTONE_WALL = BLOCKS.register("mossy_basalt_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_BASALT_COBBLESTONE.get()))); //Buttons - public static final RegistryObject BASALT_BUTTON = BLOCKS.register("basalt_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + //public static final RegistryObject BASALT_BUTTON = BLOCKS.register("basalt_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject BASALT_PRESSURE_PLATE = BLOCKS.register("basalt_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + //public static final RegistryObject BASALT_PRESSURE_PLATE = BLOCKS.register("basalt_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject BASALT_BRICKS = BLOCKS.register("basalt_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject BASALT_BRICK_SLAB = BLOCKS.register("basalt_brick_slab", () -> new SlabBlock(Block.Properties.from(BASALT_BRICKS.get()))); - public static final RegistryObject BASALT_BRICK_STAIRS = BLOCKS.register("basalt_brick_stairs", () -> new StrataStairsBlock(BASALT_BRICKS.get().getDefaultState(), Block.Properties.from(BASALT_BRICKS.get()))); - public static final RegistryObject BASALT_BRICK_WALL = BLOCKS.register("basalt_brick_wall", () -> new WallBlock(Block.Properties.from(BASALT_BRICKS.get()))); - public static final RegistryObject CHISELED_BASALT_BRICKS = BLOCKS.register("chiseled_basalt_bricks", () -> new Block(Block.Properties.from(BASALT_BRICKS.get()))); - public static final RegistryObject CRACKED_BASALT_BRICKS = BLOCKS.register("cracked_basalt_bricks", () -> new Block(Block.Properties.from(BASALT_BRICKS.get()))); - public static final RegistryObject MOSSY_BASALT_BRICKS = BLOCKS.register("mossy_basalt_bricks", () -> new Block(Block.Properties.from(BASALT_BRICKS.get()))); - public static final RegistryObject MOSSY_BASALT_BRICK_SLAB = BLOCKS.register("mossy_basalt_brick_slab", () -> new SlabBlock(Block.Properties.from(BASALT_BRICKS.get()))); - public static final RegistryObject MOSSY_BASALT_BRICK_STAIRS = BLOCKS.register("mossy_basalt_brick_stairs", () -> new StrataStairsBlock(BASALT_BRICKS.get().getDefaultState(), Block.Properties.from(BASALT.get()))); - public static final RegistryObject MOSSY_BASALT_BRICK_WALL = BLOCKS.register("mossy_basalt_brick_wall", () -> new WallBlock(Block.Properties.from(BASALT_BRICKS.get()))); + //public static final RegistryObject BASALT_BRICKS = BLOCKS.register("basalt_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); + //public static final RegistryObject BASALT_BRICK_SLAB = BLOCKS.register("basalt_brick_slab", () -> new SlabBlock(Block.Properties.from(BASALT_BRICKS.get()))); + //public static final RegistryObject BASALT_BRICK_STAIRS = BLOCKS.register("basalt_brick_stairs", () -> new StrataStairsBlock(BASALT_BRICKS.get().getDefaultState(), Block.Properties.from(BASALT_BRICKS.get()))); + //public static final RegistryObject BASALT_BRICK_WALL = BLOCKS.register("basalt_brick_wall", () -> new WallBlock(Block.Properties.from(BASALT_BRICKS.get()))); + //public static final RegistryObject CHISELED_BASALT_BRICKS = BLOCKS.register("chiseled_basalt_bricks", () -> new Block(Block.Properties.from(BASALT_BRICKS.get()))); + //public static final RegistryObject CRACKED_BASALT_BRICKS = BLOCKS.register("cracked_basalt_bricks", () -> new Block(Block.Properties.from(BASALT_BRICKS.get()))); + //public static final RegistryObject MOSSY_BASALT_BRICKS = BLOCKS.register("mossy_basalt_bricks", () -> new Block(Block.Properties.from(BASALT_BRICKS.get()))); + //public static final RegistryObject MOSSY_BASALT_BRICK_SLAB = BLOCKS.register("mossy_basalt_brick_slab", () -> new SlabBlock(Block.Properties.from(BASALT_BRICKS.get()))); + //public static final RegistryObject MOSSY_BASALT_BRICK_STAIRS = BLOCKS.register("mossy_basalt_brick_stairs", () -> new StrataStairsBlock(BASALT_BRICKS.get().getDefaultState(), Block.Properties.from(BASALT.get()))); + //public static final RegistryObject MOSSY_BASALT_BRICK_WALL = BLOCKS.register("mossy_basalt_brick_wall", () -> new WallBlock(Block.Properties.from(BASALT_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_BASALT = BLOCKS.register("polished_basalt", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject POLISHED_BASALT_SLAB = BLOCKS.register("polished_basalt_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_BASALT.get()))); - public static final RegistryObject POLISHED_BASALT_STAIRS = BLOCKS.register("polished_basalt_stairs", () -> new StrataStairsBlock(POLISHED_BASALT.get().getDefaultState(), Block.Properties.from(POLISHED_BASALT.get()))); + //public static final RegistryObject POLISHED_BASALT = BLOCKS.register("polished_basalt", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); + //public static final RegistryObject POLISHED_BASALT_SLAB = BLOCKS.register("polished_basalt_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_BASALT.get()))); + //public static final RegistryObject POLISHED_BASALT_STAIRS = BLOCKS.register("polished_basalt_stairs", () -> new StrataStairsBlock(POLISHED_BASALT.get().getDefaultState(), Block.Properties.from(POLISHED_BASALT.get()))); //Dacite - public static final RegistryObject DACITE = BLOCKS.register("dacite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject DACITE = BLOCKS.register("dacite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject DACITE_SLAB = BLOCKS.register("dacite_slab", () -> new SlabBlock(Block.Properties.from(DACITE.get()))); public static final RegistryObject DACITE_STAIRS = BLOCKS.register("dacite_stairs", () -> new StrataStairsBlock(DACITE.get().getDefaultState(), Block.Properties.from(DACITE.get()))); public static final RegistryObject DACITE_WALL = BLOCKS.register("dacite_wall", () -> new WallBlock(Block.Properties.from(DACITE.get()))); //Cobblestone - public static final RegistryObject DACITE_COBBLESTONE = BLOCKS.register("dacite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject DACITE_COBBLESTONE = BLOCKS.register("dacite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject DACITE_COBBLESTONE_SLAB = BLOCKS.register("dacite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(DACITE_COBBLESTONE.get()))); public static final RegistryObject DACITE_COBBLESTONE_STAIRS = BLOCKS.register("dacite_cobblestone_stairs", () -> new StrataStairsBlock(DACITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(DACITE_COBBLESTONE.get()))); public static final RegistryObject DACITE_COBBLESTONE_WALL = BLOCKS.register("dacite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(DACITE_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_DACITE_COBBLESTONE = BLOCKS.register("mossy_dacite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_DACITE_COBBLESTONE = BLOCKS.register("mossy_dacite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_DACITE_COBBLESTONE_SLAB = BLOCKS.register("mossy_dacite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_DACITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_DACITE_COBBLESTONE_STAIRS = BLOCKS.register("mossy_dacite_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_DACITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_DACITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_DACITE_COBBLESTONE_WALL = BLOCKS.register("mossy_dacite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_DACITE_COBBLESTONE.get()))); @@ -172,10 +172,10 @@ public class BlockList public static final RegistryObject DACITE_BUTTON = BLOCKS.register("dacite_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject DACITE_PRESSURE_PLATE = BLOCKS.register("dacite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject DACITE_PRESSURE_PLATE = BLOCKS.register("dacite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject DACITE_BRICKS = BLOCKS.register("dacite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject DACITE_BRICKS = BLOCKS.register("dacite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject DACITE_BRICK_SLAB = BLOCKS.register("dacite_brick_slab", () -> new SlabBlock(Block.Properties.from(DACITE_BRICKS.get()))); public static final RegistryObject DACITE_BRICK_STAIRS = BLOCKS.register("dacite_brick_stairs", () -> new StrataStairsBlock(DACITE_BRICKS.get().getDefaultState(), Block.Properties.from(DACITE_BRICKS.get()))); public static final RegistryObject DACITE_BRICK_WALL = BLOCKS.register("dacite_brick_wall", () -> new WallBlock(Block.Properties.from(DACITE_BRICKS.get()))); @@ -187,24 +187,24 @@ public class BlockList public static final RegistryObject MOSSY_DACITE_BRICK_WALL = BLOCKS.register("mossy_dacite_brick_wall", () -> new WallBlock(Block.Properties.from(DACITE_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_DACITE = BLOCKS.register("polished_dacite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_DACITE = BLOCKS.register("polished_dacite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_DACITE_SLAB = BLOCKS.register("polished_dacite_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_DACITE.get()))); public static final RegistryObject POLISHED_DACITE_STAIRS = BLOCKS.register("polished_dacite_stairs", () -> new StrataStairsBlock(POLISHED_DACITE.get().getDefaultState(), Block.Properties.from(POLISHED_DACITE.get()))); //Dunite - public static final RegistryObject DUNITE = BLOCKS.register("dunite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject DUNITE = BLOCKS.register("dunite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject DUNITE_SLAB = BLOCKS.register("dunite_slab", () -> new SlabBlock(Block.Properties.from(DUNITE.get()))); public static final RegistryObject DUNITE_STAIRS = BLOCKS.register("dunite_stairs", () -> new StrataStairsBlock(DUNITE.get().getDefaultState(), Block.Properties.from(DUNITE.get()))); public static final RegistryObject DUNITE_WALL = BLOCKS.register("dunite_wall", () -> new WallBlock(Block.Properties.from(DUNITE.get()))); //Cobblestone - public static final RegistryObject DUNITE_COBBLESTONE = BLOCKS.register("dunite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject DUNITE_COBBLESTONE = BLOCKS.register("dunite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject DUNITE_COBBLESTONE_SLAB = BLOCKS.register("dunite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(DUNITE_COBBLESTONE.get()))); public static final RegistryObject DUNITE_COBBLESTONE_STAIRS = BLOCKS.register("dunite_cobblestone_stairs", () -> new StrataStairsBlock(DUNITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(DUNITE_COBBLESTONE.get()))); public static final RegistryObject DUNITE_COBBLESTONE_WALL = BLOCKS.register("dunite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(DUNITE_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_DUNITE_COBBLESTONE = BLOCKS.register("mossy_dunite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_DUNITE_COBBLESTONE = BLOCKS.register("mossy_dunite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_DUNITE_COBBLESTONE_SLAB = BLOCKS.register("mossy_dunite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_DUNITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_DUNITE_COBBLESTONE_STAIRS = BLOCKS.register("mossy_dunite_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_DUNITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_DUNITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_DUNITE_COBBLESTONE_WALL = BLOCKS.register("mossy_dunite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_DUNITE_COBBLESTONE.get()))); @@ -213,10 +213,10 @@ public class BlockList public static final RegistryObject DUNITE_BUTTON = BLOCKS.register("dunite_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject DUNITE_PRESSURE_PLATE = BLOCKS.register("dunite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject DUNITE_PRESSURE_PLATE = BLOCKS.register("dunite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject DUNITE_BRICKS = BLOCKS.register("dunite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject DUNITE_BRICKS = BLOCKS.register("dunite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject DUNITE_BRICK_SLAB = BLOCKS.register("dunite_brick_slab", () -> new SlabBlock(Block.Properties.from(DUNITE_BRICKS.get()))); public static final RegistryObject DUNITE_BRICK_STAIRS = BLOCKS.register("dunite_brick_stairs", () -> new StrataStairsBlock(DUNITE_BRICKS.get().getDefaultState(), Block.Properties.from(DUNITE_BRICKS.get()))); public static final RegistryObject DUNITE_BRICK_WALL = BLOCKS.register("dunite_brick_wall", () -> new WallBlock(Block.Properties.from(DUNITE_BRICKS.get()))); @@ -228,24 +228,24 @@ public class BlockList public static final RegistryObject MOSSY_DUNITE_BRICK_WALL = BLOCKS.register("mossy_dunite_brick_wall", () -> new WallBlock(Block.Properties.from(DUNITE_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_DUNITE = BLOCKS.register("polished_dunite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_DUNITE = BLOCKS.register("polished_dunite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_DUNITE_SLAB = BLOCKS.register("polished_dunite_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_DUNITE.get()))); public static final RegistryObject POLISHED_DUNITE_STAIRS = BLOCKS.register("polished_dunite_stairs", () -> new StrataStairsBlock(POLISHED_DUNITE.get().getDefaultState(), Block.Properties.from(POLISHED_DUNITE.get()))); //Gabbro - public static final RegistryObject GABBRO = BLOCKS.register("gabbro", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject GABBRO = BLOCKS.register("gabbro", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject GABBRO_SLAB = BLOCKS.register("gabbro_slab", () -> new SlabBlock(Block.Properties.from(GABBRO.get()))); public static final RegistryObject GABBRO_STAIRS = BLOCKS.register("gabbro_stairs", () -> new StrataStairsBlock(GABBRO.get().getDefaultState(), Block.Properties.from(GABBRO.get()))); public static final RegistryObject GABBRO_WALL = BLOCKS.register("gabbro_wall", () -> new WallBlock(Block.Properties.from(GABBRO.get()))); //Cobblestone - public static final RegistryObject GABBRO_COBBLESTONE = BLOCKS.register("gabbro_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject GABBRO_COBBLESTONE = BLOCKS.register("gabbro_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject GABBRO_COBBLESTONE_SLAB = BLOCKS.register("gabbro_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(GABBRO_COBBLESTONE.get()))); public static final RegistryObject GABBRO_COBBLESTONE_STAIRS = BLOCKS.register("gabbro_cobblestone_stairs", () -> new StrataStairsBlock(GABBRO_COBBLESTONE.get().getDefaultState(), Block.Properties.from(GABBRO_COBBLESTONE.get()))); public static final RegistryObject GABBRO_COBBLESTONE_WALL = BLOCKS.register("gabbro_cobblestone_wall", () -> new WallBlock(Block.Properties.from(GABBRO_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_GABBRO_COBBLESTONE = BLOCKS.register("mossy_gabbro_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_GABBRO_COBBLESTONE = BLOCKS.register("mossy_gabbro_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_GABBRO_COBBLESTONE_SLAB = BLOCKS.register("mossy_gabbro_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_GABBRO_COBBLESTONE.get()))); public static final RegistryObject MOSSY_GABBRO_COBBLESTONE_STAIRS = BLOCKS.register("mossy_gabbro_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_GABBRO_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_GABBRO_COBBLESTONE.get()))); public static final RegistryObject MOSSY_GABBRO_COBBLESTONE_WALL = BLOCKS.register("mossy_gabbro_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_GABBRO_COBBLESTONE.get()))); @@ -254,10 +254,10 @@ public class BlockList public static final RegistryObject GABBRO_BUTTON = BLOCKS.register("gabbro_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject GABBRO_PRESSURE_PLATE = BLOCKS.register("gabbro_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject GABBRO_PRESSURE_PLATE = BLOCKS.register("gabbro_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject GABBRO_BRICKS = BLOCKS.register("gabbro_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject GABBRO_BRICKS = BLOCKS.register("gabbro_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject GABBRO_BRICK_SLAB = BLOCKS.register("gabbro_brick_slab", () -> new SlabBlock(Block.Properties.from(GABBRO_BRICKS.get()))); public static final RegistryObject GABBRO_BRICK_STAIRS = BLOCKS.register("gabbro_brick_stairs", () -> new StrataStairsBlock(GABBRO_BRICKS.get().getDefaultState(), Block.Properties.from(GABBRO_BRICKS.get()))); public static final RegistryObject GABBRO_BRICK_WALL = BLOCKS.register("gabbro_brick_wall", () -> new WallBlock(Block.Properties.from(GABBRO_BRICKS.get()))); @@ -269,24 +269,24 @@ public class BlockList public static final RegistryObject MOSSY_GABBRO_BRICK_WALL = BLOCKS.register("mossy_gabbro_brick_wall", () -> new WallBlock(Block.Properties.from(GABBRO_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_GABBRO = BLOCKS.register("polished_gabbro", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_GABBRO = BLOCKS.register("polished_gabbro", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_GABBRO_SLAB = BLOCKS.register("polished_gabbro_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_GABBRO.get()))); public static final RegistryObject POLISHED_GABBRO_STAIRS = BLOCKS.register("polished_gabbro_stairs", () -> new StrataStairsBlock(POLISHED_GABBRO.get().getDefaultState(), Block.Properties.from(POLISHED_GABBRO.get()))); //Komatiite - public static final RegistryObject KOMATIITE = BLOCKS.register("komatiite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject KOMATIITE = BLOCKS.register("komatiite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject KOMATIITE_SLAB = BLOCKS.register("komatiite_slab", () -> new SlabBlock(Block.Properties.from(KOMATIITE.get()))); public static final RegistryObject KOMATIITE_STAIRS = BLOCKS.register("komatiite_stairs", () -> new StrataStairsBlock(KOMATIITE.get().getDefaultState(), Block.Properties.from(KOMATIITE.get()))); public static final RegistryObject KOMATIITE_WALL = BLOCKS.register("komatiite_wall", () -> new WallBlock(Block.Properties.from(KOMATIITE.get()))); //Cobblestone - public static final RegistryObject KOMATIITE_COBBLESTONE = BLOCKS.register("komatiite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject KOMATIITE_COBBLESTONE = BLOCKS.register("komatiite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject KOMATIITE_COBBLESTONE_SLAB = BLOCKS.register("komatiite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(KOMATIITE_COBBLESTONE.get()))); public static final RegistryObject KOMATIITE_COBBLESTONE_STAIRS = BLOCKS.register("komatiite_cobblestone_stairs", () -> new StrataStairsBlock(KOMATIITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(KOMATIITE_COBBLESTONE.get()))); public static final RegistryObject KOMATIITE_COBBLESTONE_WALL = BLOCKS.register("komatiite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(KOMATIITE_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_KOMATIITE_COBBLESTONE = BLOCKS.register("mossy_komatiite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_KOMATIITE_COBBLESTONE = BLOCKS.register("mossy_komatiite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_KOMATIITE_COBBLESTONE_SLAB = BLOCKS.register("mossy_komatiite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_KOMATIITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_KOMATIITE_COBBLESTONE_STAIRS = BLOCKS.register("mossy_komatiite_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_KOMATIITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_KOMATIITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_KOMATIITE_COBBLESTONE_WALL = BLOCKS.register("mossy_komatiite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_KOMATIITE_COBBLESTONE.get()))); @@ -295,10 +295,10 @@ public class BlockList public static final RegistryObject KOMATIITE_BUTTON = BLOCKS.register("komatiite_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject KOMATIITE_PRESSURE_PLATE = BLOCKS.register("komatiite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject KOMATIITE_PRESSURE_PLATE = BLOCKS.register("komatiite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject KOMATIITE_BRICKS = BLOCKS.register("komatiite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject KOMATIITE_BRICKS = BLOCKS.register("komatiite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject KOMATIITE_BRICK_SLAB = BLOCKS.register("komatiite_brick_slab", () -> new SlabBlock(Block.Properties.from(KOMATIITE_BRICKS.get()))); public static final RegistryObject KOMATIITE_BRICK_STAIRS = BLOCKS.register("komatiite_brick_stairs", () -> new StrataStairsBlock(KOMATIITE_BRICKS.get().getDefaultState(), Block.Properties.from(KOMATIITE_BRICKS.get()))); public static final RegistryObject KOMATIITE_BRICK_WALL = BLOCKS.register("komatiite_brick_wall", () -> new WallBlock(Block.Properties.from(KOMATIITE_BRICKS.get()))); @@ -310,24 +310,24 @@ public class BlockList public static final RegistryObject MOSSY_KOMATIITE_BRICK_WALL = BLOCKS.register("mossy_komatiite_brick_wall", () -> new WallBlock(Block.Properties.from(KOMATIITE_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_KOMATIITE = BLOCKS.register("polished_komatiite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_KOMATIITE = BLOCKS.register("polished_komatiite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_KOMATIITE_SLAB = BLOCKS.register("polished_komatiite_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_KOMATIITE.get()))); public static final RegistryObject POLISHED_KOMATIITE_STAIRS = BLOCKS.register("polished_komatiite_stairs", () -> new StrataStairsBlock(POLISHED_KOMATIITE.get().getDefaultState(), Block.Properties.from(POLISHED_KOMATIITE.get()))); //Pahoehoe - public static final RegistryObject PAHOEHOE = BLOCKS.register("pahoehoe", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject PAHOEHOE = BLOCKS.register("pahoehoe", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject PAHOEHOE_SLAB = BLOCKS.register("pahoehoe_slab", () -> new SlabBlock(Block.Properties.from(PAHOEHOE.get()))); public static final RegistryObject PAHOEHOE_STAIRS = BLOCKS.register("pahoehoe_stairs", () -> new StrataStairsBlock(PAHOEHOE.get().getDefaultState(), Block.Properties.from(PAHOEHOE.get()))); public static final RegistryObject PAHOEHOE_WALL = BLOCKS.register("pahoehoe_wall", () -> new WallBlock(Block.Properties.from(PAHOEHOE.get()))); //Cobblestone - public static final RegistryObject PAHOEHOE_COBBLESTONE = BLOCKS.register("pahoehoe_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject PAHOEHOE_COBBLESTONE = BLOCKS.register("pahoehoe_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject PAHOEHOE_COBBLESTONE_SLAB = BLOCKS.register("pahoehoe_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(PAHOEHOE_COBBLESTONE.get()))); public static final RegistryObject PAHOEHOE_COBBLESTONE_STAIRS = BLOCKS.register("pahoehoe_cobblestone_stairs", () -> new StrataStairsBlock(PAHOEHOE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(PAHOEHOE_COBBLESTONE.get()))); public static final RegistryObject PAHOEHOE_COBBLESTONE_WALL = BLOCKS.register("pahoehoe_cobblestone_wall", () -> new WallBlock(Block.Properties.from(PAHOEHOE_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_PAHOEHOE_COBBLESTONE = BLOCKS.register("mossy_pahoehoe_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_PAHOEHOE_COBBLESTONE = BLOCKS.register("mossy_pahoehoe_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_PAHOEHOE_COBBLESTONE_SLAB = BLOCKS.register("mossy_pahoehoe_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_PAHOEHOE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_PAHOEHOE_COBBLESTONE_STAIRS = BLOCKS.register("mossy_pahoehoe_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_PAHOEHOE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_PAHOEHOE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_PAHOEHOE_COBBLESTONE_WALL = BLOCKS.register("mossy_pahoehoe_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_PAHOEHOE_COBBLESTONE.get()))); @@ -336,10 +336,10 @@ public class BlockList public static final RegistryObject PAHOEHOE_BUTTON = BLOCKS.register("pahoehoe_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject PAHOEHOE_PRESSURE_PLATE = BLOCKS.register("pahoehoe_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject PAHOEHOE_PRESSURE_PLATE = BLOCKS.register("pahoehoe_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject PAHOEHOE_BRICKS = BLOCKS.register("pahoehoe_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject PAHOEHOE_BRICKS = BLOCKS.register("pahoehoe_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject PAHOEHOE_BRICK_SLAB = BLOCKS.register("pahoehoe_brick_slab", () -> new SlabBlock(Block.Properties.from(PAHOEHOE_BRICKS.get()))); public static final RegistryObject PAHOEHOE_BRICK_STAIRS = BLOCKS.register("pahoehoe_brick_stairs", () -> new StrataStairsBlock(PAHOEHOE_BRICKS.get().getDefaultState(), Block.Properties.from(PAHOEHOE_BRICKS.get()))); public static final RegistryObject PAHOEHOE_BRICK_WALL = BLOCKS.register("pahoehoe_brick_wall", () -> new WallBlock(Block.Properties.from(PAHOEHOE_BRICKS.get()))); @@ -351,24 +351,24 @@ public class BlockList public static final RegistryObject MOSSY_PAHOEHOE_BRICK_WALL = BLOCKS.register("mossy_pahoehoe_brick_wall", () -> new WallBlock(Block.Properties.from(PAHOEHOE_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_PAHOEHOE = BLOCKS.register("polished_pahoehoe", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_PAHOEHOE = BLOCKS.register("polished_pahoehoe", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_PAHOEHOE_SLAB = BLOCKS.register("polished_pahoehoe_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_PAHOEHOE.get()))); public static final RegistryObject POLISHED_PAHOEHOE_STAIRS = BLOCKS.register("polished_pahoehoe_stairs", () -> new StrataStairsBlock(POLISHED_PAHOEHOE.get().getDefaultState(), Block.Properties.from(POLISHED_PAHOEHOE.get()))); //Pegmatiite - public static final RegistryObject PEGMATITE = BLOCKS.register("pegmatite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject PEGMATITE = BLOCKS.register("pegmatite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject PEGMATITE_SLAB = BLOCKS.register("pegmatite_slab", () -> new SlabBlock(Block.Properties.from(PEGMATITE.get()))); public static final RegistryObject PEGMATITE_STAIRS = BLOCKS.register("pegmatite_stairs", () -> new StrataStairsBlock(PEGMATITE.get().getDefaultState(), Block.Properties.from(PEGMATITE.get()))); public static final RegistryObject PEGMATITE_WALL = BLOCKS.register("pegmatite_wall", () -> new WallBlock(Block.Properties.from(PEGMATITE.get()))); //Cobblestone - public static final RegistryObject PEGMATITE_COBBLESTONE = BLOCKS.register("pegmatite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject PEGMATITE_COBBLESTONE = BLOCKS.register("pegmatite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject PEGMATITE_COBBLESTONE_SLAB = BLOCKS.register("pegmatite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(PEGMATITE_COBBLESTONE.get()))); public static final RegistryObject PEGMATITE_COBBLESTONE_STAIRS = BLOCKS.register("pegmatite_cobblestone_stairs", () -> new StrataStairsBlock(PEGMATITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(PEGMATITE_COBBLESTONE.get()))); public static final RegistryObject PEGMATITE_COBBLESTONE_WALL = BLOCKS.register("pegmatite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(PEGMATITE_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_PEGMATITE_COBBLESTONE = BLOCKS.register("mossy_pegmatite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_PEGMATITE_COBBLESTONE = BLOCKS.register("mossy_pegmatite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_PEGMATITE_COBBLESTONE_SLAB = BLOCKS.register("mossy_pegmatite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_PEGMATITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_PEGMATITE_COBBLESTONE_STAIRS = BLOCKS.register("mossy_pegmatite_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_PEGMATITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_PEGMATITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_PEGMATITE_COBBLESTONE_WALL = BLOCKS.register("mossy_pegmatite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_PEGMATITE_COBBLESTONE.get()))); @@ -377,10 +377,10 @@ public class BlockList public static final RegistryObject PEGMATITE_BUTTON = BLOCKS.register("pegmatite_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject PEGMATITE_PRESSURE_PLATE = BLOCKS.register("pegmatite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject PEGMATITE_PRESSURE_PLATE = BLOCKS.register("pegmatite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject PEGMATITE_BRICKS = BLOCKS.register("pegmatite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject PEGMATITE_BRICKS = BLOCKS.register("pegmatite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject PEGMATITE_BRICK_SLAB = BLOCKS.register("pegmatite_brick_slab", () -> new SlabBlock(Block.Properties.from(PEGMATITE_BRICKS.get()))); public static final RegistryObject PEGMATITE_BRICK_STAIRS = BLOCKS.register("pegmatite_brick_stairs", () -> new StrataStairsBlock(PEGMATITE_BRICKS.get().getDefaultState(), Block.Properties.from(PEGMATITE_BRICKS.get()))); public static final RegistryObject PEGMATITE_BRICK_WALL = BLOCKS.register("pegmatite_brick_wall", () -> new WallBlock(Block.Properties.from(PEGMATITE_BRICKS.get()))); @@ -392,24 +392,24 @@ public class BlockList public static final RegistryObject MOSSY_PEGMATITE_BRICK_WALL = BLOCKS.register("mossy_pegmatite_brick_wall", () -> new WallBlock(Block.Properties.from(PEGMATITE_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_PEGMATITE = BLOCKS.register("polished_pegmatite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_PEGMATITE = BLOCKS.register("polished_pegmatite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_PEGMATITE_SLAB = BLOCKS.register("polished_pegmatite_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_PEGMATITE.get()))); public static final RegistryObject POLISHED_PEGMATITE_STAIRS = BLOCKS.register("polished_pegmatite_stairs", () -> new StrataStairsBlock(POLISHED_PEGMATITE.get().getDefaultState(), Block.Properties.from(POLISHED_PEGMATITE.get()))); //Phonolite - public static final RegistryObject PHONOLITE = BLOCKS.register("phonolite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject PHONOLITE = BLOCKS.register("phonolite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject PHONOLITE_SLAB = BLOCKS.register("phonolite_slab", () -> new SlabBlock(Block.Properties.from(PHONOLITE.get()))); public static final RegistryObject PHONOLITE_STAIRS = BLOCKS.register("phonolite_stairs", () -> new StrataStairsBlock(PHONOLITE.get().getDefaultState(), Block.Properties.from(PHONOLITE.get()))); public static final RegistryObject PHONOLITE_WALL = BLOCKS.register("phonolite_wall", () -> new WallBlock(Block.Properties.from(PHONOLITE.get()))); //Cobblestone - public static final RegistryObject PHONOLITE_COBBLESTONE = BLOCKS.register("phonolite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject PHONOLITE_COBBLESTONE = BLOCKS.register("phonolite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject PHONOLITE_COBBLESTONE_SLAB = BLOCKS.register("phonolite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(PHONOLITE_COBBLESTONE.get()))); public static final RegistryObject PHONOLITE_COBBLESTONE_STAIRS = BLOCKS.register("phonolite_cobblestone_stairs", () -> new StrataStairsBlock(PHONOLITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(PHONOLITE_COBBLESTONE.get()))); public static final RegistryObject PHONOLITE_COBBLESTONE_WALL = BLOCKS.register("phonolite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(PHONOLITE_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_PHONOLITE_COBBLESTONE = BLOCKS.register("mossy_phonolite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_PHONOLITE_COBBLESTONE = BLOCKS.register("mossy_phonolite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_PHONOLITE_COBBLESTONE_SLAB = BLOCKS.register("mossy_phonolite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_PHONOLITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_PHONOLITE_COBBLESTONE_STAIRS = BLOCKS.register("mossy_phonolite_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_PHONOLITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_PHONOLITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_PHONOLITE_COBBLESTONE_WALL = BLOCKS.register("mossy_phonolite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_PHONOLITE_COBBLESTONE.get()))); @@ -418,10 +418,10 @@ public class BlockList public static final RegistryObject PHONOLITE_BUTTON = BLOCKS.register("phonolite_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject PHONOLITE_PRESSURE_PLATE = BLOCKS.register("phonolite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject PHONOLITE_PRESSURE_PLATE = BLOCKS.register("phonolite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject PHONOLITE_BRICKS = BLOCKS.register("phonolite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject PHONOLITE_BRICKS = BLOCKS.register("phonolite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject PHONOLITE_BRICK_SLAB = BLOCKS.register("phonolite_brick_slab", () -> new SlabBlock(Block.Properties.from(PHONOLITE_BRICKS.get()))); public static final RegistryObject PHONOLITE_BRICK_STAIRS = BLOCKS.register("phonolite_brick_stairs", () -> new StrataStairsBlock(PHONOLITE_BRICKS.get().getDefaultState(), Block.Properties.from(PHONOLITE_BRICKS.get()))); public static final RegistryObject PHONOLITE_BRICK_WALL = BLOCKS.register("phonolite_brick_wall", () -> new WallBlock(Block.Properties.from(PHONOLITE_BRICKS.get()))); @@ -433,26 +433,26 @@ public class BlockList public static final RegistryObject MOSSY_PHONOLITE_BRICK_WALL = BLOCKS.register("mossy_phonolite_brick_wall", () -> new WallBlock(Block.Properties.from(PHONOLITE_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_PHONOLITE = BLOCKS.register("polished_phonolite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_PHONOLITE = BLOCKS.register("polished_phonolite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_PHONOLITE_SLAB = BLOCKS.register("polished_phonolite_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_PHONOLITE.get()))); public static final RegistryObject POLISHED_PHONOLITE_STAIRS = BLOCKS.register("polished_phonolite_stairs", () -> new StrataStairsBlock(POLISHED_PHONOLITE.get().getDefaultState(), Block.Properties.from(POLISHED_PHONOLITE.get()))); /*Metamorphic Rocks*/ //Amphibolite - public static final RegistryObject AMPHIBOLITE = BLOCKS.register("amphibolite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject AMPHIBOLITE = BLOCKS.register("amphibolite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject AMPHIBOLITE_SLAB = BLOCKS.register("amphibolite_slab", () -> new SlabBlock(Block.Properties.from(AMPHIBOLITE.get()))); public static final RegistryObject AMPHIBOLITE_STAIRS = BLOCKS.register("amphibolite_stairs", () -> new StrataStairsBlock(AMPHIBOLITE.get().getDefaultState(), Block.Properties.from(AMPHIBOLITE.get()))); public static final RegistryObject AMPHIBOLITE_WALL = BLOCKS.register("amphibolite_wall", () -> new WallBlock(Block.Properties.from(AMPHIBOLITE.get()))); //Cobblestone - public static final RegistryObject AMPHIBOLITE_COBBLESTONE = BLOCKS.register("amphibolite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject AMPHIBOLITE_COBBLESTONE = BLOCKS.register("amphibolite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject AMPHIBOLITE_COBBLESTONE_SLAB = BLOCKS.register("amphibolite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(AMPHIBOLITE_COBBLESTONE.get()))); public static final RegistryObject AMPHIBOLITE_COBBLESTONE_STAIRS = BLOCKS.register("amphibolite_cobblestone_stairs", () -> new StrataStairsBlock(AMPHIBOLITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(AMPHIBOLITE_COBBLESTONE.get()))); public static final RegistryObject AMPHIBOLITE_COBBLESTONE_WALL = BLOCKS.register("amphibolite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(AMPHIBOLITE_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_AMPHIBOLITE_COBBLESTONE = BLOCKS.register("mossy_amphibolite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_AMPHIBOLITE_COBBLESTONE = BLOCKS.register("mossy_amphibolite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_AMPHIBOLITE_COBBLESTONE_SLAB = BLOCKS.register("mossy_amphibolite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_AMPHIBOLITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_AMPHIBOLITE_COBBLESTONE_STAIRS = BLOCKS.register("mossy_amphibolite_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_AMPHIBOLITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_AMPHIBOLITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_AMPHIBOLITE_COBBLESTONE_WALL = BLOCKS.register("mossy_amphibolite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_AMPHIBOLITE_COBBLESTONE.get()))); @@ -461,10 +461,10 @@ public class BlockList public static final RegistryObject AMPHIBOLITE_BUTTON = BLOCKS.register("amphibolite_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject AMPHIBOLITE_PRESSURE_PLATE = BLOCKS.register("amphibolite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject AMPHIBOLITE_PRESSURE_PLATE = BLOCKS.register("amphibolite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject AMPHIBOLITE_BRICKS = BLOCKS.register("amphibolite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject AMPHIBOLITE_BRICKS = BLOCKS.register("amphibolite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject AMPHIBOLITE_BRICK_SLAB = BLOCKS.register("amphibolite_brick_slab", () -> new SlabBlock(Block.Properties.from(AMPHIBOLITE_BRICKS.get()))); public static final RegistryObject AMPHIBOLITE_BRICK_STAIRS = BLOCKS.register("amphibolite_brick_stairs", () -> new StrataStairsBlock(AMPHIBOLITE_BRICKS.get().getDefaultState(), Block.Properties.from(AMPHIBOLITE_BRICKS.get()))); public static final RegistryObject AMPHIBOLITE_BRICK_WALL = BLOCKS.register("amphibolite_brick_wall", () -> new WallBlock(Block.Properties.from(AMPHIBOLITE_BRICKS.get()))); @@ -476,24 +476,24 @@ public class BlockList public static final RegistryObject MOSSY_AMPHIBOLITE_BRICK_WALL = BLOCKS.register("mossy_amphibolite_brick_wall", () -> new WallBlock(Block.Properties.from(AMPHIBOLITE_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_AMPHIBOLITE = BLOCKS.register("polished_amphibolite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_AMPHIBOLITE = BLOCKS.register("polished_amphibolite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_AMPHIBOLITE_SLAB = BLOCKS.register("polished_amphibolite_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_AMPHIBOLITE.get()))); public static final RegistryObject POLISHED_AMPHIBOLITE_STAIRS = BLOCKS.register("polished_amphibolite_stairs", () -> new StrataStairsBlock(POLISHED_AMPHIBOLITE.get().getDefaultState(), Block.Properties.from(POLISHED_AMPHIBOLITE.get()))); //Cataclasite - public static final RegistryObject CATACLASITE = BLOCKS.register("cataclasite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject CATACLASITE = BLOCKS.register("cataclasite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject CATACLASITE_SLAB = BLOCKS.register("cataclasite_slab", () -> new SlabBlock(Block.Properties.from(CATACLASITE.get()))); public static final RegistryObject CATACLASITE_STAIRS = BLOCKS.register("cataclasite_stairs", () -> new StrataStairsBlock(CATACLASITE.get().getDefaultState(), Block.Properties.from(CATACLASITE.get()))); public static final RegistryObject CATACLASITE_WALL = BLOCKS.register("cataclasite_wall", () -> new WallBlock(Block.Properties.from(CATACLASITE.get()))); //Cobblestone - public static final RegistryObject CATACLASITE_COBBLESTONE = BLOCKS.register("cataclasite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject CATACLASITE_COBBLESTONE = BLOCKS.register("cataclasite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject CATACLASITE_COBBLESTONE_SLAB = BLOCKS.register("cataclasite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(CATACLASITE_COBBLESTONE.get()))); public static final RegistryObject CATACLASITE_COBBLESTONE_STAIRS = BLOCKS.register("cataclasite_cobblestone_stairs", () -> new StrataStairsBlock(CATACLASITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(CATACLASITE_COBBLESTONE.get()))); public static final RegistryObject CATACLASITE_COBBLESTONE_WALL = BLOCKS.register("cataclasite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(CATACLASITE_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_CATACLASITE_COBBLESTONE = BLOCKS.register("mossy_cataclasite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_CATACLASITE_COBBLESTONE = BLOCKS.register("mossy_cataclasite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_CATACLASITE_COBBLESTONE_SLAB = BLOCKS.register("mossy_cataclasite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_CATACLASITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_CATACLASITE_COBBLESTONE_STAIRS = BLOCKS.register("mossy_cataclasite_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_CATACLASITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_CATACLASITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_CATACLASITE_COBBLESTONE_WALL = BLOCKS.register("mossy_cataclasite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_CATACLASITE_COBBLESTONE.get()))); @@ -502,10 +502,10 @@ public class BlockList public static final RegistryObject CATACLASITE_BUTTON = BLOCKS.register("cataclasite_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject CATACLASITE_PRESSURE_PLATE = BLOCKS.register("cataclasite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject CATACLASITE_PRESSURE_PLATE = BLOCKS.register("cataclasite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject CATACLASITE_BRICKS = BLOCKS.register("cataclasite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject CATACLASITE_BRICKS = BLOCKS.register("cataclasite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject CATACLASITE_BRICK_SLAB = BLOCKS.register("cataclasite_brick_slab", () -> new SlabBlock(Block.Properties.from(CATACLASITE_BRICKS.get()))); public static final RegistryObject CATACLASITE_BRICK_STAIRS = BLOCKS.register("cataclasite_brick_stairs", () -> new StrataStairsBlock(CATACLASITE_BRICKS.get().getDefaultState(), Block.Properties.from(CATACLASITE_BRICKS.get()))); public static final RegistryObject CATACLASITE_BRICK_WALL = BLOCKS.register("cataclasite_brick_wall", () -> new WallBlock(Block.Properties.from(CATACLASITE_BRICKS.get()))); @@ -517,24 +517,24 @@ public class BlockList public static final RegistryObject MOSSY_CATACLASITE_BRICK_WALL = BLOCKS.register("mossy_cataclasite_brick_wall", () -> new WallBlock(Block.Properties.from(CATACLASITE_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_CATACLASITE = BLOCKS.register("polished_cataclasite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_CATACLASITE = BLOCKS.register("polished_cataclasite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_CATACLASITE_SLAB = BLOCKS.register("polished_cataclasite_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_CATACLASITE.get()))); public static final RegistryObject POLISHED_CATACLASITE_STAIRS = BLOCKS.register("polished_cataclasite_stairs", () -> new StrataStairsBlock(POLISHED_CATACLASITE.get().getDefaultState(), Block.Properties.from(POLISHED_CATACLASITE.get()))); //Eclogite - public static final RegistryObject ECLOGITE = BLOCKS.register("eclogite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject ECLOGITE = BLOCKS.register("eclogite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject ECLOGITE_SLAB = BLOCKS.register("eclogite_slab", () -> new SlabBlock(Block.Properties.from(ECLOGITE.get()))); public static final RegistryObject ECLOGITE_STAIRS = BLOCKS.register("eclogite_stairs", () -> new StrataStairsBlock(ECLOGITE.get().getDefaultState(), Block.Properties.from(ECLOGITE.get()))); public static final RegistryObject ECLOGITE_WALL = BLOCKS.register("eclogite_wall", () -> new WallBlock(Block.Properties.from(ECLOGITE.get()))); //Cobblestone - public static final RegistryObject ECLOGITE_COBBLESTONE = BLOCKS.register("eclogite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject ECLOGITE_COBBLESTONE = BLOCKS.register("eclogite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject ECLOGITE_COBBLESTONE_SLAB = BLOCKS.register("eclogite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(ECLOGITE_COBBLESTONE.get()))); public static final RegistryObject ECLOGITE_COBBLESTONE_STAIRS = BLOCKS.register("eclogite_cobblestone_stairs", () -> new StrataStairsBlock(ECLOGITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(ECLOGITE_COBBLESTONE.get()))); public static final RegistryObject ECLOGITE_COBBLESTONE_WALL = BLOCKS.register("eclogite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(ECLOGITE_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_ECLOGITE_COBBLESTONE = BLOCKS.register("mossy_eclogite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_ECLOGITE_COBBLESTONE = BLOCKS.register("mossy_eclogite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_ECLOGITE_COBBLESTONE_SLAB = BLOCKS.register("mossy_eclogite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_ECLOGITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_ECLOGITE_COBBLESTONE_STAIRS = BLOCKS.register("mossy_eclogite_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_ECLOGITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_ECLOGITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_ECLOGITE_COBBLESTONE_WALL = BLOCKS.register("mossy_eclogite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_ECLOGITE_COBBLESTONE.get()))); @@ -543,10 +543,10 @@ public class BlockList public static final RegistryObject ECLOGITE_BUTTON = BLOCKS.register("eclogite_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject ECLOGITE_PRESSURE_PLATE = BLOCKS.register("eclogite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject ECLOGITE_PRESSURE_PLATE = BLOCKS.register("eclogite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject ECLOGITE_BRICKS = BLOCKS.register("eclogite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject ECLOGITE_BRICKS = BLOCKS.register("eclogite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject ECLOGITE_BRICK_SLAB = BLOCKS.register("eclogite_brick_slab", () -> new SlabBlock(Block.Properties.from(ECLOGITE_BRICKS.get()))); public static final RegistryObject ECLOGITE_BRICK_STAIRS = BLOCKS.register("eclogite_brick_stairs", () -> new StrataStairsBlock(ECLOGITE_BRICKS.get().getDefaultState(), Block.Properties.from(ECLOGITE_BRICKS.get()))); public static final RegistryObject ECLOGITE_BRICK_WALL = BLOCKS.register("eclogite_brick_wall", () -> new WallBlock(Block.Properties.from(ECLOGITE_BRICKS.get()))); @@ -558,24 +558,24 @@ public class BlockList public static final RegistryObject MOSSY_ECLOGITE_BRICK_WALL = BLOCKS.register("mossy_eclogite_brick_wall", () -> new WallBlock(Block.Properties.from(ECLOGITE_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_ECLOGITE = BLOCKS.register("polished_eclogite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_ECLOGITE = BLOCKS.register("polished_eclogite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_ECLOGITE_SLAB = BLOCKS.register("polished_eclogite_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_ECLOGITE.get()))); public static final RegistryObject POLISHED_ECLOGITE_STAIRS = BLOCKS.register("polished_eclogite_stairs", () -> new StrataStairsBlock(POLISHED_ECLOGITE.get().getDefaultState(), Block.Properties.from(POLISHED_ECLOGITE.get()))); //Gneiss - public static final RegistryObject GNEISS = BLOCKS.register("gneiss", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject GNEISS = BLOCKS.register("gneiss", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject GNEISS_SLAB = BLOCKS.register("gneiss_slab", () -> new SlabBlock(Block.Properties.from(GNEISS.get()))); public static final RegistryObject GNEISS_STAIRS = BLOCKS.register("gneiss_stairs", () -> new StrataStairsBlock(GNEISS.get().getDefaultState(), Block.Properties.from(GNEISS.get()))); public static final RegistryObject GNEISS_WALL = BLOCKS.register("gneiss_wall", () -> new WallBlock(Block.Properties.from(GNEISS.get()))); //Cobblestone - public static final RegistryObject GNEISS_COBBLESTONE = BLOCKS.register("gneiss_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject GNEISS_COBBLESTONE = BLOCKS.register("gneiss_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject GNEISS_COBBLESTONE_SLAB = BLOCKS.register("gneiss_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(GNEISS_COBBLESTONE.get()))); public static final RegistryObject GNEISS_COBBLESTONE_STAIRS = BLOCKS.register("gneiss_cobblestone_stairs", () -> new StrataStairsBlock(GNEISS_COBBLESTONE.get().getDefaultState(), Block.Properties.from(GNEISS_COBBLESTONE.get()))); public static final RegistryObject GNEISS_COBBLESTONE_WALL = BLOCKS.register("gneiss_cobblestone_wall", () -> new WallBlock(Block.Properties.from(GNEISS_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_GNEISS_COBBLESTONE = BLOCKS.register("mossy_gneiss_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_GNEISS_COBBLESTONE = BLOCKS.register("mossy_gneiss_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_GNEISS_COBBLESTONE_SLAB = BLOCKS.register("mossy_gneiss_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_GNEISS_COBBLESTONE.get()))); public static final RegistryObject MOSSY_GNEISS_COBBLESTONE_STAIRS = BLOCKS.register("mossy_gneiss_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_GNEISS_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_GNEISS_COBBLESTONE.get()))); public static final RegistryObject MOSSY_GNEISS_COBBLESTONE_WALL = BLOCKS.register("mossy_gneiss_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_GNEISS_COBBLESTONE.get()))); @@ -584,10 +584,10 @@ public class BlockList public static final RegistryObject GNEISS_BUTTON = BLOCKS.register("gneiss_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject GNEISS_PRESSURE_PLATE = BLOCKS.register("gneiss_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject GNEISS_PRESSURE_PLATE = BLOCKS.register("gneiss_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject GNEISS_BRICKS = BLOCKS.register("gneiss_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject GNEISS_BRICKS = BLOCKS.register("gneiss_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject GNEISS_BRICK_SLAB = BLOCKS.register("gneiss_brick_slab", () -> new SlabBlock(Block.Properties.from(GNEISS_BRICKS.get()))); public static final RegistryObject GNEISS_BRICK_STAIRS = BLOCKS.register("gneiss_brick_stairs", () -> new StrataStairsBlock(GNEISS_BRICKS.get().getDefaultState(), Block.Properties.from(GNEISS_BRICKS.get()))); public static final RegistryObject GNEISS_BRICK_WALL = BLOCKS.register("gneiss_brick_wall", () -> new WallBlock(Block.Properties.from(GNEISS_BRICKS.get()))); @@ -599,24 +599,24 @@ public class BlockList public static final RegistryObject MOSSY_GNEISS_BRICK_WALL = BLOCKS.register("mossy_gneiss_brick_wall", () -> new WallBlock(Block.Properties.from(GNEISS_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_GNEISS = BLOCKS.register("polished_gneiss", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_GNEISS = BLOCKS.register("polished_gneiss", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_GNEISS_SLAB = BLOCKS.register("polished_gneiss_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_GNEISS.get()))); public static final RegistryObject POLISHED_GNEISS_STAIRS = BLOCKS.register("polished_gneiss_stairs", () -> new StrataStairsBlock(POLISHED_GNEISS.get().getDefaultState(), Block.Properties.from(POLISHED_GNEISS.get()))); //Marble - public static final RegistryObject MARBLE = BLOCKS.register("marble", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MARBLE = BLOCKS.register("marble", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MARBLE_SLAB = BLOCKS.register("marble_slab", () -> new SlabBlock(Block.Properties.from(MARBLE.get()))); public static final RegistryObject MARBLE_STAIRS = BLOCKS.register("marble_stairs", () -> new StrataStairsBlock(MARBLE.get().getDefaultState(), Block.Properties.from(MARBLE.get()))); public static final RegistryObject MARBLE_WALL = BLOCKS.register("marble_wall", () -> new WallBlock(Block.Properties.from(MARBLE.get()))); //Cobblestone - public static final RegistryObject MARBLE_COBBLESTONE = BLOCKS.register("marble_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MARBLE_COBBLESTONE = BLOCKS.register("marble_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MARBLE_COBBLESTONE_SLAB = BLOCKS.register("marble_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MARBLE_COBBLESTONE.get()))); public static final RegistryObject MARBLE_COBBLESTONE_STAIRS = BLOCKS.register("marble_cobblestone_stairs", () -> new StrataStairsBlock(MARBLE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MARBLE_COBBLESTONE.get()))); public static final RegistryObject MARBLE_COBBLESTONE_WALL = BLOCKS.register("marble_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MARBLE_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_MARBLE_COBBLESTONE = BLOCKS.register("mossy_marble_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_MARBLE_COBBLESTONE = BLOCKS.register("mossy_marble_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_MARBLE_COBBLESTONE_SLAB = BLOCKS.register("mossy_marble_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_MARBLE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_MARBLE_COBBLESTONE_STAIRS = BLOCKS.register("mossy_marble_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_MARBLE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_MARBLE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_MARBLE_COBBLESTONE_WALL = BLOCKS.register("mossy_marble_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_MARBLE_COBBLESTONE.get()))); @@ -625,10 +625,10 @@ public class BlockList public static final RegistryObject MARBLE_BUTTON = BLOCKS.register("marble_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject MARBLE_PRESSURE_PLATE = BLOCKS.register("marble_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject MARBLE_PRESSURE_PLATE = BLOCKS.register("marble_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject MARBLE_BRICKS = BLOCKS.register("marble_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MARBLE_BRICKS = BLOCKS.register("marble_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MARBLE_BRICK_SLAB = BLOCKS.register("marble_brick_slab", () -> new SlabBlock(Block.Properties.from(MARBLE_BRICKS.get()))); public static final RegistryObject MARBLE_BRICK_STAIRS = BLOCKS.register("marble_brick_stairs", () -> new StrataStairsBlock(MARBLE_BRICKS.get().getDefaultState(), Block.Properties.from(MARBLE_BRICKS.get()))); public static final RegistryObject MARBLE_BRICK_WALL = BLOCKS.register("marble_brick_wall", () -> new WallBlock(Block.Properties.from(MARBLE_BRICKS.get()))); @@ -640,24 +640,24 @@ public class BlockList public static final RegistryObject MOSSY_MARBLE_BRICK_WALL = BLOCKS.register("mossy_marble_brick_wall", () -> new WallBlock(Block.Properties.from(MARBLE_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_MARBLE = BLOCKS.register("polished_marble", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_MARBLE = BLOCKS.register("polished_marble", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_MARBLE_SLAB = BLOCKS.register("polished_marble_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_MARBLE.get()))); public static final RegistryObject POLISHED_MARBLE_STAIRS = BLOCKS.register("polished_marble_stairs", () -> new StrataStairsBlock(POLISHED_MARBLE.get().getDefaultState(), Block.Properties.from(POLISHED_MARBLE.get()))); //Migmatite - public static final RegistryObject MIGMATITE = BLOCKS.register("migmatite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MIGMATITE = BLOCKS.register("migmatite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MIGMATITE_SLAB = BLOCKS.register("migmatite_slab", () -> new SlabBlock(Block.Properties.from(MIGMATITE.get()))); public static final RegistryObject MIGMATITE_STAIRS = BLOCKS.register("migmatite_stairs", () -> new StrataStairsBlock(MIGMATITE.get().getDefaultState(), Block.Properties.from(MIGMATITE.get()))); public static final RegistryObject MIGMATITE_WALL = BLOCKS.register("migmatite_wall", () -> new WallBlock(Block.Properties.from(MIGMATITE.get()))); //Cobblestone - public static final RegistryObject MIGMATITE_COBBLESTONE = BLOCKS.register("migmatite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MIGMATITE_COBBLESTONE = BLOCKS.register("migmatite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MIGMATITE_COBBLESTONE_SLAB = BLOCKS.register("migmatite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MIGMATITE_COBBLESTONE.get()))); public static final RegistryObject MIGMATITE_COBBLESTONE_STAIRS = BLOCKS.register("migmatite_cobblestone_stairs", () -> new StrataStairsBlock(MIGMATITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MIGMATITE_COBBLESTONE.get()))); public static final RegistryObject MIGMATITE_COBBLESTONE_WALL = BLOCKS.register("migmatite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MIGMATITE_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_MIGMATITE_COBBLESTONE = BLOCKS.register("mossy_migmatite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_MIGMATITE_COBBLESTONE = BLOCKS.register("mossy_migmatite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_MIGMATITE_COBBLESTONE_SLAB = BLOCKS.register("mossy_migmatite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_MIGMATITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_MIGMATITE_COBBLESTONE_STAIRS = BLOCKS.register("mossy_migmatite_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_MIGMATITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_MIGMATITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_MIGMATITE_COBBLESTONE_WALL = BLOCKS.register("mossy_migmatite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_MIGMATITE_COBBLESTONE.get()))); @@ -666,10 +666,10 @@ public class BlockList public static final RegistryObject MIGMATITE_BUTTON = BLOCKS.register("migmatite_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject MIGMATITE_PRESSURE_PLATE = BLOCKS.register("migmatite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject MIGMATITE_PRESSURE_PLATE = BLOCKS.register("migmatite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject MIGMATITE_BRICKS = BLOCKS.register("migmatite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MIGMATITE_BRICKS = BLOCKS.register("migmatite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MIGMATITE_BRICK_SLAB = BLOCKS.register("migmatite_brick_slab", () -> new SlabBlock(Block.Properties.from(MIGMATITE_BRICKS.get()))); public static final RegistryObject MIGMATITE_BRICK_STAIRS = BLOCKS.register("migmatite_brick_stairs", () -> new StrataStairsBlock(MIGMATITE_BRICKS.get().getDefaultState(), Block.Properties.from(MIGMATITE_BRICKS.get()))); public static final RegistryObject MIGMATITE_BRICK_WALL = BLOCKS.register("migmatite_brick_wall", () -> new WallBlock(Block.Properties.from(MIGMATITE_BRICKS.get()))); @@ -681,24 +681,24 @@ public class BlockList public static final RegistryObject MOSSY_MIGMATITE_BRICK_WALL = BLOCKS.register("mossy_migmatite_brick_wall", () -> new WallBlock(Block.Properties.from(MIGMATITE_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_MIGMATITE = BLOCKS.register("polished_migmatite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_MIGMATITE = BLOCKS.register("polished_migmatite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_MIGMATITE_SLAB = BLOCKS.register("polished_migmatite_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_MIGMATITE.get()))); public static final RegistryObject POLISHED_MIGMATITE_STAIRS = BLOCKS.register("polished_migmatite_stairs", () -> new StrataStairsBlock(POLISHED_MIGMATITE.get().getDefaultState(), Block.Properties.from(POLISHED_MIGMATITE.get()))); //Schist - public static final RegistryObject SCHIST = BLOCKS.register("schist", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject SCHIST = BLOCKS.register("schist", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject SCHIST_SLAB = BLOCKS.register("schist_slab", () -> new SlabBlock(Block.Properties.from(SCHIST.get()))); public static final RegistryObject SCHIST_STAIRS = BLOCKS.register("schist_stairs", () -> new StrataStairsBlock(SCHIST.get().getDefaultState(), Block.Properties.from(SCHIST.get()))); public static final RegistryObject SCHIST_WALL = BLOCKS.register("schist_wall", () -> new WallBlock(Block.Properties.from(SCHIST.get()))); //Cobblestone - public static final RegistryObject SCHIST_COBBLESTONE = BLOCKS.register("schist_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject SCHIST_COBBLESTONE = BLOCKS.register("schist_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject SCHIST_COBBLESTONE_SLAB = BLOCKS.register("schist_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(SCHIST_COBBLESTONE.get()))); public static final RegistryObject SCHIST_COBBLESTONE_STAIRS = BLOCKS.register("schist_cobblestone_stairs", () -> new StrataStairsBlock(SCHIST_COBBLESTONE.get().getDefaultState(), Block.Properties.from(SCHIST_COBBLESTONE.get()))); public static final RegistryObject SCHIST_COBBLESTONE_WALL = BLOCKS.register("schist_cobblestone_wall", () -> new WallBlock(Block.Properties.from(SCHIST_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_SCHIST_COBBLESTONE = BLOCKS.register("mossy_schist_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_SCHIST_COBBLESTONE = BLOCKS.register("mossy_schist_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_SCHIST_COBBLESTONE_SLAB = BLOCKS.register("mossy_schist_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_SCHIST_COBBLESTONE.get()))); public static final RegistryObject MOSSY_SCHIST_COBBLESTONE_STAIRS = BLOCKS.register("mossy_schist_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_SCHIST_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_SCHIST_COBBLESTONE.get()))); public static final RegistryObject MOSSY_SCHIST_COBBLESTONE_WALL = BLOCKS.register("mossy_schist_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_SCHIST_COBBLESTONE.get()))); @@ -707,10 +707,10 @@ public class BlockList public static final RegistryObject SCHIST_BUTTON = BLOCKS.register("schist_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject SCHIST_PRESSURE_PLATE = BLOCKS.register("schist_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject SCHIST_PRESSURE_PLATE = BLOCKS.register("schist_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject SCHIST_BRICKS = BLOCKS.register("schist_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject SCHIST_BRICKS = BLOCKS.register("schist_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject SCHIST_BRICK_SLAB = BLOCKS.register("schist_brick_slab", () -> new SlabBlock(Block.Properties.from(SCHIST_BRICKS.get()))); public static final RegistryObject SCHIST_BRICK_STAIRS = BLOCKS.register("schist_brick_stairs", () -> new StrataStairsBlock(SCHIST_BRICKS.get().getDefaultState(), Block.Properties.from(SCHIST_BRICKS.get()))); public static final RegistryObject SCHIST_BRICK_WALL = BLOCKS.register("schist_brick_wall", () -> new WallBlock(Block.Properties.from(SCHIST_BRICKS.get()))); @@ -722,24 +722,24 @@ public class BlockList public static final RegistryObject MOSSY_SCHIST_BRICK_WALL = BLOCKS.register("mossy_schist_brick_wall", () -> new WallBlock(Block.Properties.from(SCHIST_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_SCHIST = BLOCKS.register("polished_schist", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_SCHIST = BLOCKS.register("polished_schist", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_SCHIST_SLAB = BLOCKS.register("polished_schist_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_SCHIST.get()))); public static final RegistryObject POLISHED_SCHIST_STAIRS = BLOCKS.register("polished_schist_stairs", () -> new StrataStairsBlock(POLISHED_SCHIST.get().getDefaultState(), Block.Properties.from(POLISHED_SCHIST.get()))); //Slate - public static final RegistryObject SLATE = BLOCKS.register("slate", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject SLATE = BLOCKS.register("slate", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject SLATE_SLAB = BLOCKS.register("slate_slab", () -> new SlabBlock(Block.Properties.from(SLATE.get()))); public static final RegistryObject SLATE_STAIRS = BLOCKS.register("slate_stairs", () -> new StrataStairsBlock(SLATE.get().getDefaultState(), Block.Properties.from(SLATE.get()))); public static final RegistryObject SLATE_WALL = BLOCKS.register("slate_wall", () -> new WallBlock(Block.Properties.from(SLATE.get()))); //Cobblestone - public static final RegistryObject SLATE_COBBLESTONE = BLOCKS.register("slate_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject SLATE_COBBLESTONE = BLOCKS.register("slate_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject SLATE_COBBLESTONE_SLAB = BLOCKS.register("slate_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(SLATE_COBBLESTONE.get()))); public static final RegistryObject SLATE_COBBLESTONE_STAIRS = BLOCKS.register("slate_cobblestone_stairs", () -> new StrataStairsBlock(SLATE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(SLATE_COBBLESTONE.get()))); public static final RegistryObject SLATE_COBBLESTONE_WALL = BLOCKS.register("slate_cobblestone_wall", () -> new WallBlock(Block.Properties.from(SLATE_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_SLATE_COBBLESTONE = BLOCKS.register("mossy_slate_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_SLATE_COBBLESTONE = BLOCKS.register("mossy_slate_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_SLATE_COBBLESTONE_SLAB = BLOCKS.register("mossy_slate_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_SLATE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_SLATE_COBBLESTONE_STAIRS = BLOCKS.register("mossy_slate_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_SLATE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_SLATE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_SLATE_COBBLESTONE_WALL = BLOCKS.register("mossy_slate_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_SLATE_COBBLESTONE.get()))); @@ -748,10 +748,10 @@ public class BlockList public static final RegistryObject SLATE_BUTTON = BLOCKS.register("slate_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject SLATE_PRESSURE_PLATE = BLOCKS.register("slate_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject SLATE_PRESSURE_PLATE = BLOCKS.register("slate_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject SLATE_BRICKS = BLOCKS.register("slate_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject SLATE_BRICKS = BLOCKS.register("slate_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject SLATE_BRICK_SLAB = BLOCKS.register("slate_brick_slab", () -> new SlabBlock(Block.Properties.from(SLATE_BRICKS.get()))); public static final RegistryObject SLATE_BRICK_STAIRS = BLOCKS.register("slate_brick_stairs", () -> new StrataStairsBlock(SLATE_BRICKS.get().getDefaultState(), Block.Properties.from(SLATE_BRICKS.get()))); public static final RegistryObject SLATE_BRICK_WALL = BLOCKS.register("slate_brick_wall", () -> new WallBlock(Block.Properties.from(SLATE_BRICKS.get()))); @@ -763,24 +763,24 @@ public class BlockList public static final RegistryObject MOSSY_SLATE_BRICK_WALL = BLOCKS.register("mossy_slate_brick_wall", () -> new WallBlock(Block.Properties.from(SLATE_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_SLATE = BLOCKS.register("polished_slate", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_SLATE = BLOCKS.register("polished_slate", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_SLATE_SLAB = BLOCKS.register("polished_slate_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_SLATE.get()))); public static final RegistryObject POLISHED_SLATE_STAIRS = BLOCKS.register("polished_slate_stairs", () -> new StrataStairsBlock(POLISHED_SLATE.get().getDefaultState(), Block.Properties.from(POLISHED_SLATE.get()))); //Soapstone - public static final RegistryObject SOAPSTONE = BLOCKS.register("soapstone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject SOAPSTONE = BLOCKS.register("soapstone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject SOAPSTONE_SLAB = BLOCKS.register("soapstone_slab", () -> new SlabBlock(Block.Properties.from(SOAPSTONE.get()))); public static final RegistryObject SOAPSTONE_STAIRS = BLOCKS.register("soapstone_stairs", () -> new StrataStairsBlock(SOAPSTONE.get().getDefaultState(), Block.Properties.from(SOAPSTONE.get()))); public static final RegistryObject SOAPSTONE_WALL = BLOCKS.register("soapstone_wall", () -> new WallBlock(Block.Properties.from(SOAPSTONE.get()))); //Cobblestone - public static final RegistryObject SOAPSTONE_COBBLESTONE = BLOCKS.register("soapstone_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject SOAPSTONE_COBBLESTONE = BLOCKS.register("soapstone_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject SOAPSTONE_COBBLESTONE_SLAB = BLOCKS.register("soapstone_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(SOAPSTONE_COBBLESTONE.get()))); public static final RegistryObject SOAPSTONE_COBBLESTONE_STAIRS = BLOCKS.register("soapstone_cobblestone_stairs", () -> new StrataStairsBlock(SOAPSTONE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(SOAPSTONE_COBBLESTONE.get()))); public static final RegistryObject SOAPSTONE_COBBLESTONE_WALL = BLOCKS.register("soapstone_cobblestone_wall", () -> new WallBlock(Block.Properties.from(SOAPSTONE_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_SOAPSTONE_COBBLESTONE = BLOCKS.register("mossy_soapstone_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_SOAPSTONE_COBBLESTONE = BLOCKS.register("mossy_soapstone_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_SOAPSTONE_COBBLESTONE_SLAB = BLOCKS.register("mossy_soapstone_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_SOAPSTONE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_SOAPSTONE_COBBLESTONE_STAIRS = BLOCKS.register("mossy_soapstone_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_SOAPSTONE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_SOAPSTONE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_SOAPSTONE_COBBLESTONE_WALL = BLOCKS.register("mossy_soapstone_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_SOAPSTONE_COBBLESTONE.get()))); @@ -789,10 +789,10 @@ public class BlockList public static final RegistryObject SOAPSTONE_BUTTON = BLOCKS.register("soapstone_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject SOAPSTONE_PRESSURE_PLATE = BLOCKS.register("soapstone_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject SOAPSTONE_PRESSURE_PLATE = BLOCKS.register("soapstone_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject SOAPSTONE_BRICKS = BLOCKS.register("soapstone_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject SOAPSTONE_BRICKS = BLOCKS.register("soapstone_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject SOAPSTONE_BRICK_SLAB = BLOCKS.register("soapstone_brick_slab", () -> new SlabBlock(Block.Properties.from(SOAPSTONE_BRICKS.get()))); public static final RegistryObject SOAPSTONE_BRICK_STAIRS = BLOCKS.register("soapstone_brick_stairs", () -> new StrataStairsBlock(SOAPSTONE_BRICKS.get().getDefaultState(), Block.Properties.from(SOAPSTONE_BRICKS.get()))); public static final RegistryObject SOAPSTONE_BRICK_WALL = BLOCKS.register("soapstone_brick_wall", () -> new WallBlock(Block.Properties.from(SOAPSTONE_BRICKS.get()))); @@ -804,24 +804,24 @@ public class BlockList public static final RegistryObject MOSSY_SOAPSTONE_BRICK_WALL = BLOCKS.register("mossy_soapstone_brick_wall", () -> new WallBlock(Block.Properties.from(SOAPSTONE_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_SOAPSTONE = BLOCKS.register("polished_soapstone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_SOAPSTONE = BLOCKS.register("polished_soapstone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_SOAPSTONE_SLAB = BLOCKS.register("polished_soapstone_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_SOAPSTONE.get()))); public static final RegistryObject POLISHED_SOAPSTONE_STAIRS = BLOCKS.register("polished_soapstone_stairs", () -> new StrataStairsBlock(POLISHED_SOAPSTONE.get().getDefaultState(), Block.Properties.from(POLISHED_SOAPSTONE.get()))); //Phyllite - public static final RegistryObject PHYLLITE = BLOCKS.register("phyllite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject PHYLLITE = BLOCKS.register("phyllite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject PHYLLITE_SLAB = BLOCKS.register("phyllite_slab", () -> new SlabBlock(Block.Properties.from(PHYLLITE.get()))); public static final RegistryObject PHYLLITE_STAIRS = BLOCKS.register("phyllite_stairs", () -> new StrataStairsBlock(PHYLLITE.get().getDefaultState(), Block.Properties.from(PHYLLITE.get()))); public static final RegistryObject PHYLLITE_WALL = BLOCKS.register("phyllite_wall", () -> new WallBlock(Block.Properties.from(PHYLLITE.get()))); //Cobblestone - public static final RegistryObject PHYLLITE_COBBLESTONE = BLOCKS.register("phyllite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject PHYLLITE_COBBLESTONE = BLOCKS.register("phyllite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject PHYLLITE_COBBLESTONE_SLAB = BLOCKS.register("phyllite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(PHYLLITE_COBBLESTONE.get()))); public static final RegistryObject PHYLLITE_COBBLESTONE_STAIRS = BLOCKS.register("phyllite_cobblestone_stairs", () -> new StrataStairsBlock(PHYLLITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(PHYLLITE_COBBLESTONE.get()))); public static final RegistryObject PHYLLITE_COBBLESTONE_WALL = BLOCKS.register("phyllite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(PHYLLITE_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_PHYLLITE_COBBLESTONE = BLOCKS.register("mossy_phyllite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_PHYLLITE_COBBLESTONE = BLOCKS.register("mossy_phyllite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_PHYLLITE_COBBLESTONE_SLAB = BLOCKS.register("mossy_phyllite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_PHYLLITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_PHYLLITE_COBBLESTONE_STAIRS = BLOCKS.register("mossy_phyllite_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_PHYLLITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_PHYLLITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_PHYLLITE_COBBLESTONE_WALL = BLOCKS.register("mossy_phyllite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_PHYLLITE_COBBLESTONE.get()))); @@ -830,10 +830,10 @@ public class BlockList public static final RegistryObject PHYLLITE_BUTTON = BLOCKS.register("phyllite_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject PHYLLITE_PRESSURE_PLATE = BLOCKS.register("phyllite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject PHYLLITE_PRESSURE_PLATE = BLOCKS.register("phyllite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject PHYLLITE_BRICKS = BLOCKS.register("phyllite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject PHYLLITE_BRICKS = BLOCKS.register("phyllite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject PHYLLITE_BRICK_SLAB = BLOCKS.register("phyllite_brick_slab", () -> new SlabBlock(Block.Properties.from(PHYLLITE_BRICKS.get()))); public static final RegistryObject PHYLLITE_BRICK_STAIRS = BLOCKS.register("phyllite_brick_stairs", () -> new StrataStairsBlock(PHYLLITE_BRICKS.get().getDefaultState(), Block.Properties.from(PHYLLITE_BRICKS.get()))); public static final RegistryObject PHYLLITE_BRICK_WALL = BLOCKS.register("phyllite_brick_wall", () -> new WallBlock(Block.Properties.from(PHYLLITE_BRICKS.get()))); @@ -845,26 +845,26 @@ public class BlockList public static final RegistryObject MOSSY_PHYLLITE_BRICK_WALL = BLOCKS.register("mossy_phyllite_brick_wall", () -> new WallBlock(Block.Properties.from(PHYLLITE_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_PHYLLITE = BLOCKS.register("polished_phyllite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_PHYLLITE = BLOCKS.register("polished_phyllite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_PHYLLITE_SLAB = BLOCKS.register("polished_phyllite_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_PHYLLITE.get()))); public static final RegistryObject POLISHED_PHYLLITE_STAIRS = BLOCKS.register("polished_phyllite_stairs", () -> new StrataStairsBlock(POLISHED_PHYLLITE.get().getDefaultState(), Block.Properties.from(POLISHED_PHYLLITE.get()))); /*Sedimentary Rocks*/ //Argillite - public static final RegistryObject ARGILLITE = BLOCKS.register("argillite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject ARGILLITE = BLOCKS.register("argillite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject ARGILLITE_SLAB = BLOCKS.register("argillite_slab", () -> new SlabBlock(Block.Properties.from(ARGILLITE.get()))); public static final RegistryObject ARGILLITE_STAIRS = BLOCKS.register("argillite_stairs", () -> new StrataStairsBlock(ARGILLITE.get().getDefaultState(), Block.Properties.from(ARGILLITE.get()))); public static final RegistryObject ARGILLITE_WALL = BLOCKS.register("argillite_wall", () -> new WallBlock(Block.Properties.from(ARGILLITE.get()))); //Cobblestone - public static final RegistryObject ARGILLITE_COBBLESTONE = BLOCKS.register("argillite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject ARGILLITE_COBBLESTONE = BLOCKS.register("argillite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject ARGILLITE_COBBLESTONE_SLAB = BLOCKS.register("argillite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(ARGILLITE_COBBLESTONE.get()))); public static final RegistryObject ARGILLITE_COBBLESTONE_STAIRS = BLOCKS.register("argillite_cobblestone_stairs", () -> new StrataStairsBlock(ARGILLITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(ARGILLITE_COBBLESTONE.get()))); public static final RegistryObject ARGILLITE_COBBLESTONE_WALL = BLOCKS.register("argillite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(ARGILLITE_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_ARGILLITE_COBBLESTONE = BLOCKS.register("mossy_argillite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_ARGILLITE_COBBLESTONE = BLOCKS.register("mossy_argillite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_ARGILLITE_COBBLESTONE_SLAB = BLOCKS.register("mossy_argillite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_ARGILLITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_ARGILLITE_COBBLESTONE_STAIRS = BLOCKS.register("mossy_argillite_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_ARGILLITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_ARGILLITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_ARGILLITE_COBBLESTONE_WALL = BLOCKS.register("mossy_argillite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_ARGILLITE_COBBLESTONE.get()))); @@ -873,10 +873,10 @@ public class BlockList public static final RegistryObject ARGILLITE_BUTTON = BLOCKS.register("argillite_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject ARGILLITE_PRESSURE_PLATE = BLOCKS.register("argillite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject ARGILLITE_PRESSURE_PLATE = BLOCKS.register("argillite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject ARGILLITE_BRICKS = BLOCKS.register("argillite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject ARGILLITE_BRICKS = BLOCKS.register("argillite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject ARGILLITE_BRICK_SLAB = BLOCKS.register("argillite_brick_slab", () -> new SlabBlock(Block.Properties.from(ARGILLITE_BRICKS.get()))); public static final RegistryObject ARGILLITE_BRICK_STAIRS = BLOCKS.register("argillite_brick_stairs", () -> new StrataStairsBlock(ARGILLITE_BRICKS.get().getDefaultState(), Block.Properties.from(ARGILLITE_BRICKS.get()))); public static final RegistryObject ARGILLITE_BRICK_WALL = BLOCKS.register("argillite_brick_wall", () -> new WallBlock(Block.Properties.from(ARGILLITE_BRICKS.get()))); @@ -888,24 +888,24 @@ public class BlockList public static final RegistryObject MOSSY_ARGILLITE_BRICK_WALL = BLOCKS.register("mossy_argillite_brick_wall", () -> new WallBlock(Block.Properties.from(ARGILLITE_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_ARGILLITE = BLOCKS.register("polished_argillite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_ARGILLITE = BLOCKS.register("polished_argillite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_ARGILLITE_SLAB = BLOCKS.register("polished_argillite_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_ARGILLITE.get()))); public static final RegistryObject POLISHED_ARGILLITE_STAIRS = BLOCKS.register("polished_argillite_stairs", () -> new StrataStairsBlock(POLISHED_ARGILLITE.get().getDefaultState(), Block.Properties.from(POLISHED_ARGILLITE.get()))); //Arkose - public static final RegistryObject ARKOSE = BLOCKS.register("arkose", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject ARKOSE = BLOCKS.register("arkose", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject ARKOSE_SLAB = BLOCKS.register("arkose_slab", () -> new SlabBlock(Block.Properties.from(ARKOSE.get()))); public static final RegistryObject ARKOSE_STAIRS = BLOCKS.register("arkose_stairs", () -> new StrataStairsBlock(ARKOSE.get().getDefaultState(), Block.Properties.from(ARKOSE.get()))); public static final RegistryObject ARKOSE_WALL = BLOCKS.register("arkose_wall", () -> new WallBlock(Block.Properties.from(ARKOSE.get()))); //Cobblestone - public static final RegistryObject ARKOSE_COBBLESTONE = BLOCKS.register("arkose_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject ARKOSE_COBBLESTONE = BLOCKS.register("arkose_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject ARKOSE_COBBLESTONE_SLAB = BLOCKS.register("arkose_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(ARKOSE_COBBLESTONE.get()))); public static final RegistryObject ARKOSE_COBBLESTONE_STAIRS = BLOCKS.register("arkose_cobblestone_stairs", () -> new StrataStairsBlock(ARKOSE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(ARKOSE_COBBLESTONE.get()))); public static final RegistryObject ARKOSE_COBBLESTONE_WALL = BLOCKS.register("arkose_cobblestone_wall", () -> new WallBlock(Block.Properties.from(ARKOSE_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_ARKOSE_COBBLESTONE = BLOCKS.register("mossy_arkose_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_ARKOSE_COBBLESTONE = BLOCKS.register("mossy_arkose_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_ARKOSE_COBBLESTONE_SLAB = BLOCKS.register("mossy_arkose_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_ARKOSE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_ARKOSE_COBBLESTONE_STAIRS = BLOCKS.register("mossy_arkose_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_ARKOSE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_ARKOSE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_ARKOSE_COBBLESTONE_WALL = BLOCKS.register("mossy_arkose_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_ARKOSE_COBBLESTONE.get()))); @@ -914,10 +914,10 @@ public class BlockList public static final RegistryObject ARKOSE_BUTTON = BLOCKS.register("arkose_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject ARKOSE_PRESSURE_PLATE = BLOCKS.register("arkose_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject ARKOSE_PRESSURE_PLATE = BLOCKS.register("arkose_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject ARKOSE_BRICKS = BLOCKS.register("arkose_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject ARKOSE_BRICKS = BLOCKS.register("arkose_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject ARKOSE_BRICK_SLAB = BLOCKS.register("arkose_brick_slab", () -> new SlabBlock(Block.Properties.from(ARKOSE_BRICKS.get()))); public static final RegistryObject ARKOSE_BRICK_STAIRS = BLOCKS.register("arkose_brick_stairs", () -> new StrataStairsBlock(ARKOSE_BRICKS.get().getDefaultState(), Block.Properties.from(ARKOSE_BRICKS.get()))); public static final RegistryObject ARKOSE_BRICK_WALL = BLOCKS.register("arkose_brick_wall", () -> new WallBlock(Block.Properties.from(ARKOSE_BRICKS.get()))); @@ -929,24 +929,24 @@ public class BlockList public static final RegistryObject MOSSY_ARKOSE_BRICK_WALL = BLOCKS.register("mossy_arkose_brick_wall", () -> new WallBlock(Block.Properties.from(ARKOSE_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_ARKOSE = BLOCKS.register("polished_arkose", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_ARKOSE = BLOCKS.register("polished_arkose", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_ARKOSE_SLAB = BLOCKS.register("polished_arkose_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_ARKOSE.get()))); public static final RegistryObject POLISHED_ARKOSE_STAIRS = BLOCKS.register("polished_arkose_stairs", () -> new StrataStairsBlock(POLISHED_ARKOSE.get().getDefaultState(), Block.Properties.from(POLISHED_ARKOSE.get()))); //Breccia - public static final RegistryObject BRECCIA = BLOCKS.register("breccia", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject BRECCIA = BLOCKS.register("breccia", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject BRECCIA_SLAB = BLOCKS.register("breccia_slab", () -> new SlabBlock(Block.Properties.from(BRECCIA.get()))); public static final RegistryObject BRECCIA_STAIRS = BLOCKS.register("breccia_stairs", () -> new StrataStairsBlock(BRECCIA.get().getDefaultState(), Block.Properties.from(BRECCIA.get()))); public static final RegistryObject BRECCIA_WALL = BLOCKS.register("breccia_wall", () -> new WallBlock(Block.Properties.from(BRECCIA.get()))); //Cobblestone - public static final RegistryObject BRECCIA_COBBLESTONE = BLOCKS.register("breccia_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject BRECCIA_COBBLESTONE = BLOCKS.register("breccia_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject BRECCIA_COBBLESTONE_SLAB = BLOCKS.register("breccia_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(BRECCIA_COBBLESTONE.get()))); public static final RegistryObject BRECCIA_COBBLESTONE_STAIRS = BLOCKS.register("breccia_cobblestone_stairs", () -> new StrataStairsBlock(BRECCIA_COBBLESTONE.get().getDefaultState(), Block.Properties.from(BRECCIA_COBBLESTONE.get()))); public static final RegistryObject BRECCIA_COBBLESTONE_WALL = BLOCKS.register("breccia_cobblestone_wall", () -> new WallBlock(Block.Properties.from(BRECCIA_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_BRECCIA_COBBLESTONE = BLOCKS.register("mossy_breccia_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_BRECCIA_COBBLESTONE = BLOCKS.register("mossy_breccia_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_BRECCIA_COBBLESTONE_SLAB = BLOCKS.register("mossy_breccia_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_BRECCIA_COBBLESTONE.get()))); public static final RegistryObject MOSSY_BRECCIA_COBBLESTONE_STAIRS = BLOCKS.register("mossy_breccia_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_BRECCIA_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_BRECCIA_COBBLESTONE.get()))); public static final RegistryObject MOSSY_BRECCIA_COBBLESTONE_WALL = BLOCKS.register("mossy_breccia_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_BRECCIA_COBBLESTONE.get()))); @@ -955,10 +955,10 @@ public class BlockList public static final RegistryObject BRECCIA_BUTTON = BLOCKS.register("breccia_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject BRECCIA_PRESSURE_PLATE = BLOCKS.register("breccia_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject BRECCIA_PRESSURE_PLATE = BLOCKS.register("breccia_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject BRECCIA_BRICKS = BLOCKS.register("breccia_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject BRECCIA_BRICKS = BLOCKS.register("breccia_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject BRECCIA_BRICK_SLAB = BLOCKS.register("breccia_brick_slab", () -> new SlabBlock(Block.Properties.from(BRECCIA_BRICKS.get()))); public static final RegistryObject BRECCIA_BRICK_STAIRS = BLOCKS.register("breccia_brick_stairs", () -> new StrataStairsBlock(BRECCIA_BRICKS.get().getDefaultState(), Block.Properties.from(BRECCIA_BRICKS.get()))); public static final RegistryObject BRECCIA_BRICK_WALL = BLOCKS.register("breccia_brick_wall", () -> new WallBlock(Block.Properties.from(BRECCIA_BRICKS.get()))); @@ -970,24 +970,24 @@ public class BlockList public static final RegistryObject MOSSY_BRECCIA_BRICK_WALL = BLOCKS.register("mossy_breccia_brick_wall", () -> new WallBlock(Block.Properties.from(BRECCIA_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_BRECCIA = BLOCKS.register("polished_breccia", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_BRECCIA = BLOCKS.register("polished_breccia", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_BRECCIA_SLAB = BLOCKS.register("polished_breccia_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_BRECCIA.get()))); public static final RegistryObject POLISHED_BRECCIA_STAIRS = BLOCKS.register("polished_breccia_stairs", () -> new StrataStairsBlock(POLISHED_BRECCIA.get().getDefaultState(), Block.Properties.from(POLISHED_BRECCIA.get()))); //Chalk - public static final RegistryObject CHALK = BLOCKS.register("chalk", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(0.4f, 0.4f))); + public static final RegistryObject CHALK = BLOCKS.register("chalk", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(0.4f, 0.4f))); public static final RegistryObject CHALK_SLAB = BLOCKS.register("chalk_slab", () -> new SlabBlock(Block.Properties.from(CHALK.get()))); public static final RegistryObject CHALK_STAIRS = BLOCKS.register("chalk_stairs", () -> new StrataStairsBlock(CHALK.get().getDefaultState(), Block.Properties.from(CHALK.get()))); public static final RegistryObject CHALK_WALL = BLOCKS.register("chalk_wall", () -> new WallBlock(Block.Properties.from(CHALK.get()))); //Cobblestone - public static final RegistryObject CHALK_COBBLESTONE = BLOCKS.register("chalk_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.4f, 1.4f))); + public static final RegistryObject CHALK_COBBLESTONE = BLOCKS.register("chalk_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.4f, 1.4f))); public static final RegistryObject CHALK_COBBLESTONE_SLAB = BLOCKS.register("chalk_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(CHALK_COBBLESTONE.get()))); public static final RegistryObject CHALK_COBBLESTONE_STAIRS = BLOCKS.register("chalk_cobblestone_stairs", () -> new StrataStairsBlock(CHALK_COBBLESTONE.get().getDefaultState(), Block.Properties.from(CHALK_COBBLESTONE.get()))); public static final RegistryObject CHALK_COBBLESTONE_WALL = BLOCKS.register("chalk_cobblestone_wall", () -> new WallBlock(Block.Properties.from(CHALK_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_CHALK_COBBLESTONE = BLOCKS.register("mossy_chalk_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.4f, 1.4f))); + public static final RegistryObject MOSSY_CHALK_COBBLESTONE = BLOCKS.register("mossy_chalk_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.4f, 1.4f))); public static final RegistryObject MOSSY_CHALK_COBBLESTONE_SLAB = BLOCKS.register("mossy_chalk_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_CHALK_COBBLESTONE.get()))); public static final RegistryObject MOSSY_CHALK_COBBLESTONE_STAIRS = BLOCKS.register("mossy_chalk_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_CHALK_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_CHALK_COBBLESTONE.get()))); public static final RegistryObject MOSSY_CHALK_COBBLESTONE_WALL = BLOCKS.register("mossy_chalk_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_CHALK_COBBLESTONE.get()))); @@ -996,10 +996,10 @@ public class BlockList public static final RegistryObject CHALK_BUTTON = BLOCKS.register("chalk_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject CHALK_PRESSURE_PLATE = BLOCKS.register("chalk_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject CHALK_PRESSURE_PLATE = BLOCKS.register("chalk_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject CHALK_BRICKS = BLOCKS.register("chalk_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.4f, 1.4f))); + public static final RegistryObject CHALK_BRICKS = BLOCKS.register("chalk_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.4f, 1.4f))); public static final RegistryObject CHALK_BRICK_SLAB = BLOCKS.register("chalk_brick_slab", () -> new SlabBlock(Block.Properties.from(CHALK_BRICKS.get()))); public static final RegistryObject CHALK_BRICK_STAIRS = BLOCKS.register("chalk_brick_stairs", () -> new StrataStairsBlock(CHALK_BRICKS.get().getDefaultState(), Block.Properties.from(CHALK_BRICKS.get()))); public static final RegistryObject CHALK_BRICK_WALL = BLOCKS.register("chalk_brick_wall", () -> new WallBlock(Block.Properties.from(CHALK_BRICKS.get()))); @@ -1011,24 +1011,24 @@ public class BlockList public static final RegistryObject MOSSY_CHALK_BRICK_WALL = BLOCKS.register("mossy_chalk_brick_wall", () -> new WallBlock(Block.Properties.from(CHALK_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_CHALK = BLOCKS.register("polished_chalk", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.4f, 1.4f))); + public static final RegistryObject POLISHED_CHALK = BLOCKS.register("polished_chalk", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.4f, 1.4f))); public static final RegistryObject POLISHED_CHALK_SLAB = BLOCKS.register("polished_chalk_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_CHALK.get()))); public static final RegistryObject POLISHED_CHALK_STAIRS = BLOCKS.register("polished_chalk_stairs", () -> new StrataStairsBlock(POLISHED_CHALK.get().getDefaultState(), Block.Properties.from(POLISHED_CHALK.get()))); //Claystone - public static final RegistryObject CLAYSTONE = BLOCKS.register("claystone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject CLAYSTONE = BLOCKS.register("claystone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject CLAYSTONE_SLAB = BLOCKS.register("claystone_slab", () -> new SlabBlock(Block.Properties.from(CLAYSTONE.get()))); public static final RegistryObject CLAYSTONE_STAIRS = BLOCKS.register("claystone_stairs", () -> new StrataStairsBlock(CLAYSTONE.get().getDefaultState(), Block.Properties.from(CLAYSTONE.get()))); public static final RegistryObject CLAYSTONE_WALL = BLOCKS.register("claystone_wall", () -> new WallBlock(Block.Properties.from(CLAYSTONE.get()))); //Cobblestone - public static final RegistryObject CLAYSTONE_COBBLESTONE = BLOCKS.register("claystone_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject CLAYSTONE_COBBLESTONE = BLOCKS.register("claystone_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject CLAYSTONE_COBBLESTONE_SLAB = BLOCKS.register("claystone_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(CLAYSTONE_COBBLESTONE.get()))); public static final RegistryObject CLAYSTONE_COBBLESTONE_STAIRS = BLOCKS.register("claystone_cobblestone_stairs", () -> new StrataStairsBlock(CLAYSTONE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(CLAYSTONE_COBBLESTONE.get()))); public static final RegistryObject CLAYSTONE_COBBLESTONE_WALL = BLOCKS.register("claystone_cobblestone_wall", () -> new WallBlock(Block.Properties.from(CLAYSTONE_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_CLAYSTONE_COBBLESTONE = BLOCKS.register("mossy_claystone_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_CLAYSTONE_COBBLESTONE = BLOCKS.register("mossy_claystone_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_CLAYSTONE_COBBLESTONE_SLAB = BLOCKS.register("mossy_claystone_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_CLAYSTONE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_CLAYSTONE_COBBLESTONE_STAIRS = BLOCKS.register("mossy_claystone_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_CLAYSTONE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_CLAYSTONE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_CLAYSTONE_COBBLESTONE_WALL = BLOCKS.register("mossy_claystone_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_CLAYSTONE_COBBLESTONE.get()))); @@ -1037,10 +1037,10 @@ public class BlockList public static final RegistryObject CLAYSTONE_BUTTON = BLOCKS.register("claystone_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject CLAYSTONE_PRESSURE_PLATE = BLOCKS.register("claystone_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject CLAYSTONE_PRESSURE_PLATE = BLOCKS.register("claystone_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject CLAYSTONE_BRICKS = BLOCKS.register("claystone_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject CLAYSTONE_BRICKS = BLOCKS.register("claystone_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject CLAYSTONE_BRICK_SLAB = BLOCKS.register("claystone_brick_slab", () -> new SlabBlock(Block.Properties.from(CLAYSTONE_BRICKS.get()))); public static final RegistryObject CLAYSTONE_BRICK_STAIRS = BLOCKS.register("claystone_brick_stairs", () -> new StrataStairsBlock(CLAYSTONE_BRICKS.get().getDefaultState(), Block.Properties.from(CLAYSTONE_BRICKS.get()))); public static final RegistryObject CLAYSTONE_BRICK_WALL = BLOCKS.register("claystone_brick_wall", () -> new WallBlock(Block.Properties.from(CLAYSTONE_BRICKS.get()))); @@ -1052,24 +1052,24 @@ public class BlockList public static final RegistryObject MOSSY_CLAYSTONE_BRICK_WALL = BLOCKS.register("mossy_claystone_brick_wall", () -> new WallBlock(Block.Properties.from(CLAYSTONE_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_CLAYSTONE = BLOCKS.register("polished_claystone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_CLAYSTONE = BLOCKS.register("polished_claystone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_CLAYSTONE_SLAB = BLOCKS.register("polished_claystone_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_CLAYSTONE.get()))); public static final RegistryObject POLISHED_CLAYSTONE_STAIRS = BLOCKS.register("polished_claystone_stairs", () -> new StrataStairsBlock(POLISHED_CLAYSTONE.get().getDefaultState(), Block.Properties.from(POLISHED_CLAYSTONE.get()))); //Dolomite - public static final RegistryObject DOLOMITE = BLOCKS.register("dolomite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject DOLOMITE = BLOCKS.register("dolomite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject DOLOMITE_SLAB = BLOCKS.register("dolomite_slab", () -> new SlabBlock(Block.Properties.from(DOLOMITE.get()))); public static final RegistryObject DOLOMITE_STAIRS = BLOCKS.register("dolomite_stairs", () -> new StrataStairsBlock(DOLOMITE.get().getDefaultState(), Block.Properties.from(DOLOMITE.get()))); public static final RegistryObject DOLOMITE_WALL = BLOCKS.register("dolomite_wall", () -> new WallBlock(Block.Properties.from(DOLOMITE.get()))); //Cobblestone - public static final RegistryObject DOLOMITE_COBBLESTONE = BLOCKS.register("dolomite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject DOLOMITE_COBBLESTONE = BLOCKS.register("dolomite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject DOLOMITE_COBBLESTONE_SLAB = BLOCKS.register("dolomite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(DOLOMITE_COBBLESTONE.get()))); public static final RegistryObject DOLOMITE_COBBLESTONE_STAIRS = BLOCKS.register("dolomite_cobblestone_stairs", () -> new StrataStairsBlock(DOLOMITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(DOLOMITE_COBBLESTONE.get()))); public static final RegistryObject DOLOMITE_COBBLESTONE_WALL = BLOCKS.register("dolomite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(DOLOMITE_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_DOLOMITE_COBBLESTONE = BLOCKS.register("mossy_dolomite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_DOLOMITE_COBBLESTONE = BLOCKS.register("mossy_dolomite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_DOLOMITE_COBBLESTONE_SLAB = BLOCKS.register("mossy_dolomite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_DOLOMITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_DOLOMITE_COBBLESTONE_STAIRS = BLOCKS.register("mossy_dolomite_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_DOLOMITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_DOLOMITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_DOLOMITE_COBBLESTONE_WALL = BLOCKS.register("mossy_dolomite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_DOLOMITE_COBBLESTONE.get()))); @@ -1078,10 +1078,10 @@ public class BlockList public static final RegistryObject DOLOMITE_BUTTON = BLOCKS.register("dolomite_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject DOLOMITE_PRESSURE_PLATE = BLOCKS.register("dolomite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject DOLOMITE_PRESSURE_PLATE = BLOCKS.register("dolomite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject DOLOMITE_BRICKS = BLOCKS.register("dolomite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject DOLOMITE_BRICKS = BLOCKS.register("dolomite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject DOLOMITE_BRICK_SLAB = BLOCKS.register("dolomite_brick_slab", () -> new SlabBlock(Block.Properties.from(DOLOMITE_BRICKS.get()))); public static final RegistryObject DOLOMITE_BRICK_STAIRS = BLOCKS.register("dolomite_brick_stairs", () -> new StrataStairsBlock(DOLOMITE_BRICKS.get().getDefaultState(), Block.Properties.from(DOLOMITE_BRICKS.get()))); public static final RegistryObject DOLOMITE_BRICK_WALL = BLOCKS.register("dolomite_brick_wall", () -> new WallBlock(Block.Properties.from(DOLOMITE_BRICKS.get()))); @@ -1093,24 +1093,24 @@ public class BlockList public static final RegistryObject MOSSY_DOLOMITE_BRICK_WALL = BLOCKS.register("mossy_dolomite_brick_wall", () -> new WallBlock(Block.Properties.from(DOLOMITE_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_DOLOMITE = BLOCKS.register("polished_dolomite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_DOLOMITE = BLOCKS.register("polished_dolomite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_DOLOMITE_SLAB = BLOCKS.register("polished_dolomite_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_DOLOMITE.get()))); public static final RegistryObject POLISHED_DOLOMITE_STAIRS = BLOCKS.register("polished_dolomite_stairs", () -> new StrataStairsBlock(POLISHED_DOLOMITE.get().getDefaultState(), Block.Properties.from(POLISHED_DOLOMITE.get()))); //Jaspillite - public static final RegistryObject JASPILLITE = BLOCKS.register("jaspillite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject JASPILLITE = BLOCKS.register("jaspillite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject JASPILLITE_SLAB = BLOCKS.register("jaspillite_slab", () -> new SlabBlock(Block.Properties.from(JASPILLITE.get()))); public static final RegistryObject JASPILLITE_STAIRS = BLOCKS.register("jaspillite_stairs", () -> new StrataStairsBlock(JASPILLITE.get().getDefaultState(), Block.Properties.from(JASPILLITE.get()))); public static final RegistryObject JASPILLITE_WALL = BLOCKS.register("jaspillite_wall", () -> new WallBlock(Block.Properties.from(JASPILLITE.get()))); //Cobblestone - public static final RegistryObject JASPILLITE_COBBLESTONE = BLOCKS.register("jaspillite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject JASPILLITE_COBBLESTONE = BLOCKS.register("jaspillite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject JASPILLITE_COBBLESTONE_SLAB = BLOCKS.register("jaspillite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(JASPILLITE_COBBLESTONE.get()))); public static final RegistryObject JASPILLITE_COBBLESTONE_STAIRS = BLOCKS.register("jaspillite_cobblestone_stairs", () -> new StrataStairsBlock(JASPILLITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(JASPILLITE_COBBLESTONE.get()))); public static final RegistryObject JASPILLITE_COBBLESTONE_WALL = BLOCKS.register("jaspillite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(JASPILLITE_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_JASPILLITE_COBBLESTONE = BLOCKS.register("mossy_jaspillite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_JASPILLITE_COBBLESTONE = BLOCKS.register("mossy_jaspillite_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_JASPILLITE_COBBLESTONE_SLAB = BLOCKS.register("mossy_jaspillite_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_JASPILLITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_JASPILLITE_COBBLESTONE_STAIRS = BLOCKS.register("mossy_jaspillite_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_JASPILLITE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_JASPILLITE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_JASPILLITE_COBBLESTONE_WALL = BLOCKS.register("mossy_jaspillite_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_JASPILLITE_COBBLESTONE.get()))); @@ -1119,10 +1119,10 @@ public class BlockList public static final RegistryObject JASPILLITE_BUTTON = BLOCKS.register("jaspillite_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject JASPILLITE_PRESSURE_PLATE = BLOCKS.register("jaspillite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject JASPILLITE_PRESSURE_PLATE = BLOCKS.register("jaspillite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject JASPILLITE_BRICKS = BLOCKS.register("jaspillite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject JASPILLITE_BRICKS = BLOCKS.register("jaspillite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject JASPILLITE_BRICK_SLAB = BLOCKS.register("jaspillite_brick_slab", () -> new SlabBlock(Block.Properties.from(JASPILLITE_BRICKS.get()))); public static final RegistryObject JASPILLITE_BRICK_STAIRS = BLOCKS.register("jaspillite_brick_stairs", () -> new StrataStairsBlock(JASPILLITE_BRICKS.get().getDefaultState(), Block.Properties.from(JASPILLITE_BRICKS.get()))); public static final RegistryObject JASPILLITE_BRICK_WALL = BLOCKS.register("jaspillite_brick_wall", () -> new WallBlock(Block.Properties.from(JASPILLITE_BRICKS.get()))); @@ -1134,24 +1134,24 @@ public class BlockList public static final RegistryObject MOSSY_JASPILLITE_BRICK_WALL = BLOCKS.register("mossy_jaspillite_brick_wall", () -> new WallBlock(Block.Properties.from(JASPILLITE_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_JASPILLITE = BLOCKS.register("polished_jaspillite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_JASPILLITE = BLOCKS.register("polished_jaspillite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_JASPILLITE_SLAB = BLOCKS.register("polished_jaspillite_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_JASPILLITE.get()))); public static final RegistryObject POLISHED_JASPILLITE_STAIRS = BLOCKS.register("polished_jaspillite_stairs", () -> new StrataStairsBlock(POLISHED_JASPILLITE.get().getDefaultState(), Block.Properties.from(POLISHED_JASPILLITE.get()))); //Limestone - public static final RegistryObject LIMESTONE = BLOCKS.register("limestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject LIMESTONE = BLOCKS.register("limestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject LIMESTONE_SLAB = BLOCKS.register("limestone_slab", () -> new SlabBlock(Block.Properties.from(LIMESTONE.get()))); public static final RegistryObject LIMESTONE_STAIRS = BLOCKS.register("limestone_stairs", () -> new StrataStairsBlock(LIMESTONE.get().getDefaultState(), Block.Properties.from(LIMESTONE.get()))); public static final RegistryObject LIMESTONE_WALL = BLOCKS.register("limestone_wall", () -> new WallBlock(Block.Properties.from(LIMESTONE.get()))); //Cobblestone - public static final RegistryObject LIMESTONE_COBBLESTONE = BLOCKS.register("limestone_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject LIMESTONE_COBBLESTONE = BLOCKS.register("limestone_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject LIMESTONE_COBBLESTONE_SLAB = BLOCKS.register("limestone_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(LIMESTONE_COBBLESTONE.get()))); public static final RegistryObject LIMESTONE_COBBLESTONE_STAIRS = BLOCKS.register("limestone_cobblestone_stairs", () -> new StrataStairsBlock(LIMESTONE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(LIMESTONE_COBBLESTONE.get()))); public static final RegistryObject LIMESTONE_COBBLESTONE_WALL = BLOCKS.register("limestone_cobblestone_wall", () -> new WallBlock(Block.Properties.from(LIMESTONE_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_LIMESTONE_COBBLESTONE = BLOCKS.register("mossy_limestone_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_LIMESTONE_COBBLESTONE = BLOCKS.register("mossy_limestone_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_LIMESTONE_COBBLESTONE_SLAB = BLOCKS.register("mossy_limestone_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_LIMESTONE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_LIMESTONE_COBBLESTONE_STAIRS = BLOCKS.register("mossy_limestone_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_LIMESTONE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_LIMESTONE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_LIMESTONE_COBBLESTONE_WALL = BLOCKS.register("mossy_limestone_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_LIMESTONE_COBBLESTONE.get()))); @@ -1160,10 +1160,10 @@ public class BlockList public static final RegistryObject LIMESTONE_BUTTON = BLOCKS.register("limestone_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject LIMESTONE_PRESSURE_PLATE = BLOCKS.register("limestone_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject LIMESTONE_PRESSURE_PLATE = BLOCKS.register("limestone_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject LIMESTONE_BRICKS = BLOCKS.register("limestone_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject LIMESTONE_BRICKS = BLOCKS.register("limestone_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject LIMESTONE_BRICK_SLAB = BLOCKS.register("limestone_brick_slab", () -> new SlabBlock(Block.Properties.from(LIMESTONE_BRICKS.get()))); public static final RegistryObject LIMESTONE_BRICK_STAIRS = BLOCKS.register("limestone_brick_stairs", () -> new StrataStairsBlock(LIMESTONE_BRICKS.get().getDefaultState(), Block.Properties.from(LIMESTONE_BRICKS.get()))); public static final RegistryObject LIMESTONE_BRICK_WALL = BLOCKS.register("limestone_brick_wall", () -> new WallBlock(Block.Properties.from(LIMESTONE_BRICKS.get()))); @@ -1175,24 +1175,24 @@ public class BlockList public static final RegistryObject MOSSY_LIMESTONE_BRICK_WALL = BLOCKS.register("mossy_limestone_brick_wall", () -> new WallBlock(Block.Properties.from(LIMESTONE_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_LIMESTONE = BLOCKS.register("polished_limestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_LIMESTONE = BLOCKS.register("polished_limestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_LIMESTONE_SLAB = BLOCKS.register("polished_limestone_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_LIMESTONE.get()))); public static final RegistryObject POLISHED_LIMESTONE_STAIRS = BLOCKS.register("polished_limestone_stairs", () -> new StrataStairsBlock(POLISHED_LIMESTONE.get().getDefaultState(), Block.Properties.from(POLISHED_LIMESTONE.get()))); //Mudstone - public static final RegistryObject MUDSTONE = BLOCKS.register("mudstone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MUDSTONE = BLOCKS.register("mudstone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MUDSTONE_SLAB = BLOCKS.register("mudstone_slab", () -> new SlabBlock(Block.Properties.from(MUDSTONE.get()))); public static final RegistryObject MUDSTONE_STAIRS = BLOCKS.register("mudstone_stairs", () -> new StrataStairsBlock(MUDSTONE.get().getDefaultState(), Block.Properties.from(MUDSTONE.get()))); public static final RegistryObject MUDSTONE_WALL = BLOCKS.register("mudstone_wall", () -> new WallBlock(Block.Properties.from(MUDSTONE.get()))); //Cobblestone - public static final RegistryObject MUDSTONE_COBBLESTONE = BLOCKS.register("mudstone_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MUDSTONE_COBBLESTONE = BLOCKS.register("mudstone_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MUDSTONE_COBBLESTONE_SLAB = BLOCKS.register("mudstone_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MUDSTONE_COBBLESTONE.get()))); public static final RegistryObject MUDSTONE_COBBLESTONE_STAIRS = BLOCKS.register("mudstone_cobblestone_stairs", () -> new StrataStairsBlock(MUDSTONE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MUDSTONE_COBBLESTONE.get()))); public static final RegistryObject MUDSTONE_COBBLESTONE_WALL = BLOCKS.register("mudstone_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MUDSTONE_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_MUDSTONE_COBBLESTONE = BLOCKS.register("mossy_mudstone_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_MUDSTONE_COBBLESTONE = BLOCKS.register("mossy_mudstone_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_MUDSTONE_COBBLESTONE_SLAB = BLOCKS.register("mossy_mudstone_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_MUDSTONE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_MUDSTONE_COBBLESTONE_STAIRS = BLOCKS.register("mossy_mudstone_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_MUDSTONE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_MUDSTONE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_MUDSTONE_COBBLESTONE_WALL = BLOCKS.register("mossy_mudstone_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_MUDSTONE_COBBLESTONE.get()))); @@ -1201,10 +1201,10 @@ public class BlockList public static final RegistryObject MUDSTONE_BUTTON = BLOCKS.register("mudstone_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject MUDSTONE_PRESSURE_PLATE = BLOCKS.register("mudstone_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject MUDSTONE_PRESSURE_PLATE = BLOCKS.register("mudstone_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject MUDSTONE_BRICKS = BLOCKS.register("mudstone_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MUDSTONE_BRICKS = BLOCKS.register("mudstone_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MUDSTONE_BRICK_SLAB = BLOCKS.register("mudstone_brick_slab", () -> new SlabBlock(Block.Properties.from(MUDSTONE_BRICKS.get()))); public static final RegistryObject MUDSTONE_BRICK_STAIRS = BLOCKS.register("mudstone_brick_stairs", () -> new StrataStairsBlock(MUDSTONE_BRICKS.get().getDefaultState(), Block.Properties.from(MUDSTONE_BRICKS.get()))); public static final RegistryObject MUDSTONE_BRICK_WALL = BLOCKS.register("mudstone_brick_wall", () -> new WallBlock(Block.Properties.from(MUDSTONE_BRICKS.get()))); @@ -1216,24 +1216,24 @@ public class BlockList public static final RegistryObject MOSSY_MUDSTONE_BRICK_WALL = BLOCKS.register("mossy_mudstone_brick_wall", () -> new WallBlock(Block.Properties.from(MUDSTONE_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_MUDSTONE = BLOCKS.register("polished_mudstone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_MUDSTONE = BLOCKS.register("polished_mudstone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_MUDSTONE_SLAB = BLOCKS.register("polished_mudstone_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_MUDSTONE.get()))); public static final RegistryObject POLISHED_MUDSTONE_STAIRS = BLOCKS.register("polished_mudstone_stairs", () -> new StrataStairsBlock(POLISHED_MUDSTONE.get().getDefaultState(), Block.Properties.from(POLISHED_MUDSTONE.get()))); //Shale - public static final RegistryObject SHALE = BLOCKS.register("shale", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject SHALE = BLOCKS.register("shale", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject SHALE_SLAB = BLOCKS.register("shale_slab", () -> new SlabBlock(Block.Properties.from(SHALE.get()))); public static final RegistryObject SHALE_STAIRS = BLOCKS.register("shale_stairs", () -> new StrataStairsBlock(SHALE.get().getDefaultState(), Block.Properties.from(SHALE.get()))); public static final RegistryObject SHALE_WALL = BLOCKS.register("shale_wall", () -> new WallBlock(Block.Properties.from(SHALE.get()))); //Cobblestone - public static final RegistryObject SHALE_COBBLESTONE = BLOCKS.register("shale_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject SHALE_COBBLESTONE = BLOCKS.register("shale_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject SHALE_COBBLESTONE_SLAB = BLOCKS.register("shale_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(SHALE_COBBLESTONE.get()))); public static final RegistryObject SHALE_COBBLESTONE_STAIRS = BLOCKS.register("shale_cobblestone_stairs", () -> new StrataStairsBlock(SHALE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(SHALE_COBBLESTONE.get()))); public static final RegistryObject SHALE_COBBLESTONE_WALL = BLOCKS.register("shale_cobblestone_wall", () -> new WallBlock(Block.Properties.from(SHALE_COBBLESTONE.get()))); //Mossy Cobblestone - public static final RegistryObject MOSSY_SHALE_COBBLESTONE = BLOCKS.register("mossy_shale_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject MOSSY_SHALE_COBBLESTONE = BLOCKS.register("mossy_shale_cobblestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject MOSSY_SHALE_COBBLESTONE_SLAB = BLOCKS.register("mossy_shale_cobblestone_slab", () -> new SlabBlock(Block.Properties.from(MOSSY_SHALE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_SHALE_COBBLESTONE_STAIRS = BLOCKS.register("mossy_shale_cobblestone_stairs", () -> new StrataStairsBlock(MOSSY_SHALE_COBBLESTONE.get().getDefaultState(), Block.Properties.from(MOSSY_SHALE_COBBLESTONE.get()))); public static final RegistryObject MOSSY_SHALE_COBBLESTONE_WALL = BLOCKS.register("mossy_shale_cobblestone_wall", () -> new WallBlock(Block.Properties.from(MOSSY_SHALE_COBBLESTONE.get()))); @@ -1242,10 +1242,10 @@ public class BlockList public static final RegistryObject SHALE_BUTTON = BLOCKS.register("shale_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Pressure Plates - public static final RegistryObject SHALE_PRESSURE_PLATE = BLOCKS.register("shale_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); + public static final RegistryObject SHALE_PRESSURE_PLATE = BLOCKS.register("shale_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); //Bricks - public static final RegistryObject SHALE_BRICKS = BLOCKS.register("shale_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject SHALE_BRICKS = BLOCKS.register("shale_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject SHALE_BRICK_SLAB = BLOCKS.register("shale_brick_slab", () -> new SlabBlock(Block.Properties.from(SHALE_BRICKS.get()))); public static final RegistryObject SHALE_BRICK_STAIRS = BLOCKS.register("shale_brick_stairs", () -> new StrataStairsBlock(SHALE_BRICKS.get().getDefaultState(), Block.Properties.from(SHALE_BRICKS.get()))); public static final RegistryObject SHALE_BRICK_WALL = BLOCKS.register("shale_brick_wall", () -> new WallBlock(Block.Properties.from(SHALE_BRICKS.get()))); @@ -1257,7 +1257,7 @@ public class BlockList public static final RegistryObject MOSSY_SHALE_BRICK_WALL = BLOCKS.register("mossy_shale_brick_wall", () -> new WallBlock(Block.Properties.from(SHALE_BRICKS.get()))); //Polished - public static final RegistryObject POLISHED_SHALE = BLOCKS.register("polished_shale", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); + public static final RegistryObject POLISHED_SHALE = BLOCKS.register("polished_shale", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).setRequiresTool().hardnessAndResistance(1.5f, 6.0f))); public static final RegistryObject POLISHED_SHALE_SLAB = BLOCKS.register("polished_shale_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_SHALE.get()))); public static final RegistryObject POLISHED_SHALE_STAIRS = BLOCKS.register("polished_shale_stairs", () -> new StrataStairsBlock(POLISHED_SHALE.get().getDefaultState(), Block.Properties.from(POLISHED_SHALE.get()))); diff --git a/src/main/java/com/quizer9o8/strata/list/ItemList.java b/src/main/java/com/quizer9o8/strata/list/ItemList.java index 85d26bc6..4427f163 100644 --- a/src/main/java/com/quizer9o8/strata/list/ItemList.java +++ b/src/main/java/com/quizer9o8/strata/list/ItemList.java @@ -1,6 +1,7 @@ package com.quizer9o8.strata.list; import com.quizer9o8.strata.Strata; +import net.minecraft.block.Block; import net.minecraft.item.BlockItem; import net.minecraft.item.Item; import net.minecraftforge.fml.RegistryObject; @@ -9,7 +10,7 @@ public class ItemList { - public static final DeferredRegister ITEMS = new DeferredRegister(ForgeRegistries.ITEMS, Strata.MOD_ID); + public static final DeferredRegister ITEMS = DeferredRegister.create(ForgeRegistries.ITEMS, Strata.MOD_ID); /* //Debug @@ -107,45 +108,45 @@ public class ItemList public static final RegistryObject POLISHED_ADAKITE_STAIRS = ITEMS.register("polished_adakite_stairs", () -> new BlockItem(BlockList.POLISHED_ADAKITE_STAIRS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); /*-Basalt-*/ - public static final RegistryObject BASALT = ITEMS.register("basalt", () -> new BlockItem(BlockList.BASALT.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject BASALT_SLAB = ITEMS.register("basalt_slab", () -> new BlockItem(BlockList.BASALT_SLAB.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject BASALT_STAIRS = ITEMS.register("basalt_stairs", () -> new BlockItem(BlockList.BASALT_STAIRS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject BASALT_WALL = ITEMS.register("basalt_wall", () -> new BlockItem(BlockList.BASALT_WALL.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject BASALT = ITEMS.register("basalt", () -> new BlockItem(BlockList.BASALT.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject BASALT_SLAB = ITEMS.register("basalt_slab", () -> new BlockItem(BlockList.BASALT_SLAB.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject BASALT_STAIRS = ITEMS.register("basalt_stairs", () -> new BlockItem(BlockList.BASALT_STAIRS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject BASALT_WALL = ITEMS.register("basalt_wall", () -> new BlockItem(BlockList.BASALT_WALL.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); //Cobblestone - public static final RegistryObject BASALT_COBBLESTONE = ITEMS.register("basalt_cobblestone", () -> new BlockItem(BlockList.BASALT_COBBLESTONE.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject BASALT_COBBLESTONE_SLAB = ITEMS.register("basalt_cobblestone_slab", () -> new BlockItem(BlockList.BASALT_COBBLESTONE_SLAB.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject BASALT_COBBLESTONE_STAIRS = ITEMS.register("basalt_cobblestone_stairs", () -> new BlockItem(BlockList.BASALT_COBBLESTONE_STAIRS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject BASALT_COBBLESTONE_WALL = ITEMS.register("basalt_cobblestone_wall", () -> new BlockItem(BlockList.BASALT_COBBLESTONE_WALL.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject BASALT_COBBLESTONE = ITEMS.register("basalt_cobblestone", () -> new BlockItem(BlockList.BASALT_COBBLESTONE.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject BASALT_COBBLESTONE_SLAB = ITEMS.register("basalt_cobblestone_slab", () -> new BlockItem(BlockList.BASALT_COBBLESTONE_SLAB.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject BASALT_COBBLESTONE_STAIRS = ITEMS.register("basalt_cobblestone_stairs", () -> new BlockItem(BlockList.BASALT_COBBLESTONE_STAIRS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject BASALT_COBBLESTONE_WALL = ITEMS.register("basalt_cobblestone_wall", () -> new BlockItem(BlockList.BASALT_COBBLESTONE_WALL.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); //Mossy Cobblestone - public static final RegistryObject MOSSY_BASALT_COBBLESTONE = ITEMS.register("mossy_basalt_cobblestone", () -> new BlockItem(BlockList.MOSSY_BASALT_COBBLESTONE.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject MOSSY_BASALT_COBBLESTONE_SLAB = ITEMS.register("mossy_basalt_cobblestone_slab", () -> new BlockItem(BlockList.MOSSY_BASALT_COBBLESTONE_SLAB.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject MOSSY_BASALT_COBBLESTONE_STAIRS = ITEMS.register("mossy_basalt_cobblestone_stairs", () -> new BlockItem(BlockList.MOSSY_BASALT_COBBLESTONE_STAIRS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject MOSSY_BASALT_COBBLESTONE_WALL = ITEMS.register("mossy_basalt_cobblestone_wall", () -> new BlockItem(BlockList.MOSSY_BASALT_COBBLESTONE_WALL.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject MOSSY_BASALT_COBBLESTONE = ITEMS.register("mossy_basalt_cobblestone", () -> new BlockItem(BlockList.MOSSY_BASALT_COBBLESTONE.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject MOSSY_BASALT_COBBLESTONE_SLAB = ITEMS.register("mossy_basalt_cobblestone_slab", () -> new BlockItem(BlockList.MOSSY_BASALT_COBBLESTONE_SLAB.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject MOSSY_BASALT_COBBLESTONE_STAIRS = ITEMS.register("mossy_basalt_cobblestone_stairs", () -> new BlockItem(BlockList.MOSSY_BASALT_COBBLESTONE_STAIRS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject MOSSY_BASALT_COBBLESTONE_WALL = ITEMS.register("mossy_basalt_cobblestone_wall", () -> new BlockItem(BlockList.MOSSY_BASALT_COBBLESTONE_WALL.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); //Buttons - public static final RegistryObject BASALT_BUTTON = ITEMS.register("basalt_button", () -> new BlockItem(BlockList.BASALT_BUTTON.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject BASALT_BUTTON = ITEMS.register("basalt_button", () -> new BlockItem(BlockList.BASALT_BUTTON.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); //Pressure Plates - public static final RegistryObject BASALT_PRESSURE_PLATE = ITEMS.register("basalt_pressure_plate", () -> new BlockItem(BlockList.BASALT_PRESSURE_PLATE.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject BASALT_PRESSURE_PLATE = ITEMS.register("basalt_pressure_plate", () -> new BlockItem(BlockList.BASALT_PRESSURE_PLATE.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); //Bricks - public static final RegistryObject BASALT_BRICKS = ITEMS.register("basalt_bricks", () -> new BlockItem(BlockList.BASALT_BRICKS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject BASALT_BRICK_SLAB = ITEMS.register("basalt_brick_slab", () -> new BlockItem(BlockList.BASALT_BRICK_SLAB.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject BASALT_BRICK_STAIRS = ITEMS.register("basalt_brick_stairs", () -> new BlockItem(BlockList.BASALT_BRICK_STAIRS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject BASALT_BRICK_WALL = ITEMS.register("basalt_brick_wall", () -> new BlockItem(BlockList.BASALT_BRICK_WALL.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject CHISELED_BASALT_BRICKS = ITEMS.register("chiseled_basalt_bricks", () -> new BlockItem(BlockList.CHISELED_BASALT_BRICKS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject CRACKED_BASALT_BRICKS = ITEMS.register("cracked_basalt_bricks", () -> new BlockItem(BlockList.CRACKED_BASALT_BRICKS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject MOSSY_BASALT_BRICKS = ITEMS.register("mossy_basalt_bricks", () -> new BlockItem(BlockList.MOSSY_BASALT_BRICKS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject MOSSY_BASALT_BRICK_SLAB = ITEMS.register("mossy_basalt_brick_slab", () -> new BlockItem(BlockList.MOSSY_BASALT_BRICK_SLAB.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject MOSSY_BASALT_BRICK_STAIRS = ITEMS.register("mossy_basalt_brick_stairs", () -> new BlockItem(BlockList.MOSSY_BASALT_BRICK_STAIRS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject MOSSY_BASALT_BRICK_WALL = ITEMS.register("mossy_basalt_brick_wall", () -> new BlockItem(BlockList.MOSSY_BASALT_BRICK_WALL.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject BASALT_BRICKS = ITEMS.register("basalt_bricks", () -> new BlockItem(BlockList.BASALT_BRICKS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject BASALT_BRICK_SLAB = ITEMS.register("basalt_brick_slab", () -> new BlockItem(BlockList.BASALT_BRICK_SLAB.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject BASALT_BRICK_STAIRS = ITEMS.register("basalt_brick_stairs", () -> new BlockItem(BlockList.BASALT_BRICK_STAIRS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject BASALT_BRICK_WALL = ITEMS.register("basalt_brick_wall", () -> new BlockItem(BlockList.BASALT_BRICK_WALL.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject CHISELED_BASALT_BRICKS = ITEMS.register("chiseled_basalt_bricks", () -> new BlockItem(BlockList.CHISELED_BASALT_BRICKS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject CRACKED_BASALT_BRICKS = ITEMS.register("cracked_basalt_bricks", () -> new BlockItem(BlockList.CRACKED_BASALT_BRICKS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject MOSSY_BASALT_BRICKS = ITEMS.register("mossy_basalt_bricks", () -> new BlockItem(BlockList.MOSSY_BASALT_BRICKS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject MOSSY_BASALT_BRICK_SLAB = ITEMS.register("mossy_basalt_brick_slab", () -> new BlockItem(BlockList.MOSSY_BASALT_BRICK_SLAB.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject MOSSY_BASALT_BRICK_STAIRS = ITEMS.register("mossy_basalt_brick_stairs", () -> new BlockItem(BlockList.MOSSY_BASALT_BRICK_STAIRS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject MOSSY_BASALT_BRICK_WALL = ITEMS.register("mossy_basalt_brick_wall", () -> new BlockItem(BlockList.MOSSY_BASALT_BRICK_WALL.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); //Polished - public static final RegistryObject POLISHED_BASALT = ITEMS.register("polished_basalt", () -> new BlockItem(BlockList.POLISHED_BASALT.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject POLISHED_BASALT_SLAB = ITEMS.register("polished_basalt_slab", () -> new BlockItem(BlockList.POLISHED_BASALT_SLAB.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject POLISHED_BASALT_STAIRS = ITEMS.register("polished_basalt_stairs", () -> new BlockItem(BlockList.POLISHED_BASALT_STAIRS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject POLISHED_BASALT = ITEMS.register("polished_basalt", () -> new BlockItem(BlockList.POLISHED_BASALT.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject POLISHED_BASALT_SLAB = ITEMS.register("polished_basalt_slab", () -> new BlockItem(BlockList.POLISHED_BASALT_SLAB.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); + //public static final RegistryObject POLISHED_BASALT_STAIRS = ITEMS.register("polished_basalt_stairs", () -> new BlockItem(BlockList.POLISHED_BASALT_STAIRS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); /*-Dacite-*/ public static final RegistryObject DACITE = ITEMS.register("dacite", () -> new BlockItem(BlockList.DACITE.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); diff --git a/src/main/java/com/quizer9o8/strata/world/gen/StrataGeneration.java b/src/main/java/com/quizer9o8/strata/world/gen/StrataGeneration.java deleted file mode 100644 index a78b2f45..00000000 --- a/src/main/java/com/quizer9o8/strata/world/gen/StrataGeneration.java +++ /dev/null @@ -1,326 +0,0 @@ - -package com.quizer9o8.strata.world.gen; - -import com.quizer9o8.strata.list.BlockList; -import net.minecraft.world.biome.Biome; -import net.minecraft.world.biome.Biomes; -import net.minecraft.world.gen.GenerationStage; -import net.minecraft.world.gen.feature.Feature; -import net.minecraft.world.gen.feature.OreFeatureConfig; -import net.minecraft.world.gen.placement.CountRangeConfig; -import net.minecraft.world.gen.placement.Placement; -import net.minecraftforge.registries.ForgeRegistries; - -public class StrataGeneration -{ - private static void setupOreGeneration(){ - - - //size = maximum amount of that said block to generate in the world - //count = how common that said block will be in your world. The higher - -/* Unused for now... - //Gabbro - - for(Biome biome : ForgeRegistries.BIOMES) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 33)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(20, 0, 0, 128)))); - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.OCEAN) { - - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.FROZEN_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.COLD_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.DEEP_COLD_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.DEEP_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.LUKEWARM_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.DEEP_LUKEWARM_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.WARM_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.DEEP_WARM_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - - // Basalt - - for(Biome biome : ForgeRegistries.BIOMES) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 33)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(10, 0, 0, 128)))); - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.OCEAN) { - - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.FROZEN_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.COLD_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.DEEP_COLD_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.DEEP_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.LUKEWARM_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.DEEP_LUKEWARM_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.WARM_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.DEEP_WARM_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - - //Gneiss - - for(Biome biome : ForgeRegistries.BIOMES) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GNEISS.get().getDefaultState(), 33)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(20, 0, 0, 128)))); - } - - //Schist - - for(Biome biome : ForgeRegistries.BIOMES) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.SCHIST.get().getDefaultState(), 33)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(20, 0, 0, 128)))); - } - - //Amphibolite - - for(Biome biome : ForgeRegistries.BIOMES) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.AMPHIBOLITE.get().getDefaultState(), 33)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(20, 0, 0, 128)))); - } - - //Limestone - - for(Biome biome : ForgeRegistries.BIOMES) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.LIMESTONE.get().getDefaultState(), 33)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(20, 0, 0, 128)))); - } - - //Shale - - for(Biome biome : ForgeRegistries.BIOMES) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.SHALE.get().getDefaultState(), 33)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(20, 0, 0, 128)))); - }*/ - - } - - public static void generate() { - setupOreGeneration(); - } -} - diff --git a/src/main/resources/META-INF/MANIFEST.MF b/src/main/resources/META-INF/MANIFEST.MF new file mode 100644 index 00000000..803a0175 --- /dev/null +++ b/src/main/resources/META-INF/MANIFEST.MF @@ -0,0 +1,9 @@ +Manifest-Version: 1.0 +Implementation-Title: Strata-1.16.4 +Implementation-Version: 1.16.4-1.2.0 +Specification-Vendor: examplemodsareus +Specification-Title: examplemod +Implementation-Timestamp: 2023-10-25T18:16:31+0200 +Specification-Version: 1 +Implementation-Vendor: examplemodsareus + diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index 0a02079a..d761bbb9 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -1,36 +1,23 @@ -modLoader="javafml" #mandatory - -loaderVersion="[31,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions. - -issueTrackerURL="https://github.com/Quizer9O8/Strata/issues" #optional - -[[mods]] #mandatory - -modId="strata" #mandatory - -version="1.2.0" #mandatory - -displayName="Strata" #mandatory - -updateJSONURL="http://myurl.me/" #optional - -displayURL="https://github.com/Quizer9O8/Strata" #optional - +modLoader="javafml" +loaderVersion="[35,)" +issueTrackerURL="https://github.com/Quizer9O8/Strata/issues" +license="MIT" + +[[mods]] +modId="strata" +version="1.3.0" +displayName="Strata" +updateJSONURL="http://myurl.me/" +displayURL="https://github.com/Quizer9O8/Strata" logoFile="strata.png" #optional - -credits="Quizer9O8" #optional - -authors="Quizer9O8" #optional - +credits="Quizer9O8,Gaming_Crew" #optional +authors="Quizer9O8" description='''Strata is a mod that adds various types of rocks into the game. It changes the look and feel of the game and gives you a plethora of blocks to interact with.''' -[[dependencies.examplemod]] #optional - # the modid of the dependency - modId="forge" #mandatory - # Does this dependency have to exist - if not, ordering below must be specified - mandatory=true #mandatory - # The version range of the dependency - versionRange="[31,)" #mandatory +[[dependencies.examplemod]] + modId="forge" + mandatory=true + versionRange="[35,)" # An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory ordering="NONE" # Side this dependency is applied on - BOTH, CLIENT or SERVER @@ -39,6 +26,6 @@ description='''Strata is a mod that adds various types of rocks into the game. I [[dependencies.examplemod]] modId="minecraft" mandatory=true - versionRange="[1.15.2]" + versionRange="[1.16.4]" ordering="NONE" side="BOTH" diff --git a/src/main/resources/assets/strata/blockstates/aa_brick_wall.json b/src/main/resources/assets/strata/blockstates/aa_brick_wall.json index 9b376a9b..a25dd56a 100644 --- a/src/main/resources/assets/strata/blockstates/aa_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/aa_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/aa_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/aa_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/aa_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/aa_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/aa_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/aa_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/aa_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/aa_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/aa_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/aa_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/aa_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/aa_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/aa_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/aa_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/aa_button.json b/src/main/resources/assets/strata/blockstates/aa_button.json index e814e339..4db7f828 100644 --- a/src/main/resources/assets/strata/blockstates/aa_button.json +++ b/src/main/resources/assets/strata/blockstates/aa_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/aa_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/aa_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/aa_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/aa_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/aa_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/aa_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/aa_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/aa_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/aa_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/aa_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/aa_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/aa_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/aa_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/aa_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/aa_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/aa_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/aa_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/aa_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/aa_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/aa_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/aa_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/aa_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/aa_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/aa_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/aa_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/aa_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/aa_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/aa_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/aa_cobblestone_wall.json index c7147505..d987121a 100644 --- a/src/main/resources/assets/strata/blockstates/aa_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/aa_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/aa_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/aa_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/aa_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/aa_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/aa_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/aa_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/aa_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/aa_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/aa_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/aa_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/aa_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/aa_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/aa_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/aa_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/aa_wall.json b/src/main/resources/assets/strata/blockstates/aa_wall.json index 88ad0a37..b89d05ca 100644 --- a/src/main/resources/assets/strata/blockstates/aa_wall.json +++ b/src/main/resources/assets/strata/blockstates/aa_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/aa_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/aa_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/aa_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/aa_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/aa_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/aa_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/aa_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/aa_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/aa_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/aa_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/aa_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/aa_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/aa_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/aa_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/adakite_brick_wall.json b/src/main/resources/assets/strata/blockstates/adakite_brick_wall.json index cac9d0b7..4861df9b 100644 --- a/src/main/resources/assets/strata/blockstates/adakite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/adakite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/adakite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/adakite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/adakite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/adakite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/adakite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/adakite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/adakite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/adakite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/adakite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/adakite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/adakite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/adakite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/adakite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/adakite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/adakite_button.json b/src/main/resources/assets/strata/blockstates/adakite_button.json index b8f82cb8..c5eb557d 100644 --- a/src/main/resources/assets/strata/blockstates/adakite_button.json +++ b/src/main/resources/assets/strata/blockstates/adakite_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/adakite_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/adakite_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/adakite_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/adakite_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/adakite_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/adakite_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/adakite_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/adakite_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/adakite_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/adakite_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/adakite_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/adakite_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/adakite_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/adakite_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/adakite_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/adakite_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/adakite_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/adakite_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/adakite_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/adakite_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/adakite_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/adakite_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/adakite_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/adakite_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/adakite_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/adakite_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/adakite_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/adakite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/adakite_cobblestone_wall.json index 74c7b07e..631c5033 100644 --- a/src/main/resources/assets/strata/blockstates/adakite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/adakite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/adakite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/adakite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/adakite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/adakite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/adakite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/adakite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/adakite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/adakite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/adakite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/adakite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/adakite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/adakite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/adakite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/adakite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/adakite_wall.json b/src/main/resources/assets/strata/blockstates/adakite_wall.json index 76b076fc..efd943b6 100644 --- a/src/main/resources/assets/strata/blockstates/adakite_wall.json +++ b/src/main/resources/assets/strata/blockstates/adakite_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/adakite_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/adakite_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/adakite_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/adakite_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/adakite_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/adakite_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/adakite_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/adakite_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/adakite_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/adakite_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/adakite_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/adakite_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/adakite_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/adakite_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/amphibolite_brick_wall.json b/src/main/resources/assets/strata/blockstates/amphibolite_brick_wall.json index b7bafe76..184ae08c 100644 --- a/src/main/resources/assets/strata/blockstates/amphibolite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/amphibolite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/amphibolite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/amphibolite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/amphibolite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/amphibolite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/amphibolite_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} + "multipart": [ + { + "apply": { + "model": "strata:block/amphibolite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/amphibolite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/amphibolite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/amphibolite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/amphibolite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/amphibolite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/amphibolite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/amphibolite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/amphibolite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/amphibolite_button.json b/src/main/resources/assets/strata/blockstates/amphibolite_button.json index 9259ef91..7701d585 100644 --- a/src/main/resources/assets/strata/blockstates/amphibolite_button.json +++ b/src/main/resources/assets/strata/blockstates/amphibolite_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/amphibolite_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/amphibolite_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/amphibolite_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/amphibolite_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/amphibolite_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/amphibolite_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/amphibolite_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/amphibolite_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/amphibolite_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/amphibolite_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/amphibolite_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/amphibolite_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/amphibolite_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/amphibolite_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/amphibolite_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/amphibolite_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/amphibolite_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/amphibolite_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/amphibolite_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/amphibolite_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/amphibolite_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/amphibolite_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/amphibolite_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/amphibolite_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/amphibolite_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/amphibolite_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/amphibolite_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/amphibolite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/amphibolite_cobblestone_wall.json index 934f976e..1925e75f 100644 --- a/src/main/resources/assets/strata/blockstates/amphibolite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/amphibolite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/amphibolite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/amphibolite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/amphibolite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/amphibolite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/amphibolite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/amphibolite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/amphibolite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/amphibolite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/amphibolite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/amphibolite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/amphibolite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/amphibolite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/amphibolite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/amphibolite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/amphibolite_wall.json b/src/main/resources/assets/strata/blockstates/amphibolite_wall.json index 151a498b..622ad0b5 100644 --- a/src/main/resources/assets/strata/blockstates/amphibolite_wall.json +++ b/src/main/resources/assets/strata/blockstates/amphibolite_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/amphibolite_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/amphibolite_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/amphibolite_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/amphibolite_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/amphibolite_wall_side", "y": 270, "uvlock": true } - } - ] -} + "multipart": [ + { + "apply": { + "model": "strata:block/amphibolite_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/amphibolite_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/amphibolite_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/amphibolite_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/amphibolite_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/amphibolite_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/amphibolite_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/amphibolite_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/amphibolite_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/argillite_brick_wall.json b/src/main/resources/assets/strata/blockstates/argillite_brick_wall.json index c2e87a2e..4b0c08ee 100644 --- a/src/main/resources/assets/strata/blockstates/argillite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/argillite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/argillite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/argillite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/argillite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/argillite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/argillite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/argillite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/argillite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/argillite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/argillite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/argillite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/argillite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/argillite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/argillite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/argillite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/argillite_button.json b/src/main/resources/assets/strata/blockstates/argillite_button.json index 149b0fb8..6e918f6e 100644 --- a/src/main/resources/assets/strata/blockstates/argillite_button.json +++ b/src/main/resources/assets/strata/blockstates/argillite_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/argillite_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/argillite_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/argillite_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/argillite_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/argillite_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/argillite_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/argillite_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/argillite_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/argillite_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/argillite_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/argillite_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/argillite_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/argillite_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/argillite_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/argillite_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/argillite_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/argillite_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/argillite_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/argillite_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/argillite_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/argillite_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/argillite_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/argillite_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/argillite_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/argillite_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/argillite_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/argillite_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/argillite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/argillite_cobblestone_wall.json index 922d4f0c..089ac3f6 100644 --- a/src/main/resources/assets/strata/blockstates/argillite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/argillite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/argillite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/argillite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/argillite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/argillite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/argillite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/argillite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/argillite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/argillite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/argillite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/argillite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/argillite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/argillite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/argillite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/argillite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/argillite_wall.json b/src/main/resources/assets/strata/blockstates/argillite_wall.json index 14d1a1d2..7bbc91e6 100644 --- a/src/main/resources/assets/strata/blockstates/argillite_wall.json +++ b/src/main/resources/assets/strata/blockstates/argillite_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/argillite_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/argillite_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/argillite_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/argillite_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/argillite_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/argillite_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/argillite_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/argillite_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/argillite_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/argillite_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/argillite_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/argillite_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/argillite_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/argillite_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/arkose_brick_wall.json b/src/main/resources/assets/strata/blockstates/arkose_brick_wall.json index 46f95d98..112d2946 100644 --- a/src/main/resources/assets/strata/blockstates/arkose_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/arkose_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/arkose_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/arkose_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/arkose_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/arkose_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/arkose_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/arkose_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/arkose_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/arkose_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/arkose_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/arkose_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/arkose_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/arkose_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/arkose_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/arkose_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/arkose_button.json b/src/main/resources/assets/strata/blockstates/arkose_button.json index 5fbaee86..54f310d8 100644 --- a/src/main/resources/assets/strata/blockstates/arkose_button.json +++ b/src/main/resources/assets/strata/blockstates/arkose_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/arkose_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/arkose_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/arkose_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/arkose_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/arkose_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/arkose_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/arkose_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/arkose_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/arkose_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/arkose_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/arkose_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/arkose_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/arkose_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/arkose_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/arkose_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/arkose_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/arkose_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/arkose_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/arkose_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/arkose_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/arkose_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/arkose_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/arkose_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/arkose_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/arkose_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/arkose_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/arkose_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/arkose_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/arkose_cobblestone_wall.json index 5717d747..24931b6c 100644 --- a/src/main/resources/assets/strata/blockstates/arkose_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/arkose_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/arkose_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/arkose_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/arkose_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/arkose_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/arkose_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/arkose_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/arkose_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/arkose_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/arkose_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/arkose_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/arkose_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/arkose_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/arkose_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/arkose_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/arkose_wall.json b/src/main/resources/assets/strata/blockstates/arkose_wall.json index f360fbba..a970f685 100644 --- a/src/main/resources/assets/strata/blockstates/arkose_wall.json +++ b/src/main/resources/assets/strata/blockstates/arkose_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/arkose_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/arkose_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/arkose_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/arkose_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/arkose_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/arkose_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/arkose_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/arkose_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/arkose_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/arkose_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/arkose_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/arkose_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/arkose_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/arkose_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/basalt_brick_wall.json b/src/main/resources/assets/strata/blockstates/basalt_brick_wall.json deleted file mode 100644 index 954d01ac..00000000 --- a/src/main/resources/assets/strata/blockstates/basalt_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/basalt_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/basalt_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/basalt_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/basalt_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/basalt_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/main/resources/assets/strata/blockstates/basalt_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/basalt_cobblestone_wall.json deleted file mode 100644 index 2f603eb9..00000000 --- a/src/main/resources/assets/strata/blockstates/basalt_cobblestone_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/basalt_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/basalt_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/basalt_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/basalt_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/basalt_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/basalt_wall.json b/src/main/resources/assets/strata/blockstates/basalt_wall.json deleted file mode 100644 index 70ba468e..00000000 --- a/src/main/resources/assets/strata/blockstates/basalt_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/basalt_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/basalt_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/basalt_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/basalt_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/basalt_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/main/resources/assets/strata/blockstates/breccia_brick_wall.json b/src/main/resources/assets/strata/blockstates/breccia_brick_wall.json index 563280df..fc855693 100644 --- a/src/main/resources/assets/strata/blockstates/breccia_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/breccia_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/breccia_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/breccia_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/breccia_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/breccia_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/breccia_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/breccia_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/breccia_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/breccia_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/breccia_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/breccia_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/breccia_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/breccia_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/breccia_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/breccia_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/breccia_button.json b/src/main/resources/assets/strata/blockstates/breccia_button.json index def2c41a..bb1643cf 100644 --- a/src/main/resources/assets/strata/blockstates/breccia_button.json +++ b/src/main/resources/assets/strata/blockstates/breccia_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/breccia_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/breccia_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/breccia_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/breccia_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/breccia_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/breccia_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/breccia_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/breccia_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/breccia_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/breccia_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/breccia_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/breccia_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/breccia_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/breccia_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/breccia_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/breccia_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/breccia_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/breccia_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/breccia_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/breccia_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/breccia_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/breccia_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/breccia_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/breccia_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/breccia_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/breccia_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/breccia_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/breccia_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/breccia_cobblestone_wall.json index 4bf60896..655bf73f 100644 --- a/src/main/resources/assets/strata/blockstates/breccia_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/breccia_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/breccia_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/breccia_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/breccia_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/breccia_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/breccia_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/breccia_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/breccia_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/breccia_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/breccia_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/breccia_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/breccia_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/breccia_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/breccia_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/breccia_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/breccia_wall.json b/src/main/resources/assets/strata/blockstates/breccia_wall.json index 4c534d8a..d591f6a4 100644 --- a/src/main/resources/assets/strata/blockstates/breccia_wall.json +++ b/src/main/resources/assets/strata/blockstates/breccia_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/breccia_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/breccia_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/breccia_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/breccia_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/breccia_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/breccia_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/breccia_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/breccia_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/breccia_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/breccia_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/breccia_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/breccia_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/breccia_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/breccia_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/cataclasite_brick_wall.json b/src/main/resources/assets/strata/blockstates/cataclasite_brick_wall.json index 236306d8..4a371501 100644 --- a/src/main/resources/assets/strata/blockstates/cataclasite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/cataclasite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/cataclasite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/cataclasite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/cataclasite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/cataclasite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/cataclasite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/cataclasite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/cataclasite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/cataclasite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/cataclasite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/cataclasite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/cataclasite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/cataclasite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/cataclasite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/cataclasite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/cataclasite_button.json b/src/main/resources/assets/strata/blockstates/cataclasite_button.json index 0ab8a38d..4a72fa10 100644 --- a/src/main/resources/assets/strata/blockstates/cataclasite_button.json +++ b/src/main/resources/assets/strata/blockstates/cataclasite_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/cataclasite_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/cataclasite_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/cataclasite_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/cataclasite_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/cataclasite_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/cataclasite_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/cataclasite_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/cataclasite_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/cataclasite_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/cataclasite_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/cataclasite_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/cataclasite_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/cataclasite_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/cataclasite_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/cataclasite_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/cataclasite_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/cataclasite_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/cataclasite_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/cataclasite_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/cataclasite_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/cataclasite_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/cataclasite_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/cataclasite_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/cataclasite_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/cataclasite_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/cataclasite_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/cataclasite_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/cataclasite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/cataclasite_cobblestone_wall.json index 1e9331c0..fe0c156b 100644 --- a/src/main/resources/assets/strata/blockstates/cataclasite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/cataclasite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/cataclasite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/cataclasite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/cataclasite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/cataclasite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/cataclasite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/cataclasite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/cataclasite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/cataclasite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/cataclasite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/cataclasite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/cataclasite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/cataclasite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/cataclasite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/cataclasite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/cataclasite_wall.json b/src/main/resources/assets/strata/blockstates/cataclasite_wall.json index 39f710bf..f4e84663 100644 --- a/src/main/resources/assets/strata/blockstates/cataclasite_wall.json +++ b/src/main/resources/assets/strata/blockstates/cataclasite_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/cataclasite_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/cataclasite_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/cataclasite_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/cataclasite_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/cataclasite_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/cataclasite_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/cataclasite_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/cataclasite_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/cataclasite_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/cataclasite_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/cataclasite_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/cataclasite_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/cataclasite_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/cataclasite_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/chalk_brick_wall.json b/src/main/resources/assets/strata/blockstates/chalk_brick_wall.json index 4ade4836..0a0d3f4f 100644 --- a/src/main/resources/assets/strata/blockstates/chalk_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/chalk_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/chalk_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/chalk_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/chalk_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/chalk_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/chalk_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/chalk_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/chalk_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/chalk_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/chalk_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/chalk_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/chalk_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/chalk_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/chalk_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/chalk_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/chalk_button.json b/src/main/resources/assets/strata/blockstates/chalk_button.json index f9da040b..20535edc 100644 --- a/src/main/resources/assets/strata/blockstates/chalk_button.json +++ b/src/main/resources/assets/strata/blockstates/chalk_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/chalk_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/chalk_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/chalk_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/chalk_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/chalk_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/chalk_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/chalk_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/chalk_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/chalk_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/chalk_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/chalk_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/chalk_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/chalk_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/chalk_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/chalk_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/chalk_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/chalk_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/chalk_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/chalk_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/chalk_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/chalk_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/chalk_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/chalk_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/chalk_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/chalk_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/chalk_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/chalk_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/chalk_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/chalk_cobblestone_wall.json index 22e72e34..aa68e03d 100644 --- a/src/main/resources/assets/strata/blockstates/chalk_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/chalk_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/chalk_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/chalk_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/chalk_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/chalk_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/chalk_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/chalk_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/chalk_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/chalk_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/chalk_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/chalk_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/chalk_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/chalk_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/chalk_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/chalk_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/chalk_wall.json b/src/main/resources/assets/strata/blockstates/chalk_wall.json index 06dffcf4..5b6a2578 100644 --- a/src/main/resources/assets/strata/blockstates/chalk_wall.json +++ b/src/main/resources/assets/strata/blockstates/chalk_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/chalk_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/chalk_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/chalk_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/chalk_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/chalk_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/chalk_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/chalk_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/chalk_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/chalk_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/chalk_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/chalk_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/chalk_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/chalk_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/chalk_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/claystone_brick_wall.json b/src/main/resources/assets/strata/blockstates/claystone_brick_wall.json index e80c0e75..3dc91895 100644 --- a/src/main/resources/assets/strata/blockstates/claystone_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/claystone_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/claystone_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/claystone_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/claystone_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/claystone_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/claystone_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/claystone_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/claystone_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/claystone_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/claystone_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/claystone_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/claystone_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/claystone_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/claystone_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/claystone_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/claystone_button.json b/src/main/resources/assets/strata/blockstates/claystone_button.json index 5b0ce139..15f05df0 100644 --- a/src/main/resources/assets/strata/blockstates/claystone_button.json +++ b/src/main/resources/assets/strata/blockstates/claystone_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/claystone_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/claystone_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/claystone_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/claystone_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/claystone_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/claystone_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/claystone_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/claystone_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/claystone_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/claystone_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/claystone_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/claystone_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/claystone_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/claystone_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/claystone_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/claystone_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/claystone_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/claystone_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/claystone_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/claystone_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/claystone_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/claystone_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/claystone_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/claystone_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/claystone_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/claystone_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/claystone_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/claystone_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/claystone_cobblestone_wall.json index c08356d1..010a2747 100644 --- a/src/main/resources/assets/strata/blockstates/claystone_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/claystone_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/claystone_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/claystone_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/claystone_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/claystone_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/claystone_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/claystone_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/claystone_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/claystone_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/claystone_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/claystone_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/claystone_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/claystone_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/claystone_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/claystone_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/claystone_wall.json b/src/main/resources/assets/strata/blockstates/claystone_wall.json index 4637d12c..4c8a8eac 100644 --- a/src/main/resources/assets/strata/blockstates/claystone_wall.json +++ b/src/main/resources/assets/strata/blockstates/claystone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/claystone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/claystone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/claystone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/claystone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/claystone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/claystone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/claystone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/claystone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/claystone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/claystone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/claystone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/claystone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/claystone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/claystone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/dacite_brick_wall.json b/src/main/resources/assets/strata/blockstates/dacite_brick_wall.json index 0d79864b..a95822df 100644 --- a/src/main/resources/assets/strata/blockstates/dacite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/dacite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/dacite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/dacite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/dacite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/dacite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/dacite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/dacite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/dacite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/dacite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/dacite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/dacite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/dacite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/dacite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/dacite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/dacite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/dacite_button.json b/src/main/resources/assets/strata/blockstates/dacite_button.json index 5cdbd73c..55b6f7fd 100644 --- a/src/main/resources/assets/strata/blockstates/dacite_button.json +++ b/src/main/resources/assets/strata/blockstates/dacite_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/dacite_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/dacite_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/dacite_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/dacite_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/dacite_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/dacite_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/dacite_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/dacite_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/dacite_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/dacite_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/dacite_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/dacite_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/dacite_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/dacite_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/dacite_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/dacite_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/dacite_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/dacite_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/dacite_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/dacite_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/dacite_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/dacite_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/dacite_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/dacite_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/dacite_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/dacite_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/dacite_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/dacite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/dacite_cobblestone_wall.json index 73907758..e06780a8 100644 --- a/src/main/resources/assets/strata/blockstates/dacite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/dacite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/dacite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/dacite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/dacite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/dacite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/dacite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/dacite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/dacite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/dacite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/dacite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/dacite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/dacite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/dacite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/dacite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/dacite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/dacite_wall.json b/src/main/resources/assets/strata/blockstates/dacite_wall.json index 378355e8..3114370c 100644 --- a/src/main/resources/assets/strata/blockstates/dacite_wall.json +++ b/src/main/resources/assets/strata/blockstates/dacite_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/dacite_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/dacite_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/dacite_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/dacite_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/dacite_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/dacite_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/dacite_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/dacite_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/dacite_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/dacite_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/dacite_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/dacite_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/dacite_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/dacite_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/dolomite_brick_wall.json b/src/main/resources/assets/strata/blockstates/dolomite_brick_wall.json index 6ab7f514..6b775bc6 100644 --- a/src/main/resources/assets/strata/blockstates/dolomite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/dolomite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/dolomite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/dolomite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/dolomite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/dolomite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/dolomite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/dolomite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/dolomite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/dolomite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/dolomite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/dolomite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/dolomite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/dolomite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/dolomite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/dolomite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/dolomite_button.json b/src/main/resources/assets/strata/blockstates/dolomite_button.json index e5aa528e..7bcad776 100644 --- a/src/main/resources/assets/strata/blockstates/dolomite_button.json +++ b/src/main/resources/assets/strata/blockstates/dolomite_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/dolomite_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/dolomite_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/dolomite_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/dolomite_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/dolomite_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/dolomite_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/dolomite_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/dolomite_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/dolomite_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/dolomite_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/dolomite_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/dolomite_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/dolomite_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/dolomite_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/dolomite_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/dolomite_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/dolomite_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/dolomite_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/dolomite_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/dolomite_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/dolomite_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/dolomite_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/dolomite_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/dolomite_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/dolomite_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/dolomite_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/dolomite_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/dolomite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/dolomite_cobblestone_wall.json index ee7a48eb..ffc12a99 100644 --- a/src/main/resources/assets/strata/blockstates/dolomite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/dolomite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/dolomite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/dolomite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/dolomite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/dolomite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/dolomite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/dolomite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/dolomite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/dolomite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/dolomite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/dolomite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/dolomite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/dolomite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/dolomite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/dolomite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/dolomite_wall.json b/src/main/resources/assets/strata/blockstates/dolomite_wall.json index 814379cc..eaf89567 100644 --- a/src/main/resources/assets/strata/blockstates/dolomite_wall.json +++ b/src/main/resources/assets/strata/blockstates/dolomite_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/dolomite_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/dolomite_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/dolomite_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/dolomite_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/dolomite_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/dolomite_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/dolomite_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/dolomite_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/dolomite_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/dolomite_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/dolomite_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/dolomite_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/dolomite_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/dolomite_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/dunite_brick_wall.json b/src/main/resources/assets/strata/blockstates/dunite_brick_wall.json index ee59a1ff..88a40cc6 100644 --- a/src/main/resources/assets/strata/blockstates/dunite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/dunite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/dunite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/dunite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/dunite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/dunite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/dunite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/dunite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/dunite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/dunite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/dunite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/dunite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/dunite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/dunite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/dunite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/dunite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/dunite_button.json b/src/main/resources/assets/strata/blockstates/dunite_button.json index eed16500..ad0425fc 100644 --- a/src/main/resources/assets/strata/blockstates/dunite_button.json +++ b/src/main/resources/assets/strata/blockstates/dunite_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/dunite_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/dunite_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/dunite_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/dunite_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/dunite_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/dunite_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/dunite_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/dunite_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/dunite_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/dunite_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/dunite_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/dunite_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/dunite_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/dunite_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/dunite_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/dunite_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/dunite_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/dunite_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/dunite_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/dunite_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/dunite_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/dunite_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/dunite_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/dunite_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/dunite_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/dunite_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/dunite_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/dunite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/dunite_cobblestone_wall.json index 532f34e1..b4c78770 100644 --- a/src/main/resources/assets/strata/blockstates/dunite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/dunite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/dunite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/dunite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/dunite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/dunite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/dunite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/dunite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/dunite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/dunite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/dunite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/dunite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/dunite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/dunite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/dunite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/dunite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/dunite_wall.json b/src/main/resources/assets/strata/blockstates/dunite_wall.json index 59fb578e..772e4267 100644 --- a/src/main/resources/assets/strata/blockstates/dunite_wall.json +++ b/src/main/resources/assets/strata/blockstates/dunite_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/dunite_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/dunite_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/dunite_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/dunite_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/dunite_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/dunite_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/dunite_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/dunite_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/dunite_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/dunite_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/dunite_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/dunite_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/dunite_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/dunite_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/eclogite_brick_wall.json b/src/main/resources/assets/strata/blockstates/eclogite_brick_wall.json index 7183227c..92494170 100644 --- a/src/main/resources/assets/strata/blockstates/eclogite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/eclogite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/eclogite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/eclogite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/eclogite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/eclogite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/eclogite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/eclogite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/eclogite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/eclogite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/eclogite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/eclogite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/eclogite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/eclogite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/eclogite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/eclogite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/eclogite_button.json b/src/main/resources/assets/strata/blockstates/eclogite_button.json index 289d7942..61d5600a 100644 --- a/src/main/resources/assets/strata/blockstates/eclogite_button.json +++ b/src/main/resources/assets/strata/blockstates/eclogite_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/eclogite_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/eclogite_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/eclogite_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/eclogite_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/eclogite_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/eclogite_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/eclogite_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/eclogite_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/eclogite_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/eclogite_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/eclogite_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/eclogite_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/eclogite_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/eclogite_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/eclogite_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/eclogite_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/eclogite_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/eclogite_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/eclogite_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/eclogite_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/eclogite_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/eclogite_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/eclogite_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/eclogite_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/eclogite_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/eclogite_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/eclogite_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/eclogite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/eclogite_cobblestone_wall.json index 2589ec62..ebafcbda 100644 --- a/src/main/resources/assets/strata/blockstates/eclogite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/eclogite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/eclogite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/eclogite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/eclogite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/eclogite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/eclogite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/eclogite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/eclogite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/eclogite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/eclogite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/eclogite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/eclogite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/eclogite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/eclogite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/eclogite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/eclogite_wall.json b/src/main/resources/assets/strata/blockstates/eclogite_wall.json index 5296b5ad..4c986b51 100644 --- a/src/main/resources/assets/strata/blockstates/eclogite_wall.json +++ b/src/main/resources/assets/strata/blockstates/eclogite_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/eclogite_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/eclogite_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/eclogite_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/eclogite_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/eclogite_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/eclogite_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/eclogite_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/eclogite_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/eclogite_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/eclogite_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/eclogite_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/eclogite_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/eclogite_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/eclogite_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/gabbro_brick_wall.json b/src/main/resources/assets/strata/blockstates/gabbro_brick_wall.json index cab558f8..71675eba 100644 --- a/src/main/resources/assets/strata/blockstates/gabbro_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/gabbro_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/gabbro_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/gabbro_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/gabbro_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/gabbro_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/gabbro_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} + "multipart": [ + { + "apply": { + "model": "strata:block/gabbro_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/gabbro_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/gabbro_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/gabbro_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/gabbro_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/gabbro_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/gabbro_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/gabbro_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/gabbro_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/gabbro_button.json b/src/main/resources/assets/strata/blockstates/gabbro_button.json index c9af72d0..0cb62f67 100644 --- a/src/main/resources/assets/strata/blockstates/gabbro_button.json +++ b/src/main/resources/assets/strata/blockstates/gabbro_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/gabbro_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/gabbro_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/gabbro_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/gabbro_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/gabbro_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/gabbro_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/gabbro_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/gabbro_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/gabbro_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/gabbro_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/gabbro_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/gabbro_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/gabbro_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/gabbro_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/gabbro_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/gabbro_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/gabbro_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/gabbro_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/gabbro_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/gabbro_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/gabbro_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/gabbro_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/gabbro_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/gabbro_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/gabbro_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/gabbro_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/gabbro_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/gabbro_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/gabbro_cobblestone_wall.json index 245c71e9..2afdd4aa 100644 --- a/src/main/resources/assets/strata/blockstates/gabbro_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/gabbro_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/gabbro_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/gabbro_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/gabbro_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/gabbro_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/gabbro_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/gabbro_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/gabbro_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/gabbro_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/gabbro_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/gabbro_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/gabbro_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/gabbro_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/gabbro_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/gabbro_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/gabbro_wall.json b/src/main/resources/assets/strata/blockstates/gabbro_wall.json index cc486115..443d41bf 100644 --- a/src/main/resources/assets/strata/blockstates/gabbro_wall.json +++ b/src/main/resources/assets/strata/blockstates/gabbro_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/gabbro_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/gabbro_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/gabbro_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/gabbro_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/gabbro_wall_side", "y": 270, "uvlock": true } - } - ] -} + "multipart": [ + { + "apply": { + "model": "strata:block/gabbro_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/gabbro_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/gabbro_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/gabbro_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/gabbro_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/gabbro_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/gabbro_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/gabbro_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/gabbro_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/gneis_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/gneis_cobblestone_wall.json deleted file mode 100644 index 05c2aebc..00000000 --- a/src/main/resources/assets/strata/blockstates/gneis_cobblestone_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/gneis_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/gneis_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/gneis_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/gneis_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/gneis_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/gneiss_brick_wall.json b/src/main/resources/assets/strata/blockstates/gneiss_brick_wall.json index 2a3ca669..1765f839 100644 --- a/src/main/resources/assets/strata/blockstates/gneiss_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/gneiss_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/gneiss_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/gneiss_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/gneiss_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/gneiss_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/gneiss_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} + "multipart": [ + { + "apply": { + "model": "strata:block/gneiss_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/gneiss_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/gneiss_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/gneiss_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/gneiss_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/gneiss_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/gneiss_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/gneiss_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/gneiss_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/gneiss_button.json b/src/main/resources/assets/strata/blockstates/gneiss_button.json index bbe874dc..3438d7f7 100644 --- a/src/main/resources/assets/strata/blockstates/gneiss_button.json +++ b/src/main/resources/assets/strata/blockstates/gneiss_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/gneiss_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/gneiss_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/gneiss_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/gneiss_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/gneiss_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/gneiss_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/gneiss_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/gneiss_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/gneiss_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/gneiss_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/gneiss_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/gneiss_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/gneiss_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/gneiss_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/gneiss_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/gneiss_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/gneiss_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/gneiss_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/gneiss_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/gneiss_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/gneiss_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/gneiss_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/gneiss_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/gneiss_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/gneiss_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/gneiss_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/gneiss_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/gneiss_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/gneiss_cobblestone_wall.json index 71639b41..4f305e4e 100644 --- a/src/main/resources/assets/strata/blockstates/gneiss_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/gneiss_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/gneiss_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/gneiss_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/gneiss_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/gneiss_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/gneiss_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/gneiss_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/gneiss_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/gneiss_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/gneiss_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/gneiss_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/gneiss_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/gneiss_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/gneiss_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/gneiss_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/gneiss_wall.json b/src/main/resources/assets/strata/blockstates/gneiss_wall.json index 891bc462..dbc368e8 100644 --- a/src/main/resources/assets/strata/blockstates/gneiss_wall.json +++ b/src/main/resources/assets/strata/blockstates/gneiss_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/gneiss_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/gneiss_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/gneiss_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/gneiss_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/gneiss_wall_side", "y": 270, "uvlock": true } - } - ] -} + "multipart": [ + { + "apply": { + "model": "strata:block/gneiss_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/gneiss_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/gneiss_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/gneiss_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/gneiss_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/gneiss_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/gneiss_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/gneiss_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/gneiss_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/jaspillite_brick_wall.json b/src/main/resources/assets/strata/blockstates/jaspillite_brick_wall.json index e790a8c4..60290490 100644 --- a/src/main/resources/assets/strata/blockstates/jaspillite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/jaspillite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/jaspillite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/jaspillite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/jaspillite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/jaspillite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/jaspillite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/jaspillite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/jaspillite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/jaspillite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/jaspillite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/jaspillite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/jaspillite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/jaspillite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/jaspillite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/jaspillite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/jaspillite_button.json b/src/main/resources/assets/strata/blockstates/jaspillite_button.json index b27c5ab2..7c4bc2f2 100644 --- a/src/main/resources/assets/strata/blockstates/jaspillite_button.json +++ b/src/main/resources/assets/strata/blockstates/jaspillite_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/jaspillite_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/jaspillite_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/jaspillite_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/jaspillite_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/jaspillite_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/jaspillite_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/jaspillite_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/jaspillite_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/jaspillite_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/jaspillite_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/jaspillite_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/jaspillite_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/jaspillite_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/jaspillite_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/jaspillite_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/jaspillite_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/jaspillite_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/jaspillite_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/jaspillite_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/jaspillite_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/jaspillite_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/jaspillite_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/jaspillite_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/jaspillite_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/jaspillite_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/jaspillite_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/jaspillite_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/jaspillite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/jaspillite_cobblestone_wall.json index 6c785b3a..f867102a 100644 --- a/src/main/resources/assets/strata/blockstates/jaspillite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/jaspillite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/jaspillite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/jaspillite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/jaspillite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/jaspillite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/jaspillite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/jaspillite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/jaspillite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/jaspillite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/jaspillite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/jaspillite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/jaspillite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/jaspillite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/jaspillite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/jaspillite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/jaspillite_wall.json b/src/main/resources/assets/strata/blockstates/jaspillite_wall.json index 13b6fc64..0e03307e 100644 --- a/src/main/resources/assets/strata/blockstates/jaspillite_wall.json +++ b/src/main/resources/assets/strata/blockstates/jaspillite_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/jaspillite_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/jaspillite_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/jaspillite_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/jaspillite_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/jaspillite_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/jaspillite_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/jaspillite_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/jaspillite_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/jaspillite_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/jaspillite_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/jaspillite_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/jaspillite_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/jaspillite_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/jaspillite_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/komatiite_brick_wall.json b/src/main/resources/assets/strata/blockstates/komatiite_brick_wall.json index 5180ed42..34b0f82a 100644 --- a/src/main/resources/assets/strata/blockstates/komatiite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/komatiite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/komatiite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/komatiite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/komatiite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/komatiite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/komatiite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/komatiite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/komatiite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/komatiite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/komatiite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/komatiite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/komatiite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/komatiite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/komatiite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/komatiite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/komatiite_button.json b/src/main/resources/assets/strata/blockstates/komatiite_button.json index 4500f298..d81edaad 100644 --- a/src/main/resources/assets/strata/blockstates/komatiite_button.json +++ b/src/main/resources/assets/strata/blockstates/komatiite_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/komatiite_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/komatiite_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/komatiite_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/komatiite_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/komatiite_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/komatiite_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/komatiite_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/komatiite_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/komatiite_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/komatiite_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/komatiite_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/komatiite_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/komatiite_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/komatiite_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/komatiite_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/komatiite_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/komatiite_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/komatiite_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/komatiite_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/komatiite_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/komatiite_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/komatiite_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/komatiite_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/komatiite_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/komatiite_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/komatiite_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/komatiite_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/komatiite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/komatiite_cobblestone_wall.json index c34ceca1..7049e367 100644 --- a/src/main/resources/assets/strata/blockstates/komatiite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/komatiite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/komatiite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/komatiite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/komatiite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/komatiite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/komatiite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/komatiite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/komatiite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/komatiite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/komatiite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/komatiite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/komatiite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/komatiite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/komatiite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/komatiite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/komatiite_wall.json b/src/main/resources/assets/strata/blockstates/komatiite_wall.json index 12568cc3..c405d020 100644 --- a/src/main/resources/assets/strata/blockstates/komatiite_wall.json +++ b/src/main/resources/assets/strata/blockstates/komatiite_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/komatiite_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/komatiite_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/komatiite_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/komatiite_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/komatiite_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/komatiite_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/komatiite_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/komatiite_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/komatiite_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/komatiite_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/komatiite_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/komatiite_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/komatiite_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/komatiite_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/limestone_brick_wall.json b/src/main/resources/assets/strata/blockstates/limestone_brick_wall.json index 0f0d8699..8eb094df 100644 --- a/src/main/resources/assets/strata/blockstates/limestone_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/limestone_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/limestone_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/limestone_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/limestone_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/limestone_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/limestone_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} + "multipart": [ + { + "apply": { + "model": "strata:block/limestone_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/limestone_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/limestone_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/limestone_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/limestone_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/limestone_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/limestone_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/limestone_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/limestone_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/limestone_button.json b/src/main/resources/assets/strata/blockstates/limestone_button.json index 76e58b79..0e5973d1 100644 --- a/src/main/resources/assets/strata/blockstates/limestone_button.json +++ b/src/main/resources/assets/strata/blockstates/limestone_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/limestone_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/limestone_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/limestone_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/limestone_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/limestone_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/limestone_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/limestone_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/limestone_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/limestone_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/limestone_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/limestone_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/limestone_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/limestone_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/limestone_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/limestone_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/limestone_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/limestone_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/limestone_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/limestone_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/limestone_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/limestone_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/limestone_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/limestone_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/limestone_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/limestone_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/limestone_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/limestone_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/limestone_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/limestone_cobblestone_wall.json index 00bb5bae..7dd5c5bb 100644 --- a/src/main/resources/assets/strata/blockstates/limestone_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/limestone_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/limestone_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/limestone_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/limestone_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/limestone_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/limestone_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/limestone_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/limestone_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/limestone_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/limestone_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/limestone_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/limestone_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/limestone_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/limestone_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/limestone_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/limestone_wall.json b/src/main/resources/assets/strata/blockstates/limestone_wall.json index ee9c7a07..d039a183 100644 --- a/src/main/resources/assets/strata/blockstates/limestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/limestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/limestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/limestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/limestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/limestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/limestone_wall_side", "y": 270, "uvlock": true } - } - ] -} + "multipart": [ + { + "apply": { + "model": "strata:block/limestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/limestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/limestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/limestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/limestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/limestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/limestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/limestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/limestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/marble_brick_wall.json b/src/main/resources/assets/strata/blockstates/marble_brick_wall.json index e9737be8..d96e8cf6 100644 --- a/src/main/resources/assets/strata/blockstates/marble_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/marble_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/marble_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/marble_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/marble_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/marble_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/marble_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/marble_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/marble_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/marble_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/marble_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/marble_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/marble_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/marble_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/marble_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/marble_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/marble_button.json b/src/main/resources/assets/strata/blockstates/marble_button.json index 5a716eeb..5c610c11 100644 --- a/src/main/resources/assets/strata/blockstates/marble_button.json +++ b/src/main/resources/assets/strata/blockstates/marble_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/marble_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/marble_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/marble_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/marble_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/marble_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/marble_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/marble_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/marble_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/marble_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/marble_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/marble_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/marble_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/marble_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/marble_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/marble_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/marble_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/marble_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/marble_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/marble_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/marble_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/marble_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/marble_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/marble_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/marble_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/marble_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/marble_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/marble_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/marble_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/marble_cobblestone_wall.json index 0c29a55b..ba58a5b2 100644 --- a/src/main/resources/assets/strata/blockstates/marble_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/marble_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/marble_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/marble_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/marble_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/marble_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/marble_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/marble_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/marble_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/marble_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/marble_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/marble_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/marble_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/marble_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/marble_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/marble_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/marble_wall.json b/src/main/resources/assets/strata/blockstates/marble_wall.json index 27b3650b..e6fb6d00 100644 --- a/src/main/resources/assets/strata/blockstates/marble_wall.json +++ b/src/main/resources/assets/strata/blockstates/marble_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/marble_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/marble_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/marble_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/marble_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/marble_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/marble_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/marble_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/marble_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/marble_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/marble_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/marble_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/marble_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/marble_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/marble_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/migmatite_brick_wall.json b/src/main/resources/assets/strata/blockstates/migmatite_brick_wall.json index e0b6af1d..c1c06d2b 100644 --- a/src/main/resources/assets/strata/blockstates/migmatite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/migmatite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/migmatite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/migmatite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/migmatite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/migmatite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/migmatite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/migmatite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/migmatite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/migmatite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/migmatite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/migmatite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/migmatite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/migmatite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/migmatite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/migmatite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/migmatite_button.json b/src/main/resources/assets/strata/blockstates/migmatite_button.json index 8a805562..84db5de1 100644 --- a/src/main/resources/assets/strata/blockstates/migmatite_button.json +++ b/src/main/resources/assets/strata/blockstates/migmatite_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/migmatite_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/migmatite_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/migmatite_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/migmatite_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/migmatite_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/migmatite_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/migmatite_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/migmatite_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/migmatite_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/migmatite_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/migmatite_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/migmatite_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/migmatite_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/migmatite_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/migmatite_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/migmatite_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/migmatite_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/migmatite_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/migmatite_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/migmatite_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/migmatite_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/migmatite_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/migmatite_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/migmatite_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/migmatite_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/migmatite_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/migmatite_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/migmatite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/migmatite_cobblestone_wall.json index 200ffd48..b700953e 100644 --- a/src/main/resources/assets/strata/blockstates/migmatite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/migmatite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/migmatite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/migmatite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/migmatite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/migmatite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/migmatite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/migmatite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/migmatite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/migmatite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/migmatite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/migmatite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/migmatite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/migmatite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/migmatite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/migmatite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/migmatite_wall.json b/src/main/resources/assets/strata/blockstates/migmatite_wall.json index 8c69a67d..8b3a57dd 100644 --- a/src/main/resources/assets/strata/blockstates/migmatite_wall.json +++ b/src/main/resources/assets/strata/blockstates/migmatite_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/migmatite_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/migmatite_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/migmatite_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/migmatite_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/migmatite_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/migmatite_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/migmatite_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/migmatite_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/migmatite_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/migmatite_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/migmatite_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/migmatite_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/migmatite_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/migmatite_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_aa_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_aa_brick_wall.json index 311224f9..df306602 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_aa_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_aa_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_aa_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_aa_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_aa_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_aa_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_aa_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_aa_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_aa_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_aa_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_aa_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_aa_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_aa_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_aa_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_aa_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_aa_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_aa_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_aa_cobblestone_wall.json index 27dbcd96..2b442b39 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_aa_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_aa_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_aa_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_aa_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_aa_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_aa_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_aa_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_aa_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_aa_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_aa_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_aa_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_aa_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_aa_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_aa_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_aa_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_aa_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_adakite_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_adakite_brick_wall.json index 5b16b8a3..d7158313 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_adakite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_adakite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_adakite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_adakite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_adakite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_adakite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_adakite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_adakite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_adakite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_adakite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_adakite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_adakite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_adakite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_adakite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_adakite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_adakite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_adakite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_adakite_cobblestone_wall.json index b4ecec79..6eecb5e3 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_adakite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_adakite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_adakite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_adakite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_adakite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_adakite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_adakite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_adakite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_adakite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_adakite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_adakite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_adakite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_adakite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_adakite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_adakite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_adakite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_amphibolite_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_amphibolite_brick_wall.json index 2398d655..c1c5c838 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_amphibolite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_amphibolite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_amphibolite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_amphibolite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_amphibolite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_amphibolite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_amphibolite_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_amphibolite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_amphibolite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_amphibolite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_amphibolite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_amphibolite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_amphibolite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_amphibolite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_amphibolite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_amphibolite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_amphibolite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_amphibolite_cobblestone_wall.json index c0fbd2bf..1f2d766e 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_amphibolite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_amphibolite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_amphibolite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_amphibolite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_amphibolite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_amphibolite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_amphibolite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_amphibolite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_amphibolite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_amphibolite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_amphibolite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_amphibolite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_amphibolite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_amphibolite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_amphibolite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_amphibolite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_argillite_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_argillite_brick_wall.json index e310fa0e..3994e37b 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_argillite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_argillite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_argillite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_argillite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_argillite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_argillite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_argillite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_argillite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_argillite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_argillite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_argillite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_argillite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_argillite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_argillite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_argillite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_argillite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_argillite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_argillite_cobblestone_wall.json index 37d9ece3..374f3bba 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_argillite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_argillite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_argillite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_argillite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_argillite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_argillite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_argillite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_argillite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_argillite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_argillite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_argillite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_argillite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_argillite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_argillite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_argillite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_argillite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_arkose_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_arkose_brick_wall.json index a339faa4..355a7f09 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_arkose_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_arkose_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_arkose_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_arkose_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_arkose_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_arkose_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_arkose_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_arkose_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_arkose_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_arkose_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_arkose_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_arkose_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_arkose_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_arkose_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_arkose_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_arkose_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_arkose_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_arkose_cobblestone_wall.json index c7a02852..d5aae7bb 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_arkose_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_arkose_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_arkose_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_arkose_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_arkose_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_arkose_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_arkose_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_arkose_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_arkose_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_arkose_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_arkose_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_arkose_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_arkose_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_arkose_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_arkose_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_arkose_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_basalt_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_basalt_brick_wall.json deleted file mode 100644 index 70a07a52..00000000 --- a/src/main/resources/assets/strata/blockstates/mossy_basalt_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_basalt_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_basalt_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_basalt_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_basalt_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_basalt_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/main/resources/assets/strata/blockstates/mossy_basalt_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_basalt_cobblestone_wall.json deleted file mode 100644 index 90103991..00000000 --- a/src/main/resources/assets/strata/blockstates/mossy_basalt_cobblestone_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_basalt_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_basalt_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_basalt_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_basalt_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_basalt_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_breccia_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_breccia_brick_wall.json index a724f804..f7aa9695 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_breccia_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_breccia_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_breccia_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_breccia_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_breccia_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_breccia_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_breccia_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_breccia_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_breccia_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_breccia_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_breccia_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_breccia_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_breccia_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_breccia_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_breccia_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_breccia_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_breccia_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_breccia_cobblestone_wall.json index 1c8e9f19..fd761d9a 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_breccia_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_breccia_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_breccia_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_breccia_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_breccia_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_breccia_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_breccia_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_breccia_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_breccia_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_breccia_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_breccia_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_breccia_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_breccia_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_breccia_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_breccia_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_breccia_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_cataclasite_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_cataclasite_brick_wall.json index 22d7d228..607c8b5c 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_cataclasite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_cataclasite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_cataclasite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_cataclasite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_cataclasite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_cataclasite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_cataclasite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_cataclasite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_cataclasite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_cataclasite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_cataclasite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_cataclasite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_cataclasite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_cataclasite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_cataclasite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_cataclasite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_cataclasite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_cataclasite_cobblestone_wall.json index 66371935..a769ce78 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_cataclasite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_cataclasite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_cataclasite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_cataclasite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_cataclasite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_cataclasite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_cataclasite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_cataclasite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_cataclasite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_cataclasite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_cataclasite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_cataclasite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_cataclasite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_cataclasite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_cataclasite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_cataclasite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_chalk_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_chalk_brick_wall.json index 33a20151..68c9cb94 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_chalk_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_chalk_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_chalk_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_chalk_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_chalk_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_chalk_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_chalk_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_chalk_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_chalk_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_chalk_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_chalk_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_chalk_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_chalk_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_chalk_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_chalk_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_chalk_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_chalk_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_chalk_cobblestone_wall.json index fa0d81f2..b66238aa 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_chalk_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_chalk_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_chalk_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_chalk_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_chalk_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_chalk_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_chalk_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_chalk_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_chalk_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_chalk_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_chalk_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_chalk_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_chalk_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_chalk_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_chalk_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_chalk_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_claystone_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_claystone_brick_wall.json index 0e5764ee..2e66aefa 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_claystone_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_claystone_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_claystone_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_claystone_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_claystone_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_claystone_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_claystone_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_claystone_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_claystone_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_claystone_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_claystone_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_claystone_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_claystone_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_claystone_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_claystone_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_claystone_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_claystone_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_claystone_cobblestone_wall.json index 8f85c71d..bd725f6d 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_claystone_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_claystone_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_claystone_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_claystone_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_claystone_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_claystone_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_claystone_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_claystone_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_claystone_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_claystone_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_claystone_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_claystone_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_claystone_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_claystone_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_claystone_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_claystone_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_dacite_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_dacite_brick_wall.json index e1adf08a..cc30b503 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_dacite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_dacite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_dacite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_dacite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_dacite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_dacite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_dacite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_dacite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_dacite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_dacite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_dacite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_dacite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_dacite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_dacite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_dacite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_dacite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_dacite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_dacite_cobblestone_wall.json index 0593b5a2..49ee3e1a 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_dacite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_dacite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_dacite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_dacite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_dacite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_dacite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_dacite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_dacite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_dacite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_dacite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_dacite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_dacite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_dacite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_dacite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_dacite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_dacite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_dolomite_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_dolomite_brick_wall.json index dd7ec1cb..779e1fc4 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_dolomite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_dolomite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_dolomite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_dolomite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_dolomite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_dolomite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_dolomite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_dolomite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_dolomite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_dolomite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_dolomite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_dolomite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_dolomite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_dolomite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_dolomite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_dolomite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_dolomite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_dolomite_cobblestone_wall.json index 23e3323f..2fac5160 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_dolomite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_dolomite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_dolomite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_dolomite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_dolomite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_dolomite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_dolomite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_dolomite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_dolomite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_dolomite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_dolomite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_dolomite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_dolomite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_dolomite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_dolomite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_dolomite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_dunite_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_dunite_brick_wall.json index 59cd44b6..b949b979 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_dunite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_dunite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_dunite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_dunite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_dunite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_dunite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_dunite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_dunite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_dunite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_dunite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_dunite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_dunite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_dunite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_dunite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_dunite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_dunite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_dunite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_dunite_cobblestone_wall.json index 21bf470e..d13269aa 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_dunite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_dunite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_dunite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_dunite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_dunite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_dunite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_dunite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_dunite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_dunite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_dunite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_dunite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_dunite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_dunite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_dunite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_dunite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_dunite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_eclogite_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_eclogite_brick_wall.json index 85dc14e7..29842add 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_eclogite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_eclogite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_eclogite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_eclogite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_eclogite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_eclogite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_eclogite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_eclogite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_eclogite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_eclogite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_eclogite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_eclogite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_eclogite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_eclogite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_eclogite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_eclogite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_eclogite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_eclogite_cobblestone_wall.json index 67bef0b9..84a7d25c 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_eclogite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_eclogite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_eclogite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_eclogite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_eclogite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_eclogite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_eclogite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_eclogite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_eclogite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_eclogite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_eclogite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_eclogite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_eclogite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_eclogite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_eclogite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_eclogite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_gabbro_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_gabbro_brick_wall.json index 3d7dad68..b426b7f4 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_gabbro_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_gabbro_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_gabbro_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_gabbro_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_gabbro_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_gabbro_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_gabbro_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_gabbro_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_gabbro_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_gabbro_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_gabbro_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_gabbro_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_gabbro_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_gabbro_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_gabbro_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_gabbro_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_gabbro_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_gabbro_cobblestone_wall.json index 00dea7d7..f25fe9e7 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_gabbro_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_gabbro_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_gabbro_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_gabbro_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_gabbro_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_gabbro_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_gabbro_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_gabbro_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_gabbro_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_gabbro_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_gabbro_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_gabbro_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_gabbro_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_gabbro_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_gabbro_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_gabbro_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_gneiss_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_gneiss_brick_wall.json index f041b417..d885b2f0 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_gneiss_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_gneiss_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_gneiss_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_gneiss_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_gneiss_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_gneiss_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_gneiss_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_gneiss_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_gneiss_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_gneiss_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_gneiss_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_gneiss_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_gneiss_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_gneiss_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_gneiss_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_gneiss_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_gneiss_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_gneiss_cobblestone_wall.json index 887b3f8a..4c7b8f66 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_gneiss_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_gneiss_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_gneiss_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_gneiss_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_gneiss_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_gneiss_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_gneiss_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_gneiss_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_gneiss_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_gneiss_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_gneiss_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_gneiss_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_gneiss_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_gneiss_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_gneiss_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_gneiss_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_jaspillite_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_jaspillite_brick_wall.json index b10f9fe4..dc9b759e 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_jaspillite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_jaspillite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_jaspillite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_jaspillite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_jaspillite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_jaspillite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_jaspillite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_jaspillite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_jaspillite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_jaspillite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_jaspillite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_jaspillite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_jaspillite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_jaspillite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_jaspillite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_jaspillite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_jaspillite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_jaspillite_cobblestone_wall.json index 42a1df1e..340e80a9 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_jaspillite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_jaspillite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_jaspillite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_jaspillite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_jaspillite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_jaspillite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_jaspillite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_jaspillite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_jaspillite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_jaspillite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_jaspillite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_jaspillite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_jaspillite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_jaspillite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_jaspillite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_jaspillite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_komatiite_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_komatiite_brick_wall.json index 98a9c9f8..cc694e17 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_komatiite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_komatiite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_komatiite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_komatiite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_komatiite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_komatiite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_komatiite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_komatiite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_komatiite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_komatiite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_komatiite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_komatiite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_komatiite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_komatiite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_komatiite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_komatiite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_komatiite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_komatiite_cobblestone_wall.json index 74d8f45e..cbe3d541 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_komatiite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_komatiite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_komatiite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_komatiite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_komatiite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_komatiite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_komatiite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_komatiite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_komatiite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_komatiite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_komatiite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_komatiite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_komatiite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_komatiite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_komatiite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_komatiite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_limestone_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_limestone_brick_wall.json index b3817933..51c3034d 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_limestone_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_limestone_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_limestone_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_limestone_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_limestone_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_limestone_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_limestone_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_limestone_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_limestone_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_limestone_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_limestone_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_limestone_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_limestone_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_limestone_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_limestone_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_limestone_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_limestone_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_limestone_cobblestone_wall.json index 86cc171c..0199cda5 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_limestone_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_limestone_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_limestone_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_limestone_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_limestone_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_limestone_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_limestone_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_limestone_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_limestone_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_limestone_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_limestone_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_limestone_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_limestone_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_limestone_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_limestone_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_limestone_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_marble_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_marble_brick_wall.json index 2c516f7f..5b1c716a 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_marble_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_marble_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_marble_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_marble_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_marble_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_marble_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_marble_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_marble_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_marble_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_marble_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_marble_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_marble_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_marble_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_marble_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_marble_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_marble_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_marble_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_marble_cobblestone_wall.json index 92623c38..6256b0eb 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_marble_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_marble_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_marble_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_marble_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_marble_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_marble_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_marble_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_marble_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_marble_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_marble_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_marble_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_marble_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_marble_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_marble_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_marble_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_marble_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_migmatite_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_migmatite_brick_wall.json index 86ca8493..aae4cc59 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_migmatite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_migmatite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_migmatite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_migmatite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_migmatite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_migmatite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_migmatite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_migmatite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_migmatite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_migmatite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_migmatite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_migmatite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_migmatite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_migmatite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_migmatite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_migmatite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_migmatite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_migmatite_cobblestone_wall.json index 80033696..0eb8f061 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_migmatite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_migmatite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_migmatite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_migmatite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_migmatite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_migmatite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_migmatite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_migmatite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_migmatite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_migmatite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_migmatite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_migmatite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_migmatite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_migmatite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_migmatite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_migmatite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_mudstone_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_mudstone_brick_wall.json index ecc4d77e..04a3ee7b 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_mudstone_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_mudstone_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_mudstone_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_mudstone_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_mudstone_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_mudstone_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_mudstone_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_mudstone_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_mudstone_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_mudstone_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_mudstone_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_mudstone_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_mudstone_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_mudstone_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_mudstone_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_mudstone_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_mudstone_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_mudstone_cobblestone_wall.json index 7a6e97ed..a21a2616 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_mudstone_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_mudstone_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_mudstone_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_mudstone_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_mudstone_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_mudstone_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_mudstone_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_mudstone_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_mudstone_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_mudstone_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_mudstone_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_mudstone_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_mudstone_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_mudstone_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_mudstone_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_mudstone_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_pahoehoe_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_pahoehoe_brick_wall.json index b8a7ea40..b1e77c52 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_pahoehoe_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_pahoehoe_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_pahoehoe_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_pahoehoe_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_pahoehoe_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_pahoehoe_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_pahoehoe_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_pahoehoe_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_pahoehoe_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_pahoehoe_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_pahoehoe_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_pahoehoe_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_pahoehoe_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_pahoehoe_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_pahoehoe_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_pahoehoe_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_pahoehoe_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_pahoehoe_cobblestone_wall.json index be39a1d1..90aee785 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_pahoehoe_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_pahoehoe_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_pahoehoe_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_pahoehoe_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_pahoehoe_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_pahoehoe_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_pahoehoe_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_pahoehoe_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_pahoehoe_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_pahoehoe_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_pahoehoe_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_pahoehoe_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_pahoehoe_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_pahoehoe_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_pahoehoe_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_pahoehoe_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_pegmatite_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_pegmatite_brick_wall.json index ae2ff151..2918b79e 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_pegmatite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_pegmatite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_pegmatite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_pegmatite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_pegmatite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_pegmatite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_pegmatite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_pegmatite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_pegmatite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_pegmatite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_pegmatite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_pegmatite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_pegmatite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_pegmatite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_pegmatite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_pegmatite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_pegmatite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_pegmatite_cobblestone_wall.json index 3500f1b3..ca7c4394 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_pegmatite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_pegmatite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_pegmatite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_pegmatite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_pegmatite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_pegmatite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_pegmatite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_pegmatite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_pegmatite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_pegmatite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_pegmatite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_pegmatite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_pegmatite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_pegmatite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_pegmatite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_pegmatite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_phonolite_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_phonolite_brick_wall.json index fbffea8f..dfa7eb92 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_phonolite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_phonolite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_phonolite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_phonolite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_phonolite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_phonolite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_phonolite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_phonolite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_phonolite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_phonolite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_phonolite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_phonolite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_phonolite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_phonolite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_phonolite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_phonolite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_phonolite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_phonolite_cobblestone_wall.json index d2380554..237013bd 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_phonolite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_phonolite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_phonolite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_phonolite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_phonolite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_phonolite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_phonolite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_phonolite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_phonolite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_phonolite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_phonolite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_phonolite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_phonolite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_phonolite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_phonolite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_phonolite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_phyllite_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_phyllite_brick_wall.json index 57bfa1be..c488902c 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_phyllite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_phyllite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_phyllite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_phyllite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_phyllite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_phyllite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_phyllite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_phyllite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_phyllite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_phyllite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_phyllite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_phyllite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_phyllite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_phyllite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_phyllite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_phyllite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_phyllite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_phyllite_cobblestone_wall.json index dc5e817f..aee90f46 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_phyllite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_phyllite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_phyllite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_phyllite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_phyllite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_phyllite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_phyllite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_phyllite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_phyllite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_phyllite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_phyllite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_phyllite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_phyllite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_phyllite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_phyllite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_phyllite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_schist_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_schist_brick_wall.json index f90e133c..daf663c3 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_schist_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_schist_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_schist_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_schist_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_schist_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_schist_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_schist_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_schist_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_schist_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_schist_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_schist_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_schist_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_schist_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_schist_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_schist_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_schist_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_schist_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_schist_cobblestone_wall.json index a16817b5..a9729927 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_schist_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_schist_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_schist_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_schist_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_schist_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_schist_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_schist_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_schist_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_schist_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_schist_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_schist_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_schist_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_schist_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_schist_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_schist_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_schist_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_shale_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_shale_brick_wall.json index 9b2e0392..11499dfb 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_shale_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_shale_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_shale_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_shale_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_shale_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_shale_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_shale_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_shale_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_shale_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_shale_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_shale_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_shale_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_shale_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_shale_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_shale_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_shale_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_shale_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_shale_cobblestone_wall.json index c48972a5..55e21feb 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_shale_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_shale_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_shale_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_shale_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_shale_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_shale_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_shale_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_shale_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_shale_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_shale_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_shale_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_shale_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_shale_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_shale_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_shale_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_shale_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_slate_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_slate_brick_wall.json index 27cbd488..3534dc89 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_slate_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_slate_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_slate_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_slate_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_slate_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_slate_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_slate_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_slate_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_slate_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_slate_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_slate_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_slate_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_slate_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_slate_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_slate_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_slate_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_slate_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_slate_cobblestone_wall.json index 5a86954d..b5dd54e3 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_slate_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_slate_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_slate_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_slate_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_slate_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_slate_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_slate_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_slate_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_slate_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_slate_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_slate_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_slate_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_slate_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_slate_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_slate_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_slate_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_soapstone_brick_wall.json b/src/main/resources/assets/strata/blockstates/mossy_soapstone_brick_wall.json index 8154d558..e4ea3796 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_soapstone_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_soapstone_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_soapstone_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_soapstone_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_soapstone_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_soapstone_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_soapstone_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_soapstone_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_soapstone_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_soapstone_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_soapstone_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_soapstone_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_soapstone_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_soapstone_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_soapstone_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_soapstone_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mossy_soapstone_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mossy_soapstone_cobblestone_wall.json index 2a85fe9c..abf27221 100644 --- a/src/main/resources/assets/strata/blockstates/mossy_soapstone_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mossy_soapstone_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_soapstone_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_soapstone_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_soapstone_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_soapstone_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_soapstone_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mossy_soapstone_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mossy_soapstone_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_soapstone_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_soapstone_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_soapstone_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mossy_soapstone_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_soapstone_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_soapstone_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mossy_soapstone_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mudstone_brick_wall.json b/src/main/resources/assets/strata/blockstates/mudstone_brick_wall.json index ad469418..dea885a2 100644 --- a/src/main/resources/assets/strata/blockstates/mudstone_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/mudstone_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mudstone_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mudstone_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mudstone_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mudstone_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mudstone_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mudstone_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mudstone_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mudstone_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mudstone_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mudstone_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mudstone_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mudstone_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mudstone_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mudstone_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mudstone_button.json b/src/main/resources/assets/strata/blockstates/mudstone_button.json index 4f88ea05..1ba0d82c 100644 --- a/src/main/resources/assets/strata/blockstates/mudstone_button.json +++ b/src/main/resources/assets/strata/blockstates/mudstone_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/mudstone_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/mudstone_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/mudstone_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/mudstone_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/mudstone_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/mudstone_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/mudstone_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/mudstone_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/mudstone_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/mudstone_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/mudstone_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/mudstone_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/mudstone_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/mudstone_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/mudstone_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/mudstone_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/mudstone_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/mudstone_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/mudstone_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/mudstone_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/mudstone_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/mudstone_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/mudstone_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/mudstone_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/mudstone_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/mudstone_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/mudstone_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mudstone_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/mudstone_cobblestone_wall.json index 1af23d93..f076e44f 100644 --- a/src/main/resources/assets/strata/blockstates/mudstone_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mudstone_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mudstone_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mudstone_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mudstone_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mudstone_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mudstone_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mudstone_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mudstone_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mudstone_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mudstone_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mudstone_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mudstone_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mudstone_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mudstone_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mudstone_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/mudstone_wall.json b/src/main/resources/assets/strata/blockstates/mudstone_wall.json index 16e34a40..c893b168 100644 --- a/src/main/resources/assets/strata/blockstates/mudstone_wall.json +++ b/src/main/resources/assets/strata/blockstates/mudstone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mudstone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mudstone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mudstone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mudstone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mudstone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/mudstone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/mudstone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/mudstone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/mudstone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/mudstone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/mudstone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/mudstone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/mudstone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/mudstone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/pahoehoe_brick_wall.json b/src/main/resources/assets/strata/blockstates/pahoehoe_brick_wall.json index 384e0058..d958035f 100644 --- a/src/main/resources/assets/strata/blockstates/pahoehoe_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/pahoehoe_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/pahoehoe_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/pahoehoe_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/pahoehoe_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/pahoehoe_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/pahoehoe_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/pahoehoe_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/pahoehoe_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/pahoehoe_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/pahoehoe_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/pahoehoe_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/pahoehoe_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/pahoehoe_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/pahoehoe_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/pahoehoe_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/pahoehoe_button.json b/src/main/resources/assets/strata/blockstates/pahoehoe_button.json index ec97777e..8d0e9bd2 100644 --- a/src/main/resources/assets/strata/blockstates/pahoehoe_button.json +++ b/src/main/resources/assets/strata/blockstates/pahoehoe_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/pahoehoe_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/pahoehoe_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/pahoehoe_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/pahoehoe_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/pahoehoe_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/pahoehoe_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/pahoehoe_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/pahoehoe_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/pahoehoe_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/pahoehoe_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/pahoehoe_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/pahoehoe_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/pahoehoe_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/pahoehoe_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/pahoehoe_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/pahoehoe_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/pahoehoe_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/pahoehoe_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/pahoehoe_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/pahoehoe_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/pahoehoe_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/pahoehoe_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/pahoehoe_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/pahoehoe_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/pahoehoe_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/pahoehoe_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/pahoehoe_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/pahoehoe_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/pahoehoe_cobblestone_wall.json index 304e2c0c..b0683446 100644 --- a/src/main/resources/assets/strata/blockstates/pahoehoe_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/pahoehoe_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/pahoehoe_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/pahoehoe_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/pahoehoe_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/pahoehoe_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/pahoehoe_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/pahoehoe_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/pahoehoe_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/pahoehoe_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/pahoehoe_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/pahoehoe_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/pahoehoe_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/pahoehoe_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/pahoehoe_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/pahoehoe_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/pahoehoe_wall.json b/src/main/resources/assets/strata/blockstates/pahoehoe_wall.json index 98733d6c..4d10a9e7 100644 --- a/src/main/resources/assets/strata/blockstates/pahoehoe_wall.json +++ b/src/main/resources/assets/strata/blockstates/pahoehoe_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/pahoehoe_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/pahoehoe_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/pahoehoe_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/pahoehoe_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/pahoehoe_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/pahoehoe_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/pahoehoe_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/pahoehoe_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/pahoehoe_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/pahoehoe_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/pahoehoe_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/pahoehoe_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/pahoehoe_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/pahoehoe_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/pegmatite_brick_wall.json b/src/main/resources/assets/strata/blockstates/pegmatite_brick_wall.json index cc67f876..212ee841 100644 --- a/src/main/resources/assets/strata/blockstates/pegmatite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/pegmatite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/pegmatite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/pegmatite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/pegmatite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/pegmatite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/pegmatite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/pegmatite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/pegmatite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/pegmatite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/pegmatite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/pegmatite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/pegmatite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/pegmatite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/pegmatite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/pegmatite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/pegmatite_button.json b/src/main/resources/assets/strata/blockstates/pegmatite_button.json index 93458e50..426b93e4 100644 --- a/src/main/resources/assets/strata/blockstates/pegmatite_button.json +++ b/src/main/resources/assets/strata/blockstates/pegmatite_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/pegmatite_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/pegmatite_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/pegmatite_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/pegmatite_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/pegmatite_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/pegmatite_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/pegmatite_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/pegmatite_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/pegmatite_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/pegmatite_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/pegmatite_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/pegmatite_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/pegmatite_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/pegmatite_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/pegmatite_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/pegmatite_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/pegmatite_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/pegmatite_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/pegmatite_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/pegmatite_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/pegmatite_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/pegmatite_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/pegmatite_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/pegmatite_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/pegmatite_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/pegmatite_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/pegmatite_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/pegmatite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/pegmatite_cobblestone_wall.json index 4ebc7cce..ef9e2c89 100644 --- a/src/main/resources/assets/strata/blockstates/pegmatite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/pegmatite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/pegmatite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/pegmatite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/pegmatite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/pegmatite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/pegmatite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/pegmatite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/pegmatite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/pegmatite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/pegmatite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/pegmatite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/pegmatite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/pegmatite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/pegmatite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/pegmatite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/pegmatite_wall.json b/src/main/resources/assets/strata/blockstates/pegmatite_wall.json index 54eded27..5b398f9a 100644 --- a/src/main/resources/assets/strata/blockstates/pegmatite_wall.json +++ b/src/main/resources/assets/strata/blockstates/pegmatite_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/pegmatite_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/pegmatite_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/pegmatite_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/pegmatite_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/pegmatite_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/pegmatite_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/pegmatite_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/pegmatite_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/pegmatite_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/pegmatite_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/pegmatite_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/pegmatite_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/pegmatite_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/pegmatite_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/phonolite_brick_wall.json b/src/main/resources/assets/strata/blockstates/phonolite_brick_wall.json index 0ea660c4..1618aa8b 100644 --- a/src/main/resources/assets/strata/blockstates/phonolite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/phonolite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/phonolite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/phonolite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/phonolite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/phonolite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/phonolite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/phonolite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/phonolite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/phonolite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/phonolite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/phonolite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/phonolite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/phonolite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/phonolite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/phonolite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/phonolite_button.json b/src/main/resources/assets/strata/blockstates/phonolite_button.json index 7a707c25..1a108ea1 100644 --- a/src/main/resources/assets/strata/blockstates/phonolite_button.json +++ b/src/main/resources/assets/strata/blockstates/phonolite_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/phonolite_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/phonolite_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/phonolite_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/phonolite_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/phonolite_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/phonolite_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/phonolite_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/phonolite_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/phonolite_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/phonolite_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/phonolite_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/phonolite_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/phonolite_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/phonolite_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/phonolite_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/phonolite_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/phonolite_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/phonolite_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/phonolite_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/phonolite_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/phonolite_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/phonolite_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/phonolite_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/phonolite_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/phonolite_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/phonolite_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/phonolite_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/phonolite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/phonolite_cobblestone_wall.json index a8fce8a4..6aa09518 100644 --- a/src/main/resources/assets/strata/blockstates/phonolite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/phonolite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/phonolite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/phonolite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/phonolite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/phonolite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/phonolite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/phonolite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/phonolite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/phonolite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/phonolite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/phonolite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/phonolite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/phonolite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/phonolite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/phonolite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/phonolite_wall.json b/src/main/resources/assets/strata/blockstates/phonolite_wall.json index f3d32a46..e88b1e08 100644 --- a/src/main/resources/assets/strata/blockstates/phonolite_wall.json +++ b/src/main/resources/assets/strata/blockstates/phonolite_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/phonolite_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/phonolite_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/phonolite_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/phonolite_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/phonolite_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/phonolite_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/phonolite_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/phonolite_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/phonolite_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/phonolite_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/phonolite_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/phonolite_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/phonolite_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/phonolite_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/phyllite_brick_wall.json b/src/main/resources/assets/strata/blockstates/phyllite_brick_wall.json index 4dc83e81..a71bc2a7 100644 --- a/src/main/resources/assets/strata/blockstates/phyllite_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/phyllite_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/phyllite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/phyllite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/phyllite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/phyllite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/phyllite_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/phyllite_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/phyllite_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/phyllite_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/phyllite_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/phyllite_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/phyllite_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/phyllite_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/phyllite_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/phyllite_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/phyllite_button.json b/src/main/resources/assets/strata/blockstates/phyllite_button.json index f3242923..af931707 100644 --- a/src/main/resources/assets/strata/blockstates/phyllite_button.json +++ b/src/main/resources/assets/strata/blockstates/phyllite_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/phyllite_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/phyllite_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/phyllite_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/phyllite_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/phyllite_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/phyllite_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/phyllite_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/phyllite_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/phyllite_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/phyllite_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/phyllite_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/phyllite_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/phyllite_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/phyllite_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/phyllite_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/phyllite_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/phyllite_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/phyllite_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/phyllite_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/phyllite_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/phyllite_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/phyllite_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/phyllite_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/phyllite_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/phyllite_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/phyllite_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/phyllite_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/phyllite_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/phyllite_cobblestone_wall.json index 3b169f27..1b203a02 100644 --- a/src/main/resources/assets/strata/blockstates/phyllite_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/phyllite_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/phyllite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/phyllite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/phyllite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/phyllite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/phyllite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/phyllite_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/phyllite_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/phyllite_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/phyllite_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/phyllite_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/phyllite_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/phyllite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/phyllite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/phyllite_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/phyllite_wall.json b/src/main/resources/assets/strata/blockstates/phyllite_wall.json index 49b9e83f..330941da 100644 --- a/src/main/resources/assets/strata/blockstates/phyllite_wall.json +++ b/src/main/resources/assets/strata/blockstates/phyllite_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/phyllite_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/phyllite_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/phyllite_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/phyllite_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/phyllite_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/phyllite_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/phyllite_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/phyllite_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/phyllite_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/phyllite_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/phyllite_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/phyllite_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/phyllite_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/phyllite_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/schist_brick_wall.json b/src/main/resources/assets/strata/blockstates/schist_brick_wall.json index 4f0a4544..12033361 100644 --- a/src/main/resources/assets/strata/blockstates/schist_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/schist_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/schist_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/schist_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/schist_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/schist_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/schist_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} + "multipart": [ + { + "apply": { + "model": "strata:block/schist_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/schist_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/schist_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/schist_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/schist_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/schist_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/schist_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/schist_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/schist_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/schist_button.json b/src/main/resources/assets/strata/blockstates/schist_button.json index c1073f8b..589cad4a 100644 --- a/src/main/resources/assets/strata/blockstates/schist_button.json +++ b/src/main/resources/assets/strata/blockstates/schist_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/schist_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/schist_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/schist_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/schist_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/schist_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/schist_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/schist_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/schist_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/schist_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/schist_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/schist_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/schist_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/schist_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/schist_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/schist_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/schist_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/schist_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/schist_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/schist_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/schist_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/schist_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/schist_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/schist_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/schist_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/schist_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/schist_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/schist_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/schist_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/schist_cobblestone_wall.json index 4173a739..98de3727 100644 --- a/src/main/resources/assets/strata/blockstates/schist_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/schist_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/schist_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/schist_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/schist_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/schist_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/schist_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/schist_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/schist_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/schist_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/schist_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/schist_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/schist_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/schist_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/schist_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/schist_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/schist_wall.json b/src/main/resources/assets/strata/blockstates/schist_wall.json index 98f71690..fa89cf53 100644 --- a/src/main/resources/assets/strata/blockstates/schist_wall.json +++ b/src/main/resources/assets/strata/blockstates/schist_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/schist_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/schist_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/schist_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/schist_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/schist_wall_side", "y": 270, "uvlock": true } - } - ] -} + "multipart": [ + { + "apply": { + "model": "strata:block/schist_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/schist_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/schist_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/schist_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/schist_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/schist_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/schist_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/schist_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/schist_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/shale_brick_wall.json b/src/main/resources/assets/strata/blockstates/shale_brick_wall.json index 6813d4a6..d9f45841 100644 --- a/src/main/resources/assets/strata/blockstates/shale_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/shale_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/shale_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/shale_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/shale_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/shale_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/shale_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} + "multipart": [ + { + "apply": { + "model": "strata:block/shale_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/shale_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/shale_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/shale_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/shale_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/shale_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/shale_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/shale_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/shale_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/shale_button.json b/src/main/resources/assets/strata/blockstates/shale_button.json index ea4a873b..e74d4a46 100644 --- a/src/main/resources/assets/strata/blockstates/shale_button.json +++ b/src/main/resources/assets/strata/blockstates/shale_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/shale_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/shale_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/shale_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/shale_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/shale_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/shale_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/shale_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/shale_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/shale_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/shale_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/shale_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/shale_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/shale_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/shale_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/shale_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/shale_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/shale_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/shale_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/shale_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/shale_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/shale_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/shale_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/shale_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/shale_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/shale_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/shale_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/shale_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/shale_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/shale_cobblestone_wall.json index 873cc286..9a133d80 100644 --- a/src/main/resources/assets/strata/blockstates/shale_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/shale_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/shale_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/shale_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/shale_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/shale_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/shale_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/shale_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/shale_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/shale_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/shale_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/shale_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/shale_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/shale_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/shale_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/shale_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/shale_wall.json b/src/main/resources/assets/strata/blockstates/shale_wall.json index 9da93d97..9261175a 100644 --- a/src/main/resources/assets/strata/blockstates/shale_wall.json +++ b/src/main/resources/assets/strata/blockstates/shale_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/shale_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/shale_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/shale_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/shale_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/shale_wall_side", "y": 270, "uvlock": true } - } - ] -} + "multipart": [ + { + "apply": { + "model": "strata:block/shale_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/shale_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/shale_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/shale_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/shale_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/shale_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/shale_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/shale_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/shale_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/slate_brick_wall.json b/src/main/resources/assets/strata/blockstates/slate_brick_wall.json index 7a95d743..434c1ff4 100644 --- a/src/main/resources/assets/strata/blockstates/slate_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/slate_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/slate_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/slate_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/slate_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/slate_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/slate_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/slate_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/slate_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/slate_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/slate_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/slate_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/slate_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/slate_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/slate_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/slate_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/slate_button.json b/src/main/resources/assets/strata/blockstates/slate_button.json index fe5e732d..586d9df5 100644 --- a/src/main/resources/assets/strata/blockstates/slate_button.json +++ b/src/main/resources/assets/strata/blockstates/slate_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/slate_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/slate_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/slate_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/slate_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/slate_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/slate_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/slate_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/slate_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/slate_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/slate_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/slate_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/slate_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/slate_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/slate_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/slate_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/slate_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/slate_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/slate_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/slate_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/slate_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/slate_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/slate_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/slate_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/slate_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/slate_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/slate_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/slate_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/slate_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/slate_cobblestone_wall.json index ad48b94f..c6ca9788 100644 --- a/src/main/resources/assets/strata/blockstates/slate_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/slate_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/slate_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/slate_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/slate_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/slate_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/slate_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/slate_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/slate_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/slate_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/slate_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/slate_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/slate_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/slate_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/slate_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/slate_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/slate_wall.json b/src/main/resources/assets/strata/blockstates/slate_wall.json index 96b3c8d2..49c9b760 100644 --- a/src/main/resources/assets/strata/blockstates/slate_wall.json +++ b/src/main/resources/assets/strata/blockstates/slate_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/slate_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/slate_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/slate_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/slate_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/slate_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/slate_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/slate_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/slate_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/slate_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/slate_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/slate_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/slate_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/slate_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/slate_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/soapstone_brick_wall.json b/src/main/resources/assets/strata/blockstates/soapstone_brick_wall.json index 72c685dd..8b09b9dc 100644 --- a/src/main/resources/assets/strata/blockstates/soapstone_brick_wall.json +++ b/src/main/resources/assets/strata/blockstates/soapstone_brick_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/soapstone_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/soapstone_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/soapstone_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/soapstone_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/soapstone_brick_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/soapstone_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/soapstone_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/soapstone_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/soapstone_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/soapstone_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/soapstone_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/soapstone_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/soapstone_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/soapstone_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/soapstone_button.json b/src/main/resources/assets/strata/blockstates/soapstone_button.json index 45d0a85e..c834749e 100644 --- a/src/main/resources/assets/strata/blockstates/soapstone_button.json +++ b/src/main/resources/assets/strata/blockstates/soapstone_button.json @@ -12,17 +12,17 @@ "face=ceiling,facing=west,powered=false": { "model": "strata:block/soapstone_button", "x": 180, "y": 90 }, "face=ceiling,facing=south,powered=false": { "model": "strata:block/soapstone_button", "x": 180 }, "face=ceiling,facing=north,powered=false": { "model": "strata:block/soapstone_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/soapstone_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/soapstone_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/soapstone_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/soapstone_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/soapstone_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/soapstone_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/soapstone_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/soapstone_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/soapstone_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/soapstone_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/soapstone_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/soapstone_button", "x": 180, "y": 180 } + "face=floor,facing=east,powered=true": { "model": "strata:block/soapstone_button_pressed", "y": 90 }, + "face=floor,facing=west,powered=true": { "model": "strata:block/soapstone_button_pressed", "y": 270 }, + "face=floor,facing=south,powered=true": { "model": "strata:block/soapstone_button_pressed", "y": 180 }, + "face=floor,facing=north,powered=true": { "model": "strata:block/soapstone_button_pressed" }, + "face=wall,facing=east,powered=true": { "model": "strata:block/soapstone_button_pressed", "uvlock": true, "x": 90, "y": 90 }, + "face=wall,facing=west,powered=true": { "model": "strata:block/soapstone_button_pressed", "uvlock": true, "x": 90, "y": 270 }, + "face=wall,facing=south,powered=true": { "model": "strata:block/soapstone_button_pressed", "uvlock": true, "x": 90, "y": 180 }, + "face=wall,facing=north,powered=true": { "model": "strata:block/soapstone_button_pressed", "uvlock": true, "x": 90 }, + "face=ceiling,facing=east,powered=true": { "model": "strata:block/soapstone_button_pressed", "x": 180, "y": 270 }, + "face=ceiling,facing=west,powered=true": { "model": "strata:block/soapstone_button_pressed", "x": 180, "y": 90 }, + "face=ceiling,facing=south,powered=true": { "model": "strata:block/soapstone_button_pressed", "x": 180 }, + "face=ceiling,facing=north,powered=true": { "model": "strata:block/soapstone_button_pressed", "x": 180, "y": 180 } } } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/soapstone_cobblestone_wall.json b/src/main/resources/assets/strata/blockstates/soapstone_cobblestone_wall.json index 0a9602df..a7d03be3 100644 --- a/src/main/resources/assets/strata/blockstates/soapstone_cobblestone_wall.json +++ b/src/main/resources/assets/strata/blockstates/soapstone_cobblestone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/soapstone_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/soapstone_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/soapstone_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/soapstone_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/soapstone_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/soapstone_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/soapstone_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/soapstone_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/soapstone_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/soapstone_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/soapstone_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/soapstone_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/soapstone_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/soapstone_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/blockstates/soapstone_wall.json b/src/main/resources/assets/strata/blockstates/soapstone_wall.json index 02238b40..464f745a 100644 --- a/src/main/resources/assets/strata/blockstates/soapstone_wall.json +++ b/src/main/resources/assets/strata/blockstates/soapstone_wall.json @@ -1,19 +1,90 @@ { - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/soapstone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/soapstone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/soapstone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/soapstone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/soapstone_wall_side", "y": 270, "uvlock": true } - } - ] + "multipart": [ + { + "apply": { + "model": "strata:block/soapstone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "strata:block/soapstone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "strata:block/soapstone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "strata:block/soapstone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "strata:block/soapstone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "strata:block/soapstone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "strata:block/soapstone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "strata:block/soapstone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "strata:block/soapstone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/aa_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/aa_brick_wall_side_tall.json new file mode 100644 index 00000000..b23283e5 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/aa_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/aa_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/aa_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/aa_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..654ebbea --- /dev/null +++ b/src/main/resources/assets/strata/models/block/aa_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/aa_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/aa_wall_side_tall.json b/src/main/resources/assets/strata/models/block/aa_wall_side_tall.json new file mode 100644 index 00000000..91ff4906 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/aa_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/aa" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/adakite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/adakite_brick_wall_side_tall.json new file mode 100644 index 00000000..369833c1 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/adakite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/adakite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/adakite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/adakite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..25a7d4be --- /dev/null +++ b/src/main/resources/assets/strata/models/block/adakite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/adakite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/adakite_wall_side_tall.json b/src/main/resources/assets/strata/models/block/adakite_wall_side_tall.json new file mode 100644 index 00000000..5c6ccd95 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/adakite_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/adakite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/amphibolite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/amphibolite_brick_wall_side_tall.json new file mode 100644 index 00000000..3cc69a3a --- /dev/null +++ b/src/main/resources/assets/strata/models/block/amphibolite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/amphibolite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/amphibolite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/amphibolite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..a851bed3 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/amphibolite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/amphibolite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/amphibolite_wall_side_tall.json b/src/main/resources/assets/strata/models/block/amphibolite_wall_side_tall.json new file mode 100644 index 00000000..2bc37b5c --- /dev/null +++ b/src/main/resources/assets/strata/models/block/amphibolite_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/amphibolite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/argillite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/argillite_brick_wall_side_tall.json new file mode 100644 index 00000000..4825ae6c --- /dev/null +++ b/src/main/resources/assets/strata/models/block/argillite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/argillite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/argillite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/argillite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..8340dc07 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/argillite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/argillite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/argillite_wall_side_tall.json b/src/main/resources/assets/strata/models/block/argillite_wall_side_tall.json new file mode 100644 index 00000000..07ddc3a6 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/argillite_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/argillite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/arkose_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/arkose_brick_wall_side_tall.json new file mode 100644 index 00000000..1bfc3d4e --- /dev/null +++ b/src/main/resources/assets/strata/models/block/arkose_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/arkose_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/arkose_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/arkose_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..6d001b7e --- /dev/null +++ b/src/main/resources/assets/strata/models/block/arkose_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/arkose_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/arkose_wall_side_tall.json b/src/main/resources/assets/strata/models/block/arkose_wall_side_tall.json new file mode 100644 index 00000000..152e6386 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/arkose_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/arkose" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/breccia_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/breccia_brick_wall_side_tall.json new file mode 100644 index 00000000..b8958801 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/breccia_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/breccia_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/breccia_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/breccia_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..56b03d98 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/breccia_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/breccia_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/breccia_wall_side_tall.json b/src/main/resources/assets/strata/models/block/breccia_wall_side_tall.json new file mode 100644 index 00000000..38a5f855 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/breccia_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/breccia" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/cataclasite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/cataclasite_brick_wall_side_tall.json new file mode 100644 index 00000000..47f9e789 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/cataclasite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/cataclasite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/cataclasite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/cataclasite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..40044371 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/cataclasite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/cataclasite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/cataclasite_wall_side_tall.json b/src/main/resources/assets/strata/models/block/cataclasite_wall_side_tall.json new file mode 100644 index 00000000..5afc0806 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/cataclasite_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/cataclasite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/chalk_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/chalk_brick_wall_side_tall.json new file mode 100644 index 00000000..1ec16d85 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/chalk_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/chalk_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/chalk_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/chalk_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..760f7ee0 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/chalk_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/chalk_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/chalk_wall_side_tall.json b/src/main/resources/assets/strata/models/block/chalk_wall_side_tall.json new file mode 100644 index 00000000..b5428495 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/chalk_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/chalk" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/claystone_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/claystone_brick_wall_side_tall.json new file mode 100644 index 00000000..7b7d78a9 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/claystone_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/claystone_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/claystone_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/claystone_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..4704dc58 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/claystone_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/claystone_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/claystone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/claystone_wall_side_tall.json new file mode 100644 index 00000000..526fec9a --- /dev/null +++ b/src/main/resources/assets/strata/models/block/claystone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/claystone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/dacite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/dacite_brick_wall_side_tall.json new file mode 100644 index 00000000..f610bd7f --- /dev/null +++ b/src/main/resources/assets/strata/models/block/dacite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/dacite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/dacite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/dacite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..f0623706 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/dacite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/dacite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/dacite_wall_side_tall.json b/src/main/resources/assets/strata/models/block/dacite_wall_side_tall.json new file mode 100644 index 00000000..6ccec256 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/dacite_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/dacite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/dolomite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/dolomite_brick_wall_side_tall.json new file mode 100644 index 00000000..a75dd2e4 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/dolomite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/dolomite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/dolomite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/dolomite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..46cf169f --- /dev/null +++ b/src/main/resources/assets/strata/models/block/dolomite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/dolomite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/dolomite_wall_side_tall.json b/src/main/resources/assets/strata/models/block/dolomite_wall_side_tall.json new file mode 100644 index 00000000..09a365b4 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/dolomite_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/dolomite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/dunite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/dunite_brick_wall_side_tall.json new file mode 100644 index 00000000..0ab9a49a --- /dev/null +++ b/src/main/resources/assets/strata/models/block/dunite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/dunite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/dunite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/dunite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..26f5cb03 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/dunite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/dunite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/dunite_wall_side_tall.json b/src/main/resources/assets/strata/models/block/dunite_wall_side_tall.json new file mode 100644 index 00000000..b9b7ac1d --- /dev/null +++ b/src/main/resources/assets/strata/models/block/dunite_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/dunite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/eclogite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/eclogite_brick_wall_side_tall.json new file mode 100644 index 00000000..c50addad --- /dev/null +++ b/src/main/resources/assets/strata/models/block/eclogite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/eclogite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/eclogite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/eclogite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..a1481693 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/eclogite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/eclogite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/eclogite_wall_side_tall.json b/src/main/resources/assets/strata/models/block/eclogite_wall_side_tall.json new file mode 100644 index 00000000..a5b2cab3 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/eclogite_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/eclogite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/gabbro_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/gabbro_brick_wall_side_tall.json new file mode 100644 index 00000000..0ab9a49a --- /dev/null +++ b/src/main/resources/assets/strata/models/block/gabbro_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/dunite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/gabbro_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/gabbro_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..26f5cb03 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/gabbro_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/dunite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/gabbro_wall_side_tall.json b/src/main/resources/assets/strata/models/block/gabbro_wall_side_tall.json new file mode 100644 index 00000000..b9b7ac1d --- /dev/null +++ b/src/main/resources/assets/strata/models/block/gabbro_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/dunite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/gneiss_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/gneiss_brick_wall_side_tall.json new file mode 100644 index 00000000..7c119068 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/gneiss_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/gneiss_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/gneiss_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/gneiss_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..c91ae5d3 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/gneiss_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/gneiss_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/gneiss_wall_side_tall.json b/src/main/resources/assets/strata/models/block/gneiss_wall_side_tall.json new file mode 100644 index 00000000..e390abc3 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/gneiss_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/gneiss" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/jaspillite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/jaspillite_brick_wall_side_tall.json new file mode 100644 index 00000000..3cde3def --- /dev/null +++ b/src/main/resources/assets/strata/models/block/jaspillite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/jaspillite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/jaspillite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/jaspillite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..0348effb --- /dev/null +++ b/src/main/resources/assets/strata/models/block/jaspillite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/jaspillite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/jaspillite_wall_side_tall.json b/src/main/resources/assets/strata/models/block/jaspillite_wall_side_tall.json new file mode 100644 index 00000000..c53c3e26 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/jaspillite_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/jaspillite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/komatiite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/komatiite_brick_wall_side_tall.json new file mode 100644 index 00000000..a826a5b6 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/komatiite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/komatiite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/komatiite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/komatiite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..d99aa73e --- /dev/null +++ b/src/main/resources/assets/strata/models/block/komatiite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/komatiite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/komatiite_wall_side_tall.json b/src/main/resources/assets/strata/models/block/komatiite_wall_side_tall.json new file mode 100644 index 00000000..e824ccd0 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/komatiite_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/komatiite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/limestone_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/limestone_brick_wall_side_tall.json new file mode 100644 index 00000000..0e215f5f --- /dev/null +++ b/src/main/resources/assets/strata/models/block/limestone_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/limestone_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/limestone_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/limestone_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..c07c8c50 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/limestone_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/limestone_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/limestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/limestone_wall_side_tall.json new file mode 100644 index 00000000..19b03f56 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/limestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/limestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/marble_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/marble_brick_wall_side_tall.json new file mode 100644 index 00000000..71c223d9 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/marble_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/marble_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/marble_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/marble_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..4ee81501 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/marble_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/marble_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/marble_wall_side_tall.json b/src/main/resources/assets/strata/models/block/marble_wall_side_tall.json new file mode 100644 index 00000000..98f01694 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/marble_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/marble" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/migmatite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/migmatite_brick_wall_side_tall.json new file mode 100644 index 00000000..8cd33dfa --- /dev/null +++ b/src/main/resources/assets/strata/models/block/migmatite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/migmatite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/migmatite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/migmatite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..11f2bbca --- /dev/null +++ b/src/main/resources/assets/strata/models/block/migmatite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/migmatite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/migmatite_wall_side_tall.json b/src/main/resources/assets/strata/models/block/migmatite_wall_side_tall.json new file mode 100644 index 00000000..fe50c0fe --- /dev/null +++ b/src/main/resources/assets/strata/models/block/migmatite_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/migmatite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_aa_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_aa_brick_wall_side_tall.json new file mode 100644 index 00000000..774319c1 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_aa_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/mossy_aa_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_aa_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_aa_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..44dcd88c --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_aa_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/mossy_aa_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_adakite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_adakite_brick_wall_side_tall.json new file mode 100644 index 00000000..b449197c --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_adakite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/mossy_adakite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_adakite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_adakite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..b26b289f --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_adakite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/mossy_adakite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_amphibolite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_amphibolite_brick_wall_side_tall.json new file mode 100644 index 00000000..ea4c40c6 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_amphibolite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/mossy_amphibolite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_amphibolite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_amphibolite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..c7007591 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_amphibolite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/mossy_amphibolite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_argillite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_argillite_brick_wall_side_tall.json new file mode 100644 index 00000000..cdf6abeb --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_argillite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/mossy_argillite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_argillite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_argillite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..86c7502c --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_argillite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/mossy_argillite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_arkose_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_arkose_brick_wall_side_tall.json new file mode 100644 index 00000000..86d89f0e --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_arkose_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/mossy_arkose_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_arkose_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_arkose_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..be50a517 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_arkose_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/mossy_arkose_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_breccia_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_breccia_brick_wall_side_tall.json new file mode 100644 index 00000000..25b2189e --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_breccia_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/mossy_breccia_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_breccia_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_breccia_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..6eb49e22 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_breccia_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/mossy_breccia_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_cataclasite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_cataclasite_brick_wall_side_tall.json new file mode 100644 index 00000000..9bca90db --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_cataclasite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/mossy_cataclasite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_cataclasite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_cataclasite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..def07cdd --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_cataclasite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/mossy_cataclasite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_chalk_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_chalk_brick_wall_side_tall.json new file mode 100644 index 00000000..50e1bd8b --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_chalk_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/mossy_chalk_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_chalk_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_chalk_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..fb76f66d --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_chalk_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/mossy_chalk_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_claystone_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_claystone_brick_wall_side_tall.json new file mode 100644 index 00000000..32db3e7e --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_claystone_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/mossy_claystone_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_claystone_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_claystone_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..0b5b86cd --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_claystone_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/mossy_claystone_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_dacite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_dacite_brick_wall_side_tall.json new file mode 100644 index 00000000..3ba7af36 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_dacite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/mossy_dacite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_dacite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_dacite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..00e90732 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_dacite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/mossy_dacite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_dolomite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_dolomite_brick_wall_side_tall.json new file mode 100644 index 00000000..1dd087e3 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_dolomite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/mossy_dolomite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_dolomite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_dolomite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..ebacd7ec --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_dolomite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/mossy_dolomite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_dunite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_dunite_brick_wall_side_tall.json new file mode 100644 index 00000000..d38cf287 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_dunite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/mossy_dunite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_dunite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_dunite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..e5d46e9a --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_dunite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/mossy_dunite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_eclogite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_eclogite_brick_wall_side_tall.json new file mode 100644 index 00000000..503e9a38 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_eclogite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/mossy_eclogite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_eclogite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_eclogite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..994b8709 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_eclogite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/mossy_eclogite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_gabbro_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_gabbro_brick_wall_side_tall.json new file mode 100644 index 00000000..d38cf287 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_gabbro_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/mossy_dunite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_gabbro_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_gabbro_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..e5d46e9a --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_gabbro_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/mossy_dunite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_gneiss_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_gneiss_brick_wall_side_tall.json new file mode 100644 index 00000000..71e8723e --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_gneiss_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/mossy_gneiss_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_gneiss_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_gneiss_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..5a4e576c --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_gneiss_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/mossy_gneiss_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_jaspillite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_jaspillite_brick_wall_side_tall.json new file mode 100644 index 00000000..037c3439 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_jaspillite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/mossy_jaspillite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..bf9aca81 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/mossy_jaspillite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_komatiite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_komatiite_brick_wall_side_tall.json new file mode 100644 index 00000000..dc89e67f --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_komatiite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/mossy_komatiite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_komatiite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_komatiite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..0b512a55 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_komatiite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/mossy_komatiite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_limestone_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_limestone_brick_wall_side_tall.json new file mode 100644 index 00000000..3e7a84e0 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_limestone_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/mossy_limestone_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_limestone_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_limestone_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..883853bf --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_limestone_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/mossy_limestone_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_marble_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_marble_brick_wall_side_tall.json new file mode 100644 index 00000000..644f8aec --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_marble_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/mossy_marble_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_marble_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_marble_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..646a7515 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_marble_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/mossy_marble_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_migmatite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_migmatite_brick_wall_side_tall.json new file mode 100644 index 00000000..4e73bad8 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_migmatite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/mossy_migmatite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_migmatite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_migmatite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..8e197659 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_migmatite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/mossy_migmatite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_mudstone_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_mudstone_brick_wall_side_tall.json new file mode 100644 index 00000000..2ec97548 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_mudstone_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/mossy_mudstone_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_mudstone_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_mudstone_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..c580e268 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_mudstone_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/mossy_mudstone_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_pahoehoe_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_pahoehoe_brick_wall_side_tall.json new file mode 100644 index 00000000..7f5a2049 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_pahoehoe_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/mossy_pahoehoe_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..8d7d552c --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/mossy_pahoehoe_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_pegmatite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_pegmatite_brick_wall_side_tall.json new file mode 100644 index 00000000..c6610339 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_pegmatite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/mossy_pegmatite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_pegmatite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_pegmatite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..ad45f38b --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_pegmatite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/mossy_pegmatite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_phonolite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_phonolite_brick_wall_side_tall.json new file mode 100644 index 00000000..c6610339 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_phonolite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/mossy_pegmatite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_phonolite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_phonolite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..ad45f38b --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_phonolite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/mossy_pegmatite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_phyllite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_phyllite_brick_wall_side_tall.json new file mode 100644 index 00000000..c3054dc9 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_phyllite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/mossy_phyllite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_phyllite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_phyllite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..17fb1a8f --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_phyllite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/mossy_phyllite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_schist_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_schist_brick_wall_side_tall.json new file mode 100644 index 00000000..41098479 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_schist_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/mossy_schist_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_schist_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_schist_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..b31f9e42 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_schist_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/mossy_schist_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_shale_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_shale_brick_wall_side_tall.json new file mode 100644 index 00000000..90b708b2 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_shale_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/mossy_shale_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_shale_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_shale_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..9cbb22ea --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_shale_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/mossy_shale_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_slate_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_slate_brick_wall_side_tall.json new file mode 100644 index 00000000..a256720d --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_slate_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/mossy_slate_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_slate_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_slate_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..baae53d5 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_slate_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/mossy_slate_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_soapstone_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_soapstone_brick_wall_side_tall.json new file mode 100644 index 00000000..fbe1838c --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_soapstone_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/mossy_soapstone_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mossy_soapstone_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mossy_soapstone_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..e4403805 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mossy_soapstone_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/mossy_soapstone_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mudstone_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mudstone_brick_wall_side_tall.json new file mode 100644 index 00000000..3275cd60 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mudstone_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/mudstone_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mudstone_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mudstone_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..d5c46a52 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mudstone_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/mudstone_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/mudstone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/mudstone_wall_side_tall.json new file mode 100644 index 00000000..50e75730 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/mudstone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/mudstone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/pahoehoe_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/pahoehoe_brick_wall_side_tall.json new file mode 100644 index 00000000..c97ed22c --- /dev/null +++ b/src/main/resources/assets/strata/models/block/pahoehoe_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/pahoehoe_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/pahoehoe_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/pahoehoe_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..9d9838dc --- /dev/null +++ b/src/main/resources/assets/strata/models/block/pahoehoe_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/pahoehoe_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/pahoehoe_wall_side_tall.json b/src/main/resources/assets/strata/models/block/pahoehoe_wall_side_tall.json new file mode 100644 index 00000000..7141f13e --- /dev/null +++ b/src/main/resources/assets/strata/models/block/pahoehoe_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/pahoehoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/pegmatite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/pegmatite_brick_wall_side_tall.json new file mode 100644 index 00000000..e415ecf4 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/pegmatite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/pegmatite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/pegmatite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/pegmatite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..18cdd295 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/pegmatite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/pegmatite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/pegmatite_wall_side_tall.json b/src/main/resources/assets/strata/models/block/pegmatite_wall_side_tall.json new file mode 100644 index 00000000..38b071c4 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/pegmatite_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/pegmatite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/phonolite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/phonolite_brick_wall_side_tall.json new file mode 100644 index 00000000..e415ecf4 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/phonolite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/pegmatite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/phonolite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/phonolite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..18cdd295 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/phonolite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/pegmatite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/phonolite_wall_side_tall.json b/src/main/resources/assets/strata/models/block/phonolite_wall_side_tall.json new file mode 100644 index 00000000..38b071c4 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/phonolite_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/igneous_rocks/pegmatite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/phyllite_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/phyllite_brick_wall_side_tall.json new file mode 100644 index 00000000..5b436604 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/phyllite_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/phyllite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/phyllite_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/phyllite_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..656fe648 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/phyllite_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/phyllite_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/phyllite_wall_side_tall.json b/src/main/resources/assets/strata/models/block/phyllite_wall_side_tall.json new file mode 100644 index 00000000..60402b58 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/phyllite_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/phyllite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/schist_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/schist_brick_wall_side_tall.json new file mode 100644 index 00000000..07d5f32d --- /dev/null +++ b/src/main/resources/assets/strata/models/block/schist_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/schist_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/schist_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/schist_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..4c951474 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/schist_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/schist_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/schist_wall_side_tall.json b/src/main/resources/assets/strata/models/block/schist_wall_side_tall.json new file mode 100644 index 00000000..2bdb273b --- /dev/null +++ b/src/main/resources/assets/strata/models/block/schist_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/schist" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/shale_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/shale_brick_wall_side_tall.json new file mode 100644 index 00000000..1869c40f --- /dev/null +++ b/src/main/resources/assets/strata/models/block/shale_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/shale_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/shale_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/shale_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..87adaca6 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/shale_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/shale_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/shale_wall_side_tall.json b/src/main/resources/assets/strata/models/block/shale_wall_side_tall.json new file mode 100644 index 00000000..2aa815b0 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/shale_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/sedimentary_rocks/shale" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/slate_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/slate_brick_wall_side_tall.json new file mode 100644 index 00000000..2a490efd --- /dev/null +++ b/src/main/resources/assets/strata/models/block/slate_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/slate_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/slate_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/slate_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..18955ffb --- /dev/null +++ b/src/main/resources/assets/strata/models/block/slate_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/slate_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/slate_wall_side_tall.json b/src/main/resources/assets/strata/models/block/slate_wall_side_tall.json new file mode 100644 index 00000000..14ddceae --- /dev/null +++ b/src/main/resources/assets/strata/models/block/slate_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/slate" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/soapstone_brick_wall_side_tall.json b/src/main/resources/assets/strata/models/block/soapstone_brick_wall_side_tall.json new file mode 100644 index 00000000..1177ba8f --- /dev/null +++ b/src/main/resources/assets/strata/models/block/soapstone_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/soapstone_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/soapstone_cobblestone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/soapstone_cobblestone_wall_side_tall.json new file mode 100644 index 00000000..a4d3a7c8 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/soapstone_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/soapstone_cobblestone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/models/block/soapstone_wall_side_tall.json b/src/main/resources/assets/strata/models/block/soapstone_wall_side_tall.json new file mode 100644 index 00000000..08077341 --- /dev/null +++ b/src/main/resources/assets/strata/models/block/soapstone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "strata:blocks/metamorphic_rocks/soapstone" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_marble_bricks.png b/src/main/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_marble_bricks.png deleted file mode 100644 index 88d9be55..00000000 Binary files a/src/main/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_marble_bricks.png and /dev/null differ diff --git a/src/main/resources/assets/strata/textures/blocks/sedimentary_rocks/desktop.ini b/src/main/resources/assets/strata/textures/blocks/sedimentary_rocks/desktop.ini deleted file mode 100644 index 6e6c510b..00000000 --- a/src/main/resources/assets/strata/textures/blocks/sedimentary_rocks/desktop.ini +++ /dev/null @@ -1,7 +0,0 @@ -[LocalizedFileNames] -polished_arkose.png=@polished_arkose.png,0 -mossy_arkose_cobblestone.png=@mossy_arkose_cobblestone.png,0 -chiseled_arkose_bricks.png=@chiseled_arkose_bricks.png,0 -mossy_arkose_bricks.png=@mossy_arkose_bricks.png,0 -cracked_arkose_bricks.png=@cracked_arkose_bricks.png,0 -arkose_bricks.png=@arkose_bricks.png,0 diff --git a/src/main/resources/data/forge/tags/blocks/wg_stone.json b/src/main/resources/data/forge/tags/blocks/wg_stone.json index d048fa15..105b301b 100644 --- a/src/main/resources/data/forge/tags/blocks/wg_stone.json +++ b/src/main/resources/data/forge/tags/blocks/wg_stone.json @@ -4,7 +4,6 @@ "strata:aa", "strata:adakite", "strata:amphibolite", - "strata:basalt", "strata:eclogite", "strata:gabbro", "strata:gneiss", diff --git a/src/main/resources/data/minecraft/recipes/basalt_axe.json b/src/main/resources/data/minecraft/recipes/basalt_axe.json deleted file mode 100644 index ae57dcaf..00000000 --- a/src/main/resources/data/minecraft/recipes/basalt_axe.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "XX", - "X#", - " #" - ], - "key": { - "#": { - "item": "minecraft:stick" - }, - "X": { - "item": "strata:basalt_cobblestone" - } - }, - "result": { - "item": "minecraft:stone_axe" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/basalt_blast_furnace.json b/src/main/resources/data/minecraft/recipes/basalt_blast_furnace.json deleted file mode 100644 index 872ef8b7..00000000 --- a/src/main/resources/data/minecraft/recipes/basalt_blast_furnace.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "III", - "IXI", - "###" - ], - "key": { - "#": { - "item": "strata:polished_basalt" - }, - "X": { - "item": "minecraft:furnace" - }, - "I": { - "item": "minecraft:iron_ingot" - } - }, - "result": { - "item": "minecraft:blast_furnace" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/basalt_brewing_stand.json b/src/main/resources/data/minecraft/recipes/basalt_brewing_stand.json deleted file mode 100644 index cf970736..00000000 --- a/src/main/resources/data/minecraft/recipes/basalt_brewing_stand.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " B ", - "###" - ], - "key": { - "B": { - "item": "minecraft:blaze_rod" - }, - "#": { - "item": "strata:basalt_cobblestone" - } - }, - "result": { - "item": "minecraft:brewing_stand" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/basalt_comparator.json b/src/main/resources/data/minecraft/recipes/basalt_comparator.json deleted file mode 100644 index dc3ff3bb..00000000 --- a/src/main/resources/data/minecraft/recipes/basalt_comparator.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " # ", - "#X#", - "III" - ], - "key": { - "#": { - "item": "minecraft:redstone_torch" - }, - "X": { - "item": "minecraft:quartz" - }, - "I": { - "item": "strata:basalt" - } - }, - "result": { - "item": "minecraft:comparator" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/basalt_dispenser.json b/src/main/resources/data/minecraft/recipes/basalt_dispenser.json deleted file mode 100644 index 54afe2b9..00000000 --- a/src/main/resources/data/minecraft/recipes/basalt_dispenser.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "#X#", - "#R#" - ], - "key": { - "R": { - "item": "minecraft:redstone" - }, - "#": { - "item": "strata:basalt_cobblestone" - }, - "X": { - "item": "minecraft:bow" - } - }, - "result": { - "item": "minecraft:dispenser" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/basalt_dropper.json b/src/main/resources/data/minecraft/recipes/basalt_dropper.json deleted file mode 100644 index 25463ffe..00000000 --- a/src/main/resources/data/minecraft/recipes/basalt_dropper.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #", - "#R#" - ], - "key": { - "R": { - "item": "minecraft:redstone" - }, - "#": { - "item": "strata:basalt_cobblestone" - } - }, - "result": { - "item": "minecraft:dropper" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/basalt_furnace.json b/src/main/resources/data/minecraft/recipes/basalt_furnace.json deleted file mode 100644 index 811f6daf..00000000 --- a/src/main/resources/data/minecraft/recipes/basalt_furnace.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #", - "###" - ], - "key": { - "#": { - "item": "strata:basalt_cobblestone" - } - }, - "result": { - "item": "minecraft:furnace" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/basalt_grindstone.json b/src/main/resources/data/minecraft/recipes/basalt_grindstone.json deleted file mode 100644 index 2ff8b115..00000000 --- a/src/main/resources/data/minecraft/recipes/basalt_grindstone.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "I-I", - "# #" - ], - "key": { - "I": { - "item": "minecraft:stick" - }, - "-": { - "item": "strata:basalt_slab" - }, - "#": { - "tag": "minecraft:planks" - } - }, - "result": { - "item": "minecraft:grindstone" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/basalt_hoe.json b/src/main/resources/data/minecraft/recipes/basalt_hoe.json deleted file mode 100644 index daf75968..00000000 --- a/src/main/resources/data/minecraft/recipes/basalt_hoe.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "XX ", - " # ", - " # " - ], - "key": { - "#": { - "item": "minecraft:stick" - }, - "X": { - "item": "strata:basalt_cobblestone" - } - }, - "result": { - "item": "minecraft:stone_hoe" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/basalt_lever.json b/src/main/resources/data/minecraft/recipes/basalt_lever.json deleted file mode 100644 index e93b1fc2..00000000 --- a/src/main/resources/data/minecraft/recipes/basalt_lever.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "X", - "#" - ], - "key": { - "#": { - "item": "strata:basalt_cobblestone" - }, - "X": { - "item": "minecraft:stick" - } - }, - "result": { - "item": "minecraft:lever" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/basalt_observer.json b/src/main/resources/data/minecraft/recipes/basalt_observer.json deleted file mode 100644 index 94184a87..00000000 --- a/src/main/resources/data/minecraft/recipes/basalt_observer.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "RRQ", - "###" - ], - "key": { - "Q": { - "item": "minecraft:quartz" - }, - "R": { - "item": "minecraft:redstone" - }, - "#": { - "item": "strata:basalt_cobblestone" - } - }, - "result": { - "item": "minecraft:observer" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/basalt_pickaxe.json b/src/main/resources/data/minecraft/recipes/basalt_pickaxe.json deleted file mode 100644 index ce3a001a..00000000 --- a/src/main/resources/data/minecraft/recipes/basalt_pickaxe.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "XXX", - " # ", - " # " - ], - "key": { - "#": { - "item": "minecraft:stick" - }, - "X": { - "item": "strata:basalt_cobblestone" - } - }, - "result": { - "item": "minecraft:stone_pickaxe" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/basalt_piston.json b/src/main/resources/data/minecraft/recipes/basalt_piston.json deleted file mode 100644 index 097c61a6..00000000 --- a/src/main/resources/data/minecraft/recipes/basalt_piston.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "TTT", - "#X#", - "#R#" - ], - "key": { - "R": { - "item": "minecraft:redstone" - }, - "#": { - "item": "strata:basalt_cobblestone" - }, - "T": { - "tag": "minecraft:planks" - }, - "X": { - "item": "minecraft:iron_ingot" - } - }, - "result": { - "item": "minecraft:piston" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/basalt_repeater.json b/src/main/resources/data/minecraft/recipes/basalt_repeater.json deleted file mode 100644 index b5f907a6..00000000 --- a/src/main/resources/data/minecraft/recipes/basalt_repeater.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "#X#", - "III" - ], - "key": { - "#": { - "item": "minecraft:redstone_torch" - }, - "X": { - "item": "minecraft:redstone" - }, - "I": { - "item": "strata:basalt" - } - }, - "result": { - "item": "minecraft:repeater" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/basalt_shovel.json b/src/main/resources/data/minecraft/recipes/basalt_shovel.json deleted file mode 100644 index 487adb37..00000000 --- a/src/main/resources/data/minecraft/recipes/basalt_shovel.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " X ", - " # ", - " # " - ], - "key": { - "#": { - "item": "minecraft:stick" - }, - "X": { - "item": "strata:basalt_cobblestone" - } - }, - "result": { - "item": "minecraft:stone_shovel" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/basalt_stonecutter.json b/src/main/resources/data/minecraft/recipes/basalt_stonecutter.json deleted file mode 100644 index bba45752..00000000 --- a/src/main/resources/data/minecraft/recipes/basalt_stonecutter.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " I ", - "###" - ], - "key": { - "I": { - "item": "minecraft:iron_ingot" - }, - "#": { - "item": "strata:basalt" - } - }, - "result": { - "item": "minecraft:stonecutter" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/basalt_sword.json b/src/main/resources/data/minecraft/recipes/basalt_sword.json deleted file mode 100644 index b7b1fabe..00000000 --- a/src/main/resources/data/minecraft/recipes/basalt_sword.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " X ", - " X ", - " # " - ], - "key": { - "#": { - "item": "minecraft:stick" - }, - "X": { - "item": "strata:basalt_cobblestone" - } - }, - "result": { - "item": "minecraft:stone_sword" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/mossy_basalt_axe.json b/src/main/resources/data/minecraft/recipes/mossy_basalt_axe.json deleted file mode 100644 index f87a90bf..00000000 --- a/src/main/resources/data/minecraft/recipes/mossy_basalt_axe.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "XX", - "X#", - " #" - ], - "key": { - "#": { - "item": "minecraft:stick" - }, - "X": { - "item": "strata:mossy_basalt_cobblestone" - } - }, - "result": { - "item": "minecraft:stone_axe" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/mossy_basalt_brewing_stand.json b/src/main/resources/data/minecraft/recipes/mossy_basalt_brewing_stand.json deleted file mode 100644 index ab0725ff..00000000 --- a/src/main/resources/data/minecraft/recipes/mossy_basalt_brewing_stand.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " B ", - "###" - ], - "key": { - "B": { - "item": "minecraft:blaze_rod" - }, - "#": { - "item": "strata:mossy_basalt_cobblestone" - } - }, - "result": { - "item": "minecraft:brewing_stand" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/mossy_basalt_dispenser.json b/src/main/resources/data/minecraft/recipes/mossy_basalt_dispenser.json deleted file mode 100644 index 5779fb7c..00000000 --- a/src/main/resources/data/minecraft/recipes/mossy_basalt_dispenser.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "#X#", - "#R#" - ], - "key": { - "R": { - "item": "minecraft:redstone" - }, - "#": { - "item": "strata:mossy_basalt_cobblestone" - }, - "X": { - "item": "minecraft:bow" - } - }, - "result": { - "item": "minecraft:dispenser" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/mossy_basalt_dropper.json b/src/main/resources/data/minecraft/recipes/mossy_basalt_dropper.json deleted file mode 100644 index 76b2b937..00000000 --- a/src/main/resources/data/minecraft/recipes/mossy_basalt_dropper.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #", - "#R#" - ], - "key": { - "R": { - "item": "minecraft:redstone" - }, - "#": { - "item": "strata:mossy_basalt_cobblestone" - } - }, - "result": { - "item": "minecraft:dropper" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/mossy_basalt_furnace.json b/src/main/resources/data/minecraft/recipes/mossy_basalt_furnace.json deleted file mode 100644 index 27f945ec..00000000 --- a/src/main/resources/data/minecraft/recipes/mossy_basalt_furnace.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_basalt_cobblestone" - } - }, - "result": { - "item": "minecraft:furnace" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/mossy_basalt_hoe.json b/src/main/resources/data/minecraft/recipes/mossy_basalt_hoe.json deleted file mode 100644 index 6172b9a2..00000000 --- a/src/main/resources/data/minecraft/recipes/mossy_basalt_hoe.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "XX ", - " # ", - " # " - ], - "key": { - "#": { - "item": "minecraft:stick" - }, - "X": { - "item": "strata:mossy_basalt_cobblestone" - } - }, - "result": { - "item": "minecraft:stone_hoe" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/mossy_basalt_lever.json b/src/main/resources/data/minecraft/recipes/mossy_basalt_lever.json deleted file mode 100644 index 02a87d3c..00000000 --- a/src/main/resources/data/minecraft/recipes/mossy_basalt_lever.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "X", - "#" - ], - "key": { - "#": { - "item": "strata:mossy_basalt_cobblestone" - }, - "X": { - "item": "minecraft:stick" - } - }, - "result": { - "item": "minecraft:lever" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/mossy_basalt_observer.json b/src/main/resources/data/minecraft/recipes/mossy_basalt_observer.json deleted file mode 100644 index 504ede10..00000000 --- a/src/main/resources/data/minecraft/recipes/mossy_basalt_observer.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "RRQ", - "###" - ], - "key": { - "Q": { - "item": "minecraft:quartz" - }, - "R": { - "item": "minecraft:redstone" - }, - "#": { - "item": "strata:mossy_basalt_cobblestone" - } - }, - "result": { - "item": "minecraft:observer" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/mossy_basalt_pickaxe.json b/src/main/resources/data/minecraft/recipes/mossy_basalt_pickaxe.json deleted file mode 100644 index 8e7fa27b..00000000 --- a/src/main/resources/data/minecraft/recipes/mossy_basalt_pickaxe.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "XXX", - " # ", - " # " - ], - "key": { - "#": { - "item": "minecraft:stick" - }, - "X": { - "item": "strata:mossy_basalt_cobblestone" - } - }, - "result": { - "item": "minecraft:stone_pickaxe" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/mossy_basalt_piston.json b/src/main/resources/data/minecraft/recipes/mossy_basalt_piston.json deleted file mode 100644 index cc006a2b..00000000 --- a/src/main/resources/data/minecraft/recipes/mossy_basalt_piston.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "TTT", - "#X#", - "#R#" - ], - "key": { - "R": { - "item": "minecraft:redstone" - }, - "#": { - "item": "strata:mossy_basalt_cobblestone" - }, - "T": { - "tag": "minecraft:planks" - }, - "X": { - "item": "minecraft:iron_ingot" - } - }, - "result": { - "item": "minecraft:piston" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/mossy_basalt_shovel.json b/src/main/resources/data/minecraft/recipes/mossy_basalt_shovel.json deleted file mode 100644 index 4f10938a..00000000 --- a/src/main/resources/data/minecraft/recipes/mossy_basalt_shovel.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " X ", - " # ", - " # " - ], - "key": { - "#": { - "item": "minecraft:stick" - }, - "X": { - "item": "strata:mossy_basalt_cobblestone" - } - }, - "result": { - "item": "minecraft:stone_shovel" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/recipes/mossy_basalt_sword.json b/src/main/resources/data/minecraft/recipes/mossy_basalt_sword.json deleted file mode 100644 index bc05e537..00000000 --- a/src/main/resources/data/minecraft/recipes/mossy_basalt_sword.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " X ", - " X ", - " # " - ], - "key": { - "#": { - "item": "minecraft:stick" - }, - "X": { - "item": "strata:mossy_basalt_cobblestone" - } - }, - "result": { - "item": "minecraft:stone_sword" - } -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/acacia_logs.json b/src/main/resources/data/minecraft/tags/blocks/acacia_logs.json deleted file mode 100644 index 2aa36aea..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/acacia_logs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:acacia_log", - "minecraft:acacia_wood", - "minecraft:stripped_acacia_log", - "minecraft:stripped_acacia_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/anvil.json b/src/main/resources/data/minecraft/tags/blocks/anvil.json deleted file mode 100644 index d69773e1..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/anvil.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:anvil", - "minecraft:chipped_anvil", - "minecraft:damaged_anvil" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/bamboo_plantable_on.json b/src/main/resources/data/minecraft/tags/blocks/bamboo_plantable_on.json deleted file mode 100644 index b390cb0c..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/bamboo_plantable_on.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:bamboo", - "minecraft:bamboo_sapling", - "minecraft:gravel", - "#minecraft:sand", - "#minecraft:dirt_like" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/banners.json b/src/main/resources/data/minecraft/tags/blocks/banners.json deleted file mode 100644 index df4ebc27..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/banners.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:white_banner", - "minecraft:orange_banner", - "minecraft:magenta_banner", - "minecraft:light_blue_banner", - "minecraft:yellow_banner", - "minecraft:lime_banner", - "minecraft:pink_banner", - "minecraft:gray_banner", - "minecraft:light_gray_banner", - "minecraft:cyan_banner", - "minecraft:purple_banner", - "minecraft:blue_banner", - "minecraft:brown_banner", - "minecraft:green_banner", - "minecraft:red_banner", - "minecraft:black_banner", - "minecraft:white_wall_banner", - "minecraft:orange_wall_banner", - "minecraft:magenta_wall_banner", - "minecraft:light_blue_wall_banner", - "minecraft:yellow_wall_banner", - "minecraft:lime_wall_banner", - "minecraft:pink_wall_banner", - "minecraft:gray_wall_banner", - "minecraft:light_gray_wall_banner", - "minecraft:cyan_wall_banner", - "minecraft:purple_wall_banner", - "minecraft:blue_wall_banner", - "minecraft:brown_wall_banner", - "minecraft:green_wall_banner", - "minecraft:red_wall_banner", - "minecraft:black_wall_banner" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/base_stone_overworld.json b/src/main/resources/data/minecraft/tags/blocks/base_stone_overworld.json new file mode 100644 index 00000000..2083f887 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/base_stone_overworld.json @@ -0,0 +1,34 @@ +{ + "replace": false, + "values": [ + "strata:aa", + "strata:adakite", + "strata:amphibolite", + "strata:eclogite", + "strata:gabbro", + "strata:gneiss", + "strata:marble", + "strata:pahoehoe", + "strata:schist", + "strata:dacite", + "strata:dunite", + "strata:komatiite", + "strata:pegmatite", + "strata:phonolite", + "strata:cataclasite", + "strata:migmatite", + "strata:slate", + "strata:soapstone", + "strata:phyllite", + "strata:argillite", + "strata:arkose", + "strata:breccia", + "strata:chalk", + "strata:claystone", + "strata:dolomite", + "strata:jaspillite", + "strata:limestone", + "strata:mudstone", + "strata:shale" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/beds.json b/src/main/resources/data/minecraft/tags/blocks/beds.json deleted file mode 100644 index 2e031f30..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/beds.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:red_bed", - "minecraft:black_bed", - "minecraft:blue_bed", - "minecraft:brown_bed", - "minecraft:cyan_bed", - "minecraft:gray_bed", - "minecraft:green_bed", - "minecraft:light_blue_bed", - "minecraft:light_gray_bed", - "minecraft:lime_bed", - "minecraft:magenta_bed", - "minecraft:orange_bed", - "minecraft:pink_bed", - "minecraft:purple_bed", - "minecraft:white_bed", - "minecraft:yellow_bed" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/birch_logs.json b/src/main/resources/data/minecraft/tags/blocks/birch_logs.json deleted file mode 100644 index 7be61059..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/birch_logs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:birch_log", - "minecraft:birch_wood", - "minecraft:stripped_birch_log", - "minecraft:stripped_birch_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/buttons.json b/src/main/resources/data/minecraft/tags/blocks/buttons.json index 5682e9c3..72d4d06f 100644 --- a/src/main/resources/data/minecraft/tags/blocks/buttons.json +++ b/src/main/resources/data/minecraft/tags/blocks/buttons.json @@ -4,17 +4,31 @@ "strata:aa_button", "strata:adakite_button", "strata:amphibolite_button", - "strata:argillite_button", - "strata:basalt_button", - "strata:chalk_button", "strata:eclogite_button", "strata:gabbro_button", "strata:gneiss_button", - "strata:jaspillite_button", "strata:marble_button", - "strata:limestone_button", "strata:pahoehoe_button", "strata:schist_button", + "strata:dacite_button", + "strata:dunite_button", + "strata:komatiite_button", + "strata:pegmatite_button", + "strata:phonolite_button", + "strata:cataclasite_button", + "strata:migmatite_button", + "strata:slate_button", + "strata:soapstone_button", + "strata:phyllite_button", + "strata:argillite_button", + "strata:arkose_button", + "strata:breccia_button", + "strata:chalk_button", + "strata:claystone_button", + "strata:dolomite_button", + "strata:jaspillite_button", + "strata:limestone_button", + "strata:mudstone_button", "strata:shale_button" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/carpets.json b/src/main/resources/data/minecraft/tags/blocks/carpets.json deleted file mode 100644 index 9b28b1fd..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/carpets.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:white_carpet", - "minecraft:orange_carpet", - "minecraft:magenta_carpet", - "minecraft:light_blue_carpet", - "minecraft:yellow_carpet", - "minecraft:lime_carpet", - "minecraft:pink_carpet", - "minecraft:gray_carpet", - "minecraft:light_gray_carpet", - "minecraft:cyan_carpet", - "minecraft:purple_carpet", - "minecraft:blue_carpet", - "minecraft:brown_carpet", - "minecraft:green_carpet", - "minecraft:red_carpet", - "minecraft:black_carpet" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/coral_blocks.json b/src/main/resources/data/minecraft/tags/blocks/coral_blocks.json deleted file mode 100644 index e2e55241..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/coral_blocks.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:tube_coral_block", - "minecraft:brain_coral_block", - "minecraft:bubble_coral_block", - "minecraft:fire_coral_block", - "minecraft:horn_coral_block" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/coral_plants.json b/src/main/resources/data/minecraft/tags/blocks/coral_plants.json deleted file mode 100644 index 0aa32f52..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/coral_plants.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:tube_coral", - "minecraft:brain_coral", - "minecraft:bubble_coral", - "minecraft:fire_coral", - "minecraft:horn_coral" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/corals.json b/src/main/resources/data/minecraft/tags/blocks/corals.json deleted file mode 100644 index 649b6ebc..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/corals.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "#minecraft:coral_plants", - "minecraft:tube_coral_fan", - "minecraft:brain_coral_fan", - "minecraft:bubble_coral_fan", - "minecraft:fire_coral_fan", - "minecraft:horn_coral_fan" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/dark_oak_logs.json b/src/main/resources/data/minecraft/tags/blocks/dark_oak_logs.json deleted file mode 100644 index e1e3e165..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/dark_oak_logs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:dark_oak_log", - "minecraft:dark_oak_wood", - "minecraft:stripped_dark_oak_log", - "minecraft:stripped_dark_oak_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/dirt_like.json b/src/main/resources/data/minecraft/tags/blocks/dirt_like.json deleted file mode 100644 index 5e9ae12b..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/dirt_like.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:dirt", - "minecraft:grass_block", - "minecraft:podzol", - "minecraft:coarse_dirt", - "minecraft:mycelium" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/doors.json b/src/main/resources/data/minecraft/tags/blocks/doors.json deleted file mode 100644 index 0f9fe980..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/doors.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "#minecraft:wooden_doors", - "minecraft:iron_door" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/dragon_immune.json b/src/main/resources/data/minecraft/tags/blocks/dragon_immune.json deleted file mode 100644 index b11e9412..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/dragon_immune.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:barrier", - "minecraft:bedrock", - "minecraft:end_portal", - "minecraft:end_portal_frame", - "minecraft:end_gateway", - "minecraft:command_block", - "minecraft:repeating_command_block", - "minecraft:chain_command_block", - "minecraft:structure_block", - "minecraft:jigsaw", - "minecraft:moving_piston", - "minecraft:obsidian", - "minecraft:end_stone", - "minecraft:iron_bars" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/enderman_holdable.json b/src/main/resources/data/minecraft/tags/blocks/enderman_holdable.json deleted file mode 100644 index 723b590f..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/enderman_holdable.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "replace": false, - "values": [ - "#minecraft:small_flowers", - "minecraft:grass_block", - "minecraft:dirt", - "minecraft:coarse_dirt", - "minecraft:podzol", - "minecraft:sand", - "minecraft:red_sand", - "minecraft:gravel", - "minecraft:brown_mushroom", - "minecraft:red_mushroom", - "minecraft:tnt", - "minecraft:cactus", - "minecraft:clay", - "minecraft:pumpkin", - "minecraft:carved_pumpkin", - "minecraft:melon", - "minecraft:mycelium", - "minecraft:netherrack" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/fences.json b/src/main/resources/data/minecraft/tags/blocks/fences.json deleted file mode 100644 index 0ef08473..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/fences.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "#minecraft:wooden_fences", - "minecraft:nether_brick_fence" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/flower_pots.json b/src/main/resources/data/minecraft/tags/blocks/flower_pots.json deleted file mode 100644 index 81109fb8..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/flower_pots.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:flower_pot", - "minecraft:potted_poppy", - "minecraft:potted_blue_orchid", - "minecraft:potted_allium", - "minecraft:potted_azure_bluet", - "minecraft:potted_red_tulip", - "minecraft:potted_orange_tulip", - "minecraft:potted_white_tulip", - "minecraft:potted_pink_tulip", - "minecraft:potted_oxeye_daisy", - "minecraft:potted_dandelion", - "minecraft:potted_oak_sapling", - "minecraft:potted_spruce_sapling", - "minecraft:potted_birch_sapling", - "minecraft:potted_jungle_sapling", - "minecraft:potted_acacia_sapling", - "minecraft:potted_dark_oak_sapling", - "minecraft:potted_red_mushroom", - "minecraft:potted_brown_mushroom", - "minecraft:potted_dead_bush", - "minecraft:potted_fern", - "minecraft:potted_cactus", - "minecraft:potted_cornflower", - "minecraft:potted_lily_of_the_valley", - "minecraft:potted_wither_rose", - "minecraft:potted_bamboo" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/ice.json b/src/main/resources/data/minecraft/tags/blocks/ice.json deleted file mode 100644 index c5f45013..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/ice.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:ice", - "minecraft:packed_ice", - "minecraft:blue_ice", - "minecraft:frosted_ice" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/impermeable.json b/src/main/resources/data/minecraft/tags/blocks/impermeable.json deleted file mode 100644 index 9a23d087..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/impermeable.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:glass", - "minecraft:white_stained_glass", - "minecraft:orange_stained_glass", - "minecraft:magenta_stained_glass", - "minecraft:light_blue_stained_glass", - "minecraft:yellow_stained_glass", - "minecraft:lime_stained_glass", - "minecraft:pink_stained_glass", - "minecraft:gray_stained_glass", - "minecraft:light_gray_stained_glass", - "minecraft:cyan_stained_glass", - "minecraft:purple_stained_glass", - "minecraft:blue_stained_glass", - "minecraft:brown_stained_glass", - "minecraft:green_stained_glass", - "minecraft:red_stained_glass", - "minecraft:black_stained_glass" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/jungle_logs.json b/src/main/resources/data/minecraft/tags/blocks/jungle_logs.json deleted file mode 100644 index ec51d638..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/jungle_logs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:jungle_log", - "minecraft:jungle_wood", - "minecraft:stripped_jungle_log", - "minecraft:stripped_jungle_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/leaves.json b/src/main/resources/data/minecraft/tags/blocks/leaves.json deleted file mode 100644 index 036ec387..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/leaves.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:jungle_leaves", - "minecraft:oak_leaves", - "minecraft:spruce_leaves", - "minecraft:dark_oak_leaves", - "minecraft:acacia_leaves", - "minecraft:birch_leaves" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/logs.json b/src/main/resources/data/minecraft/tags/blocks/logs.json deleted file mode 100644 index e5a8d0fc..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/logs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "#minecraft:dark_oak_logs", - "#minecraft:oak_logs", - "#minecraft:acacia_logs", - "#minecraft:birch_logs", - "#minecraft:jungle_logs", - "#minecraft:spruce_logs" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/oak_logs.json b/src/main/resources/data/minecraft/tags/blocks/oak_logs.json deleted file mode 100644 index 927086f6..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/oak_logs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_log", - "minecraft:oak_wood", - "minecraft:stripped_oak_log", - "minecraft:stripped_oak_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/planks.json b/src/main/resources/data/minecraft/tags/blocks/planks.json deleted file mode 100644 index 72942d25..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/planks.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_planks", - "minecraft:spruce_planks", - "minecraft:birch_planks", - "minecraft:jungle_planks", - "minecraft:acacia_planks", - "minecraft:dark_oak_planks" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/rails.json b/src/main/resources/data/minecraft/tags/blocks/rails.json deleted file mode 100644 index 036ac7fc..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/rails.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:rail", - "minecraft:powered_rail", - "minecraft:detector_rail", - "minecraft:activator_rail" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/sand.json b/src/main/resources/data/minecraft/tags/blocks/sand.json deleted file mode 100644 index fa7a9c4a..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/sand.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:sand", - "minecraft:red_sand" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/saplings.json b/src/main/resources/data/minecraft/tags/blocks/saplings.json deleted file mode 100644 index 04fe81f9..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/saplings.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_sapling", - "minecraft:spruce_sapling", - "minecraft:birch_sapling", - "minecraft:jungle_sapling", - "minecraft:acacia_sapling", - "minecraft:dark_oak_sapling" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/signs.json b/src/main/resources/data/minecraft/tags/blocks/signs.json deleted file mode 100644 index 7677a609..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/signs.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "#minecraft:standing_signs", - "#minecraft:wall_signs" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/slabs.json b/src/main/resources/data/minecraft/tags/blocks/slabs.json index c23a4f6a..21c62a77 100644 --- a/src/main/resources/data/minecraft/tags/blocks/slabs.json +++ b/src/main/resources/data/minecraft/tags/blocks/slabs.json @@ -4,77 +4,176 @@ "strata:aa_slab", "strata:adakite_slab", "strata:amphibolite_slab", - "strata:argillite_slab", - "strata:basalt_slab", - "strata:chalk_slab", "strata:eclogite_slab", "strata:gabbro_slab", "strata:gneiss_slab", - "strata:jaspillite_slab", "strata:marble_slab", - "strata:limestone_slab", "strata:pahoehoe_slab", "strata:schist_slab", + "strata:dacite_slab", + "strata:dunite_slab", + "strata:komatiite_slab", + "strata:pegmatite_slab", + "strata:phonolite_slab", + "strata:cataclasite_slab", + "strata:migmatite_slab", + "strata:slate_slab", + "strata:soapstone_slab", + "strata:phyllite_slab", + "strata:argillite_slab", + "strata:arkose_slab", + "strata:breccia_slab", + "strata:chalk_slab", + "strata:claystone_slab", + "strata:dolomite_slab", + "strata:jaspillite_slab", + "strata:limestone_slab", + "strata:mudstone_slab", "strata:shale_slab", "strata:aa_cobblestone_slab", "strata:adakite_cobblestone_slab", "strata:amphibolite_cobblestone_slab", - "strata:argillite_cobblestone_slab", - "strata:basalt_cobblestone_slab", - "strata:chalk_cobblestone_slab", "strata:eclogite_cobblestone_slab", "strata:gabbro_cobblestone_slab", "strata:gneiss_cobblestone_slab", - "strata:jaspillite_cobblestone_slab", "strata:marble_cobblestone_slab", - "strata:limestone_cobblestone_slab", "strata:pahoehoe_cobblestone_slab", "strata:schist_cobblestone_slab", + "strata:dacite_cobblestone_slab", + "strata:dunite_cobblestone_slab", + "strata:komatiite_cobblestone_slab", + "strata:pegmatite_cobblestone_slab", + "strata:phonolite_cobblestone_slab", + "strata:cataclasite_cobblestone_slab", + "strata:migmatite_cobblestone_slab", + "strata:slate_cobblestone_slab", + "strata:soapstone_cobblestone_slab", + "strata:phyllite_cobblestone_slab", + "strata:argillite_cobblestone_slab", + "strata:arkose_cobblestone_slab", + "strata:breccia_cobblestone_slab", + "strata:chalk_cobblestone_slab", + "strata:claystone_cobblestone_slab", + "strata:dolomite_cobblestone_slab", + "strata:jaspillite_cobblestone_slab", + "strata:limestone_cobblestone_slab", + "strata:mudstone_cobblestone_slab", "strata:shale_cobblestone_slab", - "strata:mossy_aa_cobblestone_slab", - "strata:mossy_adakite_cobblestone_slab", - "strata:mossy_amphibolite_cobblestone_slab", - "strata:mossy_argillite_cobblestone_slab", - "strata:mossy_basalt_cobblestone_slab", - "strata:mossy_chalk_cobblestone_slab", - "strata:mossy_eclogite_cobblestone_slab", - "strata:mossy_gabbro_cobblestone_slab", - "strata:mossy_gneiss_cobblestone_slab", - "strata:mossy_jaspillite_cobblestone_slab", - "strata:mossy_marble_cobblestone_slab", - "strata:mossy_limestone_cobblestone_slab", - "strata:mossy_pahoehoe_cobblestone_slab", - "strata:mossy_schist_cobblestone_slab", - "strata:mossy_shale_cobblestone_slab", "strata:aa_brick_slab", "strata:adakite_brick_slab", "strata:amphibolite_brick_slab", - "strata:argillite_brick_slab", - "strata:basalt_brick_slab", - "strata:chalk_brick_slab", "strata:eclogite_brick_slab", "strata:gabbro_brick_slab", "strata:gneiss_brick_slab", - "strata:jaspillite_brick_slab", "strata:marble_brick_slab", - "strata:limestone_brick_slab", "strata:pahoehoe_brick_slab", "strata:schist_brick_slab", + "strata:dacite_brick_slab", + "strata:dunite_brick_slab", + "strata:komatiite_brick_slab", + "strata:pegmatite_brick_slab", + "strata:phonolite_brick_slab", + "strata:cataclasite_brick_slab", + "strata:migmatite_brick_slab", + "strata:slate_brick_slab", + "strata:soapstone_brick_slab", + "strata:phyllite_brick_slab", + "strata:argillite_brick_slab", + "strata:arkose_brick_slab", + "strata:breccia_brick_slab", + "strata:chalk_brick_slab", + "strata:claystone_brick_slab", + "strata:dolomite_brick_slab", + "strata:jaspillite_brick_slab", + "strata:limestone_brick_slab", + "strata:mudstone_brick_slab", "strata:shale_brick_slab", + "strata:polished_aa_slab", + "strata:polished_adakite_slab", + "strata:polished_amphibolite_slab", + "strata:polished_eclogite_slab", + "strata:polished_gabbro_slab", + "strata:polished_gneiss_slab", + "strata:polished_marble_slab", + "strata:polished_pahoehoe_slab", + "strata:polished_schist_slab", + "strata:polished_dacite_slab", + "strata:polished_dunite_slab", + "strata:polished_komatiite_slab", + "strata:polished_pegmatite_slab", + "strata:polished_phonolite_slab", + "strata:polished_cataclasite_slab", + "strata:polished_migmatite_slab", + "strata:polished_slate_slab", + "strata:polished_soapstone_slab", + "strata:polished_phyllite_slab", + "strata:polished_argillite_slab", + "strata:polished_arkose_slab", + "strata:polished_breccia_slab", + "strata:polished_chalk_slab", + "strata:polished_claystone_slab", + "strata:polished_dolomite_slab", + "strata:polished_jaspillite_slab", + "strata:polished_limestone_slab", + "strata:polished_mudstone_slab", + "strata:polished_shale_slab", + "strata:mossy_aa_cobblestone_slab", + "strata:mossy_adakite_cobblestone_slab", + "strata:mossy_amphibolite_cobblestone_slab", + "strata:mossy_eclogite_cobblestone_slab", + "strata:mossy_gabbro_cobblestone_slab", + "strata:mossy_gneiss_cobblestone_slab", + "strata:mossy_marble_cobblestone_slab", + "strata:mossy_pahoehoe_cobblestone_slab", + "strata:mossy_schist_cobblestone_slab", + "strata:mossy_dacite_cobblestone_slab", + "strata:mossy_dunite_cobblestone_slab", + "strata:mossy_komatiite_cobblestone_slab", + "strata:mossy_pegmatite_cobblestone_slab", + "strata:mossy_phonolite_cobblestone_slab", + "strata:mossy_cataclasite_cobblestone_slab", + "strata:mossy_migmatite_cobblestone_slab", + "strata:mossy_slate_cobblestone_slab", + "strata:mossy_soapstone_cobblestone_slab", + "strata:mossy_phyllite_cobblestone_slab", + "strata:mossy_argillite_cobblestone_slab", + "strata:mossy_arkose_cobblestone_slab", + "strata:mossy_breccia_cobblestone_slab", + "strata:mossy_chalk_cobblestone_slab", + "strata:mossy_claystone_cobblestone_slab", + "strata:mossy_dolomite_cobblestone_slab", + "strata:mossy_jaspillite_cobblestone_slab", + "strata:mossy_limestone_cobblestone_slab", + "strata:mossy_mudstone_cobblestone_slab", + "strata:mossy_shale_cobblestone_slab", "strata:mossy_aa_brick_slab", "strata:mossy_adakite_brick_slab", "strata:mossy_amphibolite_brick_slab", - "strata:mossy_argillite_brick_slab", - "strata:mossy_basalt_brick_slab", - "strata:mossy_chalk_brick_slab", "strata:mossy_eclogite_brick_slab", "strata:mossy_gabbro_brick_slab", "strata:mossy_gneiss_brick_slab", - "strata:mossy_jaspillite_brick_slab", "strata:mossy_marble_brick_slab", - "strata:mossy_limestone_brick_slab", "strata:mossy_pahoehoe_brick_slab", "strata:mossy_schist_brick_slab", + "strata:mossy_dacite_brick_slab", + "strata:mossy_dunite_brick_slab", + "strata:mossy_komatiite_brick_slab", + "strata:mossy_pegmatite_brick_slab", + "strata:mossy_phonolite_brick_slab", + "strata:mossy_cataclasite_brick_slab", + "strata:mossy_migmatite_brick_slab", + "strata:mossy_slate_brick_slab", + "strata:mossy_soapstone_brick_slab", + "strata:mossy_phyllite_brick_slab", + "strata:mossy_argillite_brick_slab", + "strata:mossy_arkose_brick_slab", + "strata:mossy_breccia_brick_slab", + "strata:mossy_chalk_brick_slab", + "strata:mossy_claystone_brick_slab", + "strata:mossy_dolomite_brick_slab", + "strata:mossy_jaspillite_brick_slab", + "strata:mossy_limestone_brick_slab", + "strata:mossy_mudstone_brick_slab", "strata:mossy_shale_brick_slab" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/small_flowers.json b/src/main/resources/data/minecraft/tags/blocks/small_flowers.json deleted file mode 100644 index 395128a6..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/small_flowers.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:dandelion", - "minecraft:poppy", - "minecraft:blue_orchid", - "minecraft:allium", - "minecraft:azure_bluet", - "minecraft:red_tulip", - "minecraft:orange_tulip", - "minecraft:white_tulip", - "minecraft:pink_tulip", - "minecraft:oxeye_daisy", - "minecraft:cornflower", - "minecraft:lily_of_the_valley", - "minecraft:wither_rose" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/spruce_logs.json b/src/main/resources/data/minecraft/tags/blocks/spruce_logs.json deleted file mode 100644 index 87b5caf6..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/spruce_logs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:spruce_log", - "minecraft:spruce_wood", - "minecraft:stripped_spruce_log", - "minecraft:stripped_spruce_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/stairs.json b/src/main/resources/data/minecraft/tags/blocks/stairs.json index ae4f66f6..3e3a8898 100644 --- a/src/main/resources/data/minecraft/tags/blocks/stairs.json +++ b/src/main/resources/data/minecraft/tags/blocks/stairs.json @@ -4,77 +4,176 @@ "strata:aa_stairs", "strata:adakite_stairs", "strata:amphibolite_stairs", - "strata:argillite_stairs", - "strata:basalt_stairs", - "strata:chalk_stairs", "strata:eclogite_stairs", "strata:gabbro_stairs", "strata:gneiss_stairs", - "strata:jaspillite_stairs", "strata:marble_stairs", - "strata:limestone_stairs", "strata:pahoehoe_stairs", "strata:schist_stairs", + "strata:dacite_stairs", + "strata:dunite_stairs", + "strata:komatiite_stairs", + "strata:pegmatite_stairs", + "strata:phonolite_stairs", + "strata:cataclasite_stairs", + "strata:migmatite_stairs", + "strata:slate_stairs", + "strata:soapstone_stairs", + "strata:phyllite_stairs", + "strata:argillite_stairs", + "strata:arkose_stairs", + "strata:breccia_stairs", + "strata:chalk_stairs", + "strata:claystone_stairs", + "strata:dolomite_stairs", + "strata:jaspillite_stairs", + "strata:limestone_stairs", + "strata:mudstone_stairs", "strata:shale_stairs", "strata:aa_cobblestone_stairs", "strata:adakite_cobblestone_stairs", "strata:amphibolite_cobblestone_stairs", - "strata:argillite_cobblestone_stairs", - "strata:basalt_cobblestone_stairs", - "strata:chalk_cobblestone_stairs", "strata:eclogite_cobblestone_stairs", "strata:gabbro_cobblestone_stairs", "strata:gneiss_cobblestone_stairs", - "strata:jaspillite_cobblestone_stairs", "strata:marble_cobblestone_stairs", - "strata:limestone_cobblestone_stairs", "strata:pahoehoe_cobblestone_stairs", "strata:schist_cobblestone_stairs", + "strata:dacite_cobblestone_stairs", + "strata:dunite_cobblestone_stairs", + "strata:komatiite_cobblestone_stairs", + "strata:pegmatite_cobblestone_stairs", + "strata:phonolite_cobblestone_stairs", + "strata:cataclasite_cobblestone_stairs", + "strata:migmatite_cobblestone_stairs", + "strata:slate_cobblestone_stairs", + "strata:soapstone_cobblestone_stairs", + "strata:phyllite_cobblestone_stairs", + "strata:argillite_cobblestone_stairs", + "strata:arkose_cobblestone_stairs", + "strata:breccia_cobblestone_stairs", + "strata:chalk_cobblestone_stairs", + "strata:claystone_cobblestone_stairs", + "strata:dolomite_cobblestone_stairs", + "strata:jaspillite_cobblestone_stairs", + "strata:limestone_cobblestone_stairs", + "strata:mudstone_cobblestone_stairs", "strata:shale_cobblestone_stairs", - "strata:mossy_aa_cobblestone_stairs", - "strata:mossy_adakite_cobblestone_stairs", - "strata:mossy_amphibolite_cobblestone_stairs", - "strata:mossy_argillite_cobblestone_stairs", - "strata:mossy_basalt_cobblestone_stairs", - "strata:mossy_chalk_cobblestone_stairs", - "strata:mossy_eclogite_cobblestone_stairs", - "strata:mossy_gabbro_cobblestone_stairs", - "strata:mossy_gneiss_cobblestone_stairs", - "strata:mossy_jaspillite_cobblestone_stairs", - "strata:mossy_marble_cobblestone_stairs", - "strata:mossy_limestone_cobblestone_stairs", - "strata:mossy_pahoehoe_cobblestone_stairs", - "strata:mossy_schist_cobblestone_stairs", - "strata:mossy_shale_cobblestone_stairs", "strata:aa_brick_stairs", "strata:adakite_brick_stairs", "strata:amphibolite_brick_stairs", - "strata:argillite_brick_stairs", - "strata:basalt_brick_stairs", - "strata:chalk_brick_stairs", "strata:eclogite_brick_stairs", "strata:gabbro_brick_stairs", "strata:gneiss_brick_stairs", - "strata:jaspillite_brick_stairs", "strata:marble_brick_stairs", - "strata:limestone_brick_stairs", "strata:pahoehoe_brick_stairs", "strata:schist_brick_stairs", + "strata:dacite_brick_stairs", + "strata:dunite_brick_stairs", + "strata:komatiite_brick_stairs", + "strata:pegmatite_brick_stairs", + "strata:phonolite_brick_stairs", + "strata:cataclasite_brick_stairs", + "strata:migmatite_brick_stairs", + "strata:slate_brick_stairs", + "strata:soapstone_brick_stairs", + "strata:phyllite_brick_stairs", + "strata:argillite_brick_stairs", + "strata:arkose_brick_stairs", + "strata:breccia_brick_stairs", + "strata:chalk_brick_stairs", + "strata:claystone_brick_stairs", + "strata:dolomite_brick_stairs", + "strata:jaspillite_brick_stairs", + "strata:limestone_brick_stairs", + "strata:mudstone_brick_stairs", "strata:shale_brick_stairs", + "strata:polished_aa_stairs", + "strata:polished_adakite_stairs", + "strata:polished_amphibolite_stairs", + "strata:polished_eclogite_stairs", + "strata:polished_gabbro_stairs", + "strata:polished_gneiss_stairs", + "strata:polished_marble_stairs", + "strata:polished_pahoehoe_stairs", + "strata:polished_schist_stairs", + "strata:polished_dacite_stairs", + "strata:polished_dunite_stairs", + "strata:polished_komatiite_stairs", + "strata:polished_pegmatite_stairs", + "strata:polished_phonolite_stairs", + "strata:polished_cataclasite_stairs", + "strata:polished_migmatite_stairs", + "strata:polished_slate_stairs", + "strata:polished_soapstone_stairs", + "strata:polished_phyllite_stairs", + "strata:polished_argillite_stairs", + "strata:polished_arkose_stairs", + "strata:polished_breccia_stairs", + "strata:polished_chalk_stairs", + "strata:polished_claystone_stairs", + "strata:polished_dolomite_stairs", + "strata:polished_jaspillite_stairs", + "strata:polished_limestone_stairs", + "strata:polished_mudstone_stairs", + "strata:polished_shale_stairs", + "strata:mossy_aa_cobblestone_stairs", + "strata:mossy_adakite_cobblestone_stairs", + "strata:mossy_amphibolite_cobblestone_stairs", + "strata:mossy_eclogite_cobblestone_stairs", + "strata:mossy_gabbro_cobblestone_stairs", + "strata:mossy_gneiss_cobblestone_stairs", + "strata:mossy_marble_cobblestone_stairs", + "strata:mossy_pahoehoe_cobblestone_stairs", + "strata:mossy_schist_cobblestone_stairs", + "strata:mossy_dacite_cobblestone_stairs", + "strata:mossy_dunite_cobblestone_stairs", + "strata:mossy_komatiite_cobblestone_stairs", + "strata:mossy_pegmatite_cobblestone_stairs", + "strata:mossy_phonolite_cobblestone_stairs", + "strata:mossy_cataclasite_cobblestone_stairs", + "strata:mossy_migmatite_cobblestone_stairs", + "strata:mossy_slate_cobblestone_stairs", + "strata:mossy_soapstone_cobblestone_stairs", + "strata:mossy_phyllite_cobblestone_stairs", + "strata:mossy_argillite_cobblestone_stairs", + "strata:mossy_arkose_cobblestone_stairs", + "strata:mossy_breccia_cobblestone_stairs", + "strata:mossy_chalk_cobblestone_stairs", + "strata:mossy_claystone_cobblestone_stairs", + "strata:mossy_dolomite_cobblestone_stairs", + "strata:mossy_jaspillite_cobblestone_stairs", + "strata:mossy_limestone_cobblestone_stairs", + "strata:mossy_mudstone_cobblestone_stairs", + "strata:mossy_shale_cobblestone_stairs", "strata:mossy_aa_brick_stairs", "strata:mossy_adakite_brick_stairs", "strata:mossy_amphibolite_brick_stairs", - "strata:mossy_argillite_brick_stairs", - "strata:mossy_basalt_brick_stairs", - "strata:mossy_chalk_brick_stairs", "strata:mossy_eclogite_brick_stairs", "strata:mossy_gabbro_brick_stairs", "strata:mossy_gneiss_brick_stairs", - "strata:mossy_jaspillite_brick_stairs", "strata:mossy_marble_brick_stairs", - "strata:mossy_limestone_brick_stairs", "strata:mossy_pahoehoe_brick_stairs", "strata:mossy_schist_brick_stairs", + "strata:mossy_dacite_brick_stairs", + "strata:mossy_dunite_brick_stairs", + "strata:mossy_komatiite_brick_stairs", + "strata:mossy_pegmatite_brick_stairs", + "strata:mossy_phonolite_brick_stairs", + "strata:mossy_cataclasite_brick_stairs", + "strata:mossy_migmatite_brick_stairs", + "strata:mossy_slate_brick_stairs", + "strata:mossy_soapstone_brick_stairs", + "strata:mossy_phyllite_brick_stairs", + "strata:mossy_argillite_brick_stairs", + "strata:mossy_arkose_brick_stairs", + "strata:mossy_breccia_brick_stairs", + "strata:mossy_chalk_brick_stairs", + "strata:mossy_claystone_brick_stairs", + "strata:mossy_dolomite_brick_stairs", + "strata:mossy_jaspillite_brick_stairs", + "strata:mossy_limestone_brick_stairs", + "strata:mossy_mudstone_brick_stairs", "strata:mossy_shale_brick_stairs" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/standing_signs.json b/src/main/resources/data/minecraft/tags/blocks/standing_signs.json deleted file mode 100644 index aeee8038..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/standing_signs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_sign", - "minecraft:spruce_sign", - "minecraft:birch_sign", - "minecraft:acacia_sign", - "minecraft:jungle_sign", - "minecraft:dark_oak_sign" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/stone_bricks.json b/src/main/resources/data/minecraft/tags/blocks/stone_bricks.json deleted file mode 100644 index 7cec36c5..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/stone_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:stone_bricks", - "minecraft:mossy_stone_bricks", - "minecraft:cracked_stone_bricks", - "minecraft:chiseled_stone_bricks" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/trapdoors.json b/src/main/resources/data/minecraft/tags/blocks/trapdoors.json deleted file mode 100644 index d9625857..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/trapdoors.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "#minecraft:wooden_trapdoors", - "minecraft:iron_trapdoor" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/underwater_bonemeals.json b/src/main/resources/data/minecraft/tags/blocks/underwater_bonemeals.json deleted file mode 100644 index c1245146..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/underwater_bonemeals.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:seagrass", - "#minecraft:corals", - "#minecraft:wall_corals" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/valid_spawn.json b/src/main/resources/data/minecraft/tags/blocks/valid_spawn.json deleted file mode 100644 index bcbc42e1..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/valid_spawn.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:grass_block", - "minecraft:podzol" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/wall_corals.json b/src/main/resources/data/minecraft/tags/blocks/wall_corals.json deleted file mode 100644 index db2c3304..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/wall_corals.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:tube_coral_wall_fan", - "minecraft:brain_coral_wall_fan", - "minecraft:bubble_coral_wall_fan", - "minecraft:fire_coral_wall_fan", - "minecraft:horn_coral_wall_fan" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/wall_signs.json b/src/main/resources/data/minecraft/tags/blocks/wall_signs.json deleted file mode 100644 index cace0078..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/wall_signs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_wall_sign", - "minecraft:spruce_wall_sign", - "minecraft:birch_wall_sign", - "minecraft:acacia_wall_sign", - "minecraft:jungle_wall_sign", - "minecraft:dark_oak_wall_sign" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/walls.json b/src/main/resources/data/minecraft/tags/blocks/walls.json index 4fdcf985..02487834 100644 --- a/src/main/resources/data/minecraft/tags/blocks/walls.json +++ b/src/main/resources/data/minecraft/tags/blocks/walls.json @@ -4,77 +4,147 @@ "strata:aa_wall", "strata:adakite_wall", "strata:amphibolite_wall", - "strata:argillite_wall", - "strata:basalt_wall", - "strata:chalk_wall", "strata:eclogite_wall", "strata:gabbro_wall", "strata:gneiss_wall", - "strata:jaspillite_wall", "strata:marble_wall", - "strata:limestone_wall", "strata:pahoehoe_wall", "strata:schist_wall", + "strata:dacite_wall", + "strata:dunite_wall", + "strata:komatiite_wall", + "strata:pegmatite_wall", + "strata:phonolite_wall", + "strata:cataclasite_wall", + "strata:migmatite_wall", + "strata:slate_wall", + "strata:soapstone_wall", + "strata:phyllite_wall", + "strata:argillite_wall", + "strata:arkose_wall", + "strata:breccia_wall", + "strata:chalk_wall", + "strata:claystone_wall", + "strata:dolomite_wall", + "strata:jaspillite_wall", + "strata:limestone_wall", + "strata:mudstone_wall", "strata:shale_wall", "strata:aa_cobblestone_wall", "strata:adakite_cobblestone_wall", "strata:amphibolite_cobblestone_wall", - "strata:argillite_cobblestone_wall", - "strata:basalt_cobblestone_wall", - "strata:chalk_cobblestone_wall", "strata:eclogite_cobblestone_wall", "strata:gabbro_cobblestone_wall", "strata:gneiss_cobblestone_wall", - "strata:jaspillite_cobblestone_wall", "strata:marble_cobblestone_wall", - "strata:limestone_cobblestone_wall", "strata:pahoehoe_cobblestone_wall", "strata:schist_cobblestone_wall", + "strata:dacite_cobblestone_wall", + "strata:dunite_cobblestone_wall", + "strata:komatiite_cobblestone_wall", + "strata:pegmatite_cobblestone_wall", + "strata:phonolite_cobblestone_wall", + "strata:cataclasite_cobblestone_wall", + "strata:migmatite_cobblestone_wall", + "strata:slate_cobblestone_wall", + "strata:soapstone_cobblestone_wall", + "strata:phyllite_cobblestone_wall", + "strata:argillite_cobblestone_wall", + "strata:arkose_cobblestone_wall", + "strata:breccia_cobblestone_wall", + "strata:chalk_cobblestone_wall", + "strata:claystone_cobblestone_wall", + "strata:dolomite_cobblestone_wall", + "strata:jaspillite_cobblestone_wall", + "strata:limestone_cobblestone_wall", + "strata:mudstone_cobblestone_wall", "strata:shale_cobblestone_wall", - "strata:mossy_aa_cobblestone_wall", - "strata:mossy_adakite_cobblestone_wall", - "strata:mossy_amphibolite_cobblestone_wall", - "strata:mossy_argillite_cobblestone_wall", - "strata:mossy_basalt_cobblestone_wall", - "strata:mossy_chalk_cobblestone_wall", - "strata:mossy_eclogite_cobblestone_wall", - "strata:mossy_gabbro_cobblestone_wall", - "strata:mossy_gneiss_cobblestone_wall", - "strata:mossy_jaspillite_cobblestone_wall", - "strata:mossy_marble_cobblestone_wall", - "strata:mossy_limestone_cobblestone_wall", - "strata:mossy_pahoehoe_cobblestone_wall", - "strata:mossy_schist_cobblestone_wall", - "strata:mossy_shale_cobblestone_wall", "strata:aa_brick_wall", "strata:adakite_brick_wall", "strata:amphibolite_brick_wall", - "strata:argillite_brick_wall", - "strata:basalt_brick_wall", - "strata:chalk_brick_wall", "strata:eclogite_brick_wall", "strata:gabbro_brick_wall", "strata:gneiss_brick_wall", - "strata:jaspillite_brick_wall", "strata:marble_brick_wall", - "strata:limestone_brick_wall", "strata:pahoehoe_brick_wall", "strata:schist_brick_wall", + "strata:dacite_brick_wall", + "strata:dunite_brick_wall", + "strata:komatiite_brick_wall", + "strata:pegmatite_brick_wall", + "strata:phonolite_brick_wall", + "strata:cataclasite_brick_wall", + "strata:migmatite_brick_wall", + "strata:slate_brick_wall", + "strata:soapstone_brick_wall", + "strata:phyllite_brick_wall", + "strata:argillite_brick_wall", + "strata:arkose_brick_wall", + "strata:breccia_brick_wall", + "strata:chalk_brick_wall", + "strata:claystone_brick_wall", + "strata:dolomite_brick_wall", + "strata:jaspillite_brick_wall", + "strata:limestone_brick_wall", + "strata:mudstone_brick_wall", "strata:shale_brick_wall", + "strata:mossy_aa_cobblestone_wall", + "strata:mossy_adakite_cobblestone_wall", + "strata:mossy_amphibolite_cobblestone_wall", + "strata:mossy_eclogite_cobblestone_wall", + "strata:mossy_gabbro_cobblestone_wall", + "strata:mossy_gneiss_cobblestone_wall", + "strata:mossy_marble_cobblestone_wall", + "strata:mossy_pahoehoe_cobblestone_wall", + "strata:mossy_schist_cobblestone_wall", + "strata:mossy_dacite_cobblestone_wall", + "strata:mossy_dunite_cobblestone_wall", + "strata:mossy_komatiite_cobblestone_wall", + "strata:mossy_pegmatite_cobblestone_wall", + "strata:mossy_phonolite_cobblestone_wall", + "strata:mossy_cataclasite_cobblestone_wall", + "strata:mossy_migmatite_cobblestone_wall", + "strata:mossy_slate_cobblestone_wall", + "strata:mossy_soapstone_cobblestone_wall", + "strata:mossy_phyllite_cobblestone_wall", + "strata:mossy_argillite_cobblestone_wall", + "strata:mossy_arkose_cobblestone_wall", + "strata:mossy_breccia_cobblestone_wall", + "strata:mossy_chalk_cobblestone_wall", + "strata:mossy_claystone_cobblestone_wall", + "strata:mossy_dolomite_cobblestone_wall", + "strata:mossy_jaspillite_cobblestone_wall", + "strata:mossy_limestone_cobblestone_wall", + "strata:mossy_mudstone_cobblestone_wall", + "strata:mossy_shale_cobblestone_wall", "strata:mossy_aa_brick_wall", "strata:mossy_adakite_brick_wall", "strata:mossy_amphibolite_brick_wall", - "strata:mossy_argillite_brick_wall", - "strata:mossy_basalt_brick_wall", - "strata:mossy_chalk_brick_wall", "strata:mossy_eclogite_brick_wall", "strata:mossy_gabbro_brick_wall", "strata:mossy_gneiss_brick_wall", - "strata:mossy_jaspillite_brick_wall", "strata:mossy_marble_brick_wall", - "strata:mossy_limestone_brick_wall", "strata:mossy_pahoehoe_brick_wall", "strata:mossy_schist_brick_wall", + "strata:mossy_dacite_brick_wall", + "strata:mossy_dunite_brick_wall", + "strata:mossy_komatiite_brick_wall", + "strata:mossy_pegmatite_brick_wall", + "strata:mossy_phonolite_brick_wall", + "strata:mossy_cataclasite_brick_wall", + "strata:mossy_migmatite_brick_wall", + "strata:mossy_slate_brick_wall", + "strata:mossy_soapstone_brick_wall", + "strata:mossy_phyllite_brick_wall", + "strata:mossy_argillite_brick_wall", + "strata:mossy_arkose_brick_wall", + "strata:mossy_breccia_brick_wall", + "strata:mossy_chalk_brick_wall", + "strata:mossy_claystone_brick_wall", + "strata:mossy_dolomite_brick_wall", + "strata:mossy_jaspillite_brick_wall", + "strata:mossy_limestone_brick_wall", + "strata:mossy_mudstone_brick_wall", "strata:mossy_shale_brick_wall" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/wither_immune.json b/src/main/resources/data/minecraft/tags/blocks/wither_immune.json deleted file mode 100644 index 995c6486..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/wither_immune.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:barrier", - "minecraft:bedrock", - "minecraft:end_portal", - "minecraft:end_portal_frame", - "minecraft:end_gateway", - "minecraft:command_block", - "minecraft:repeating_command_block", - "minecraft:chain_command_block", - "minecraft:structure_block", - "minecraft:jigsaw", - "minecraft:moving_piston" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/wooden_buttons.json b/src/main/resources/data/minecraft/tags/blocks/wooden_buttons.json deleted file mode 100644 index 5b09c902..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/wooden_buttons.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_button", - "minecraft:spruce_button", - "minecraft:birch_button", - "minecraft:jungle_button", - "minecraft:acacia_button", - "minecraft:dark_oak_button" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/wooden_doors.json b/src/main/resources/data/minecraft/tags/blocks/wooden_doors.json deleted file mode 100644 index b43e2368..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/wooden_doors.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_door", - "minecraft:spruce_door", - "minecraft:birch_door", - "minecraft:jungle_door", - "minecraft:acacia_door", - "minecraft:dark_oak_door" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/wooden_fences.json b/src/main/resources/data/minecraft/tags/blocks/wooden_fences.json deleted file mode 100644 index b6c73a9c..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/wooden_fences.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_fence", - "minecraft:acacia_fence", - "minecraft:dark_oak_fence", - "minecraft:spruce_fence", - "minecraft:birch_fence", - "minecraft:jungle_fence" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/wooden_pressure_plates.json b/src/main/resources/data/minecraft/tags/blocks/wooden_pressure_plates.json deleted file mode 100644 index 72570f15..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/wooden_pressure_plates.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_pressure_plate", - "minecraft:spruce_pressure_plate", - "minecraft:birch_pressure_plate", - "minecraft:jungle_pressure_plate", - "minecraft:acacia_pressure_plate", - "minecraft:dark_oak_pressure_plate" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/wooden_slabs.json b/src/main/resources/data/minecraft/tags/blocks/wooden_slabs.json deleted file mode 100644 index 62c848d6..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/wooden_slabs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_slab", - "minecraft:spruce_slab", - "minecraft:birch_slab", - "minecraft:jungle_slab", - "minecraft:acacia_slab", - "minecraft:dark_oak_slab" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/wooden_stairs.json b/src/main/resources/data/minecraft/tags/blocks/wooden_stairs.json deleted file mode 100644 index c3af3bf4..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/wooden_stairs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_stairs", - "minecraft:spruce_stairs", - "minecraft:birch_stairs", - "minecraft:jungle_stairs", - "minecraft:acacia_stairs", - "minecraft:dark_oak_stairs" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/wooden_trapdoors.json b/src/main/resources/data/minecraft/tags/blocks/wooden_trapdoors.json deleted file mode 100644 index bc8b2f4a..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/wooden_trapdoors.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:acacia_trapdoor", - "minecraft:birch_trapdoor", - "minecraft:dark_oak_trapdoor", - "minecraft:jungle_trapdoor", - "minecraft:oak_trapdoor", - "minecraft:spruce_trapdoor" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/wool.json b/src/main/resources/data/minecraft/tags/blocks/wool.json deleted file mode 100644 index c39732fc..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/wool.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:white_wool", - "minecraft:orange_wool", - "minecraft:magenta_wool", - "minecraft:light_blue_wool", - "minecraft:yellow_wool", - "minecraft:lime_wool", - "minecraft:pink_wool", - "minecraft:gray_wool", - "minecraft:light_gray_wool", - "minecraft:cyan_wool", - "minecraft:purple_wool", - "minecraft:blue_wool", - "minecraft:brown_wool", - "minecraft:green_wool", - "minecraft:red_wool", - "minecraft:black_wool" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_types/raiders.json b/src/main/resources/data/minecraft/tags/entity_types/raiders.json deleted file mode 100644 index 8eefee28..00000000 --- a/src/main/resources/data/minecraft/tags/entity_types/raiders.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:evoker", - "minecraft:pillager", - "minecraft:ravager", - "minecraft:vindicator", - "minecraft:illusioner", - "minecraft:witch" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_types/skeletons.json b/src/main/resources/data/minecraft/tags/entity_types/skeletons.json deleted file mode 100644 index 27b34650..00000000 --- a/src/main/resources/data/minecraft/tags/entity_types/skeletons.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:skeleton", - "minecraft:stray", - "minecraft:wither_skeleton" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/fluids/lava.json b/src/main/resources/data/minecraft/tags/fluids/lava.json deleted file mode 100644 index a21400bd..00000000 --- a/src/main/resources/data/minecraft/tags/fluids/lava.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:lava", - "minecraft:flowing_lava" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/fluids/water.json b/src/main/resources/data/minecraft/tags/fluids/water.json deleted file mode 100644 index 75417261..00000000 --- a/src/main/resources/data/minecraft/tags/fluids/water.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:water", - "minecraft:flowing_water" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/acacia_logs.json b/src/main/resources/data/minecraft/tags/items/acacia_logs.json deleted file mode 100644 index 2aa36aea..00000000 --- a/src/main/resources/data/minecraft/tags/items/acacia_logs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:acacia_log", - "minecraft:acacia_wood", - "minecraft:stripped_acacia_log", - "minecraft:stripped_acacia_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/anvil.json b/src/main/resources/data/minecraft/tags/items/anvil.json deleted file mode 100644 index d69773e1..00000000 --- a/src/main/resources/data/minecraft/tags/items/anvil.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:anvil", - "minecraft:chipped_anvil", - "minecraft:damaged_anvil" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/arrows.json b/src/main/resources/data/minecraft/tags/items/arrows.json deleted file mode 100644 index 69ebb0d5..00000000 --- a/src/main/resources/data/minecraft/tags/items/arrows.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:arrow", - "minecraft:tipped_arrow", - "minecraft:spectral_arrow" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/banners.json b/src/main/resources/data/minecraft/tags/items/banners.json deleted file mode 100644 index 228a4e9e..00000000 --- a/src/main/resources/data/minecraft/tags/items/banners.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:white_banner", - "minecraft:orange_banner", - "minecraft:magenta_banner", - "minecraft:light_blue_banner", - "minecraft:yellow_banner", - "minecraft:lime_banner", - "minecraft:pink_banner", - "minecraft:gray_banner", - "minecraft:light_gray_banner", - "minecraft:cyan_banner", - "minecraft:purple_banner", - "minecraft:blue_banner", - "minecraft:brown_banner", - "minecraft:green_banner", - "minecraft:red_banner", - "minecraft:black_banner" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/beds.json b/src/main/resources/data/minecraft/tags/items/beds.json deleted file mode 100644 index 2e031f30..00000000 --- a/src/main/resources/data/minecraft/tags/items/beds.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:red_bed", - "minecraft:black_bed", - "minecraft:blue_bed", - "minecraft:brown_bed", - "minecraft:cyan_bed", - "minecraft:gray_bed", - "minecraft:green_bed", - "minecraft:light_blue_bed", - "minecraft:light_gray_bed", - "minecraft:lime_bed", - "minecraft:magenta_bed", - "minecraft:orange_bed", - "minecraft:pink_bed", - "minecraft:purple_bed", - "minecraft:white_bed", - "minecraft:yellow_bed" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/birch_logs.json b/src/main/resources/data/minecraft/tags/items/birch_logs.json deleted file mode 100644 index 7be61059..00000000 --- a/src/main/resources/data/minecraft/tags/items/birch_logs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:birch_log", - "minecraft:birch_wood", - "minecraft:stripped_birch_log", - "minecraft:stripped_birch_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/boats.json b/src/main/resources/data/minecraft/tags/items/boats.json deleted file mode 100644 index 03a21c61..00000000 --- a/src/main/resources/data/minecraft/tags/items/boats.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_boat", - "minecraft:spruce_boat", - "minecraft:birch_boat", - "minecraft:jungle_boat", - "minecraft:acacia_boat", - "minecraft:dark_oak_boat" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/buttons.json b/src/main/resources/data/minecraft/tags/items/buttons.json index 5682e9c3..72d4d06f 100644 --- a/src/main/resources/data/minecraft/tags/items/buttons.json +++ b/src/main/resources/data/minecraft/tags/items/buttons.json @@ -4,17 +4,31 @@ "strata:aa_button", "strata:adakite_button", "strata:amphibolite_button", - "strata:argillite_button", - "strata:basalt_button", - "strata:chalk_button", "strata:eclogite_button", "strata:gabbro_button", "strata:gneiss_button", - "strata:jaspillite_button", "strata:marble_button", - "strata:limestone_button", "strata:pahoehoe_button", "strata:schist_button", + "strata:dacite_button", + "strata:dunite_button", + "strata:komatiite_button", + "strata:pegmatite_button", + "strata:phonolite_button", + "strata:cataclasite_button", + "strata:migmatite_button", + "strata:slate_button", + "strata:soapstone_button", + "strata:phyllite_button", + "strata:argillite_button", + "strata:arkose_button", + "strata:breccia_button", + "strata:chalk_button", + "strata:claystone_button", + "strata:dolomite_button", + "strata:jaspillite_button", + "strata:limestone_button", + "strata:mudstone_button", "strata:shale_button" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/carpets.json b/src/main/resources/data/minecraft/tags/items/carpets.json deleted file mode 100644 index 9b28b1fd..00000000 --- a/src/main/resources/data/minecraft/tags/items/carpets.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:white_carpet", - "minecraft:orange_carpet", - "minecraft:magenta_carpet", - "minecraft:light_blue_carpet", - "minecraft:yellow_carpet", - "minecraft:lime_carpet", - "minecraft:pink_carpet", - "minecraft:gray_carpet", - "minecraft:light_gray_carpet", - "minecraft:cyan_carpet", - "minecraft:purple_carpet", - "minecraft:blue_carpet", - "minecraft:brown_carpet", - "minecraft:green_carpet", - "minecraft:red_carpet", - "minecraft:black_carpet" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/coals.json b/src/main/resources/data/minecraft/tags/items/coals.json deleted file mode 100644 index e809f0b5..00000000 --- a/src/main/resources/data/minecraft/tags/items/coals.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:coal", - "minecraft:charcoal" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/dark_oak_logs.json b/src/main/resources/data/minecraft/tags/items/dark_oak_logs.json deleted file mode 100644 index e1e3e165..00000000 --- a/src/main/resources/data/minecraft/tags/items/dark_oak_logs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:dark_oak_log", - "minecraft:dark_oak_wood", - "minecraft:stripped_dark_oak_log", - "minecraft:stripped_dark_oak_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/doors.json b/src/main/resources/data/minecraft/tags/items/doors.json deleted file mode 100644 index 0f9fe980..00000000 --- a/src/main/resources/data/minecraft/tags/items/doors.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "#minecraft:wooden_doors", - "minecraft:iron_door" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/fences.json b/src/main/resources/data/minecraft/tags/items/fences.json deleted file mode 100644 index 0ef08473..00000000 --- a/src/main/resources/data/minecraft/tags/items/fences.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "#minecraft:wooden_fences", - "minecraft:nether_brick_fence" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/fishes.json b/src/main/resources/data/minecraft/tags/items/fishes.json deleted file mode 100644 index 4582fb0a..00000000 --- a/src/main/resources/data/minecraft/tags/items/fishes.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:cod", - "minecraft:cooked_cod", - "minecraft:salmon", - "minecraft:cooked_salmon", - "minecraft:pufferfish", - "minecraft:tropical_fish" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/jungle_logs.json b/src/main/resources/data/minecraft/tags/items/jungle_logs.json deleted file mode 100644 index ec51d638..00000000 --- a/src/main/resources/data/minecraft/tags/items/jungle_logs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:jungle_log", - "minecraft:jungle_wood", - "minecraft:stripped_jungle_log", - "minecraft:stripped_jungle_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/leaves.json b/src/main/resources/data/minecraft/tags/items/leaves.json deleted file mode 100644 index 036ec387..00000000 --- a/src/main/resources/data/minecraft/tags/items/leaves.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:jungle_leaves", - "minecraft:oak_leaves", - "minecraft:spruce_leaves", - "minecraft:dark_oak_leaves", - "minecraft:acacia_leaves", - "minecraft:birch_leaves" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/logs.json b/src/main/resources/data/minecraft/tags/items/logs.json deleted file mode 100644 index e5a8d0fc..00000000 --- a/src/main/resources/data/minecraft/tags/items/logs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "#minecraft:dark_oak_logs", - "#minecraft:oak_logs", - "#minecraft:acacia_logs", - "#minecraft:birch_logs", - "#minecraft:jungle_logs", - "#minecraft:spruce_logs" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/music_discs.json b/src/main/resources/data/minecraft/tags/items/music_discs.json deleted file mode 100644 index 2809edff..00000000 --- a/src/main/resources/data/minecraft/tags/items/music_discs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:music_disc_13", - "minecraft:music_disc_cat", - "minecraft:music_disc_blocks", - "minecraft:music_disc_chirp", - "minecraft:music_disc_far", - "minecraft:music_disc_mall", - "minecraft:music_disc_mellohi", - "minecraft:music_disc_stal", - "minecraft:music_disc_strad", - "minecraft:music_disc_ward", - "minecraft:music_disc_11", - "minecraft:music_disc_wait" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/oak_logs.json b/src/main/resources/data/minecraft/tags/items/oak_logs.json deleted file mode 100644 index 927086f6..00000000 --- a/src/main/resources/data/minecraft/tags/items/oak_logs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_log", - "minecraft:oak_wood", - "minecraft:stripped_oak_log", - "minecraft:stripped_oak_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/planks.json b/src/main/resources/data/minecraft/tags/items/planks.json deleted file mode 100644 index 72942d25..00000000 --- a/src/main/resources/data/minecraft/tags/items/planks.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_planks", - "minecraft:spruce_planks", - "minecraft:birch_planks", - "minecraft:jungle_planks", - "minecraft:acacia_planks", - "minecraft:dark_oak_planks" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/rails.json b/src/main/resources/data/minecraft/tags/items/rails.json deleted file mode 100644 index 036ac7fc..00000000 --- a/src/main/resources/data/minecraft/tags/items/rails.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:rail", - "minecraft:powered_rail", - "minecraft:detector_rail", - "minecraft:activator_rail" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/sand.json b/src/main/resources/data/minecraft/tags/items/sand.json deleted file mode 100644 index fa7a9c4a..00000000 --- a/src/main/resources/data/minecraft/tags/items/sand.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:sand", - "minecraft:red_sand" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/saplings.json b/src/main/resources/data/minecraft/tags/items/saplings.json deleted file mode 100644 index 04fe81f9..00000000 --- a/src/main/resources/data/minecraft/tags/items/saplings.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_sapling", - "minecraft:spruce_sapling", - "minecraft:birch_sapling", - "minecraft:jungle_sapling", - "minecraft:acacia_sapling", - "minecraft:dark_oak_sapling" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/signs.json b/src/main/resources/data/minecraft/tags/items/signs.json deleted file mode 100644 index aeee8038..00000000 --- a/src/main/resources/data/minecraft/tags/items/signs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_sign", - "minecraft:spruce_sign", - "minecraft:birch_sign", - "minecraft:acacia_sign", - "minecraft:jungle_sign", - "minecraft:dark_oak_sign" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/slabs.json b/src/main/resources/data/minecraft/tags/items/slabs.json index c23a4f6a..21c62a77 100644 --- a/src/main/resources/data/minecraft/tags/items/slabs.json +++ b/src/main/resources/data/minecraft/tags/items/slabs.json @@ -4,77 +4,176 @@ "strata:aa_slab", "strata:adakite_slab", "strata:amphibolite_slab", - "strata:argillite_slab", - "strata:basalt_slab", - "strata:chalk_slab", "strata:eclogite_slab", "strata:gabbro_slab", "strata:gneiss_slab", - "strata:jaspillite_slab", "strata:marble_slab", - "strata:limestone_slab", "strata:pahoehoe_slab", "strata:schist_slab", + "strata:dacite_slab", + "strata:dunite_slab", + "strata:komatiite_slab", + "strata:pegmatite_slab", + "strata:phonolite_slab", + "strata:cataclasite_slab", + "strata:migmatite_slab", + "strata:slate_slab", + "strata:soapstone_slab", + "strata:phyllite_slab", + "strata:argillite_slab", + "strata:arkose_slab", + "strata:breccia_slab", + "strata:chalk_slab", + "strata:claystone_slab", + "strata:dolomite_slab", + "strata:jaspillite_slab", + "strata:limestone_slab", + "strata:mudstone_slab", "strata:shale_slab", "strata:aa_cobblestone_slab", "strata:adakite_cobblestone_slab", "strata:amphibolite_cobblestone_slab", - "strata:argillite_cobblestone_slab", - "strata:basalt_cobblestone_slab", - "strata:chalk_cobblestone_slab", "strata:eclogite_cobblestone_slab", "strata:gabbro_cobblestone_slab", "strata:gneiss_cobblestone_slab", - "strata:jaspillite_cobblestone_slab", "strata:marble_cobblestone_slab", - "strata:limestone_cobblestone_slab", "strata:pahoehoe_cobblestone_slab", "strata:schist_cobblestone_slab", + "strata:dacite_cobblestone_slab", + "strata:dunite_cobblestone_slab", + "strata:komatiite_cobblestone_slab", + "strata:pegmatite_cobblestone_slab", + "strata:phonolite_cobblestone_slab", + "strata:cataclasite_cobblestone_slab", + "strata:migmatite_cobblestone_slab", + "strata:slate_cobblestone_slab", + "strata:soapstone_cobblestone_slab", + "strata:phyllite_cobblestone_slab", + "strata:argillite_cobblestone_slab", + "strata:arkose_cobblestone_slab", + "strata:breccia_cobblestone_slab", + "strata:chalk_cobblestone_slab", + "strata:claystone_cobblestone_slab", + "strata:dolomite_cobblestone_slab", + "strata:jaspillite_cobblestone_slab", + "strata:limestone_cobblestone_slab", + "strata:mudstone_cobblestone_slab", "strata:shale_cobblestone_slab", - "strata:mossy_aa_cobblestone_slab", - "strata:mossy_adakite_cobblestone_slab", - "strata:mossy_amphibolite_cobblestone_slab", - "strata:mossy_argillite_cobblestone_slab", - "strata:mossy_basalt_cobblestone_slab", - "strata:mossy_chalk_cobblestone_slab", - "strata:mossy_eclogite_cobblestone_slab", - "strata:mossy_gabbro_cobblestone_slab", - "strata:mossy_gneiss_cobblestone_slab", - "strata:mossy_jaspillite_cobblestone_slab", - "strata:mossy_marble_cobblestone_slab", - "strata:mossy_limestone_cobblestone_slab", - "strata:mossy_pahoehoe_cobblestone_slab", - "strata:mossy_schist_cobblestone_slab", - "strata:mossy_shale_cobblestone_slab", "strata:aa_brick_slab", "strata:adakite_brick_slab", "strata:amphibolite_brick_slab", - "strata:argillite_brick_slab", - "strata:basalt_brick_slab", - "strata:chalk_brick_slab", "strata:eclogite_brick_slab", "strata:gabbro_brick_slab", "strata:gneiss_brick_slab", - "strata:jaspillite_brick_slab", "strata:marble_brick_slab", - "strata:limestone_brick_slab", "strata:pahoehoe_brick_slab", "strata:schist_brick_slab", + "strata:dacite_brick_slab", + "strata:dunite_brick_slab", + "strata:komatiite_brick_slab", + "strata:pegmatite_brick_slab", + "strata:phonolite_brick_slab", + "strata:cataclasite_brick_slab", + "strata:migmatite_brick_slab", + "strata:slate_brick_slab", + "strata:soapstone_brick_slab", + "strata:phyllite_brick_slab", + "strata:argillite_brick_slab", + "strata:arkose_brick_slab", + "strata:breccia_brick_slab", + "strata:chalk_brick_slab", + "strata:claystone_brick_slab", + "strata:dolomite_brick_slab", + "strata:jaspillite_brick_slab", + "strata:limestone_brick_slab", + "strata:mudstone_brick_slab", "strata:shale_brick_slab", + "strata:polished_aa_slab", + "strata:polished_adakite_slab", + "strata:polished_amphibolite_slab", + "strata:polished_eclogite_slab", + "strata:polished_gabbro_slab", + "strata:polished_gneiss_slab", + "strata:polished_marble_slab", + "strata:polished_pahoehoe_slab", + "strata:polished_schist_slab", + "strata:polished_dacite_slab", + "strata:polished_dunite_slab", + "strata:polished_komatiite_slab", + "strata:polished_pegmatite_slab", + "strata:polished_phonolite_slab", + "strata:polished_cataclasite_slab", + "strata:polished_migmatite_slab", + "strata:polished_slate_slab", + "strata:polished_soapstone_slab", + "strata:polished_phyllite_slab", + "strata:polished_argillite_slab", + "strata:polished_arkose_slab", + "strata:polished_breccia_slab", + "strata:polished_chalk_slab", + "strata:polished_claystone_slab", + "strata:polished_dolomite_slab", + "strata:polished_jaspillite_slab", + "strata:polished_limestone_slab", + "strata:polished_mudstone_slab", + "strata:polished_shale_slab", + "strata:mossy_aa_cobblestone_slab", + "strata:mossy_adakite_cobblestone_slab", + "strata:mossy_amphibolite_cobblestone_slab", + "strata:mossy_eclogite_cobblestone_slab", + "strata:mossy_gabbro_cobblestone_slab", + "strata:mossy_gneiss_cobblestone_slab", + "strata:mossy_marble_cobblestone_slab", + "strata:mossy_pahoehoe_cobblestone_slab", + "strata:mossy_schist_cobblestone_slab", + "strata:mossy_dacite_cobblestone_slab", + "strata:mossy_dunite_cobblestone_slab", + "strata:mossy_komatiite_cobblestone_slab", + "strata:mossy_pegmatite_cobblestone_slab", + "strata:mossy_phonolite_cobblestone_slab", + "strata:mossy_cataclasite_cobblestone_slab", + "strata:mossy_migmatite_cobblestone_slab", + "strata:mossy_slate_cobblestone_slab", + "strata:mossy_soapstone_cobblestone_slab", + "strata:mossy_phyllite_cobblestone_slab", + "strata:mossy_argillite_cobblestone_slab", + "strata:mossy_arkose_cobblestone_slab", + "strata:mossy_breccia_cobblestone_slab", + "strata:mossy_chalk_cobblestone_slab", + "strata:mossy_claystone_cobblestone_slab", + "strata:mossy_dolomite_cobblestone_slab", + "strata:mossy_jaspillite_cobblestone_slab", + "strata:mossy_limestone_cobblestone_slab", + "strata:mossy_mudstone_cobblestone_slab", + "strata:mossy_shale_cobblestone_slab", "strata:mossy_aa_brick_slab", "strata:mossy_adakite_brick_slab", "strata:mossy_amphibolite_brick_slab", - "strata:mossy_argillite_brick_slab", - "strata:mossy_basalt_brick_slab", - "strata:mossy_chalk_brick_slab", "strata:mossy_eclogite_brick_slab", "strata:mossy_gabbro_brick_slab", "strata:mossy_gneiss_brick_slab", - "strata:mossy_jaspillite_brick_slab", "strata:mossy_marble_brick_slab", - "strata:mossy_limestone_brick_slab", "strata:mossy_pahoehoe_brick_slab", "strata:mossy_schist_brick_slab", + "strata:mossy_dacite_brick_slab", + "strata:mossy_dunite_brick_slab", + "strata:mossy_komatiite_brick_slab", + "strata:mossy_pegmatite_brick_slab", + "strata:mossy_phonolite_brick_slab", + "strata:mossy_cataclasite_brick_slab", + "strata:mossy_migmatite_brick_slab", + "strata:mossy_slate_brick_slab", + "strata:mossy_soapstone_brick_slab", + "strata:mossy_phyllite_brick_slab", + "strata:mossy_argillite_brick_slab", + "strata:mossy_arkose_brick_slab", + "strata:mossy_breccia_brick_slab", + "strata:mossy_chalk_brick_slab", + "strata:mossy_claystone_brick_slab", + "strata:mossy_dolomite_brick_slab", + "strata:mossy_jaspillite_brick_slab", + "strata:mossy_limestone_brick_slab", + "strata:mossy_mudstone_brick_slab", "strata:mossy_shale_brick_slab" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/small_flowers.json b/src/main/resources/data/minecraft/tags/items/small_flowers.json deleted file mode 100644 index 395128a6..00000000 --- a/src/main/resources/data/minecraft/tags/items/small_flowers.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:dandelion", - "minecraft:poppy", - "minecraft:blue_orchid", - "minecraft:allium", - "minecraft:azure_bluet", - "minecraft:red_tulip", - "minecraft:orange_tulip", - "minecraft:white_tulip", - "minecraft:pink_tulip", - "minecraft:oxeye_daisy", - "minecraft:cornflower", - "minecraft:lily_of_the_valley", - "minecraft:wither_rose" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/spruce_logs.json b/src/main/resources/data/minecraft/tags/items/spruce_logs.json deleted file mode 100644 index 87b5caf6..00000000 --- a/src/main/resources/data/minecraft/tags/items/spruce_logs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:spruce_log", - "minecraft:spruce_wood", - "minecraft:stripped_spruce_log", - "minecraft:stripped_spruce_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/stairs.json b/src/main/resources/data/minecraft/tags/items/stairs.json index ae4f66f6..3e3a8898 100644 --- a/src/main/resources/data/minecraft/tags/items/stairs.json +++ b/src/main/resources/data/minecraft/tags/items/stairs.json @@ -4,77 +4,176 @@ "strata:aa_stairs", "strata:adakite_stairs", "strata:amphibolite_stairs", - "strata:argillite_stairs", - "strata:basalt_stairs", - "strata:chalk_stairs", "strata:eclogite_stairs", "strata:gabbro_stairs", "strata:gneiss_stairs", - "strata:jaspillite_stairs", "strata:marble_stairs", - "strata:limestone_stairs", "strata:pahoehoe_stairs", "strata:schist_stairs", + "strata:dacite_stairs", + "strata:dunite_stairs", + "strata:komatiite_stairs", + "strata:pegmatite_stairs", + "strata:phonolite_stairs", + "strata:cataclasite_stairs", + "strata:migmatite_stairs", + "strata:slate_stairs", + "strata:soapstone_stairs", + "strata:phyllite_stairs", + "strata:argillite_stairs", + "strata:arkose_stairs", + "strata:breccia_stairs", + "strata:chalk_stairs", + "strata:claystone_stairs", + "strata:dolomite_stairs", + "strata:jaspillite_stairs", + "strata:limestone_stairs", + "strata:mudstone_stairs", "strata:shale_stairs", "strata:aa_cobblestone_stairs", "strata:adakite_cobblestone_stairs", "strata:amphibolite_cobblestone_stairs", - "strata:argillite_cobblestone_stairs", - "strata:basalt_cobblestone_stairs", - "strata:chalk_cobblestone_stairs", "strata:eclogite_cobblestone_stairs", "strata:gabbro_cobblestone_stairs", "strata:gneiss_cobblestone_stairs", - "strata:jaspillite_cobblestone_stairs", "strata:marble_cobblestone_stairs", - "strata:limestone_cobblestone_stairs", "strata:pahoehoe_cobblestone_stairs", "strata:schist_cobblestone_stairs", + "strata:dacite_cobblestone_stairs", + "strata:dunite_cobblestone_stairs", + "strata:komatiite_cobblestone_stairs", + "strata:pegmatite_cobblestone_stairs", + "strata:phonolite_cobblestone_stairs", + "strata:cataclasite_cobblestone_stairs", + "strata:migmatite_cobblestone_stairs", + "strata:slate_cobblestone_stairs", + "strata:soapstone_cobblestone_stairs", + "strata:phyllite_cobblestone_stairs", + "strata:argillite_cobblestone_stairs", + "strata:arkose_cobblestone_stairs", + "strata:breccia_cobblestone_stairs", + "strata:chalk_cobblestone_stairs", + "strata:claystone_cobblestone_stairs", + "strata:dolomite_cobblestone_stairs", + "strata:jaspillite_cobblestone_stairs", + "strata:limestone_cobblestone_stairs", + "strata:mudstone_cobblestone_stairs", "strata:shale_cobblestone_stairs", - "strata:mossy_aa_cobblestone_stairs", - "strata:mossy_adakite_cobblestone_stairs", - "strata:mossy_amphibolite_cobblestone_stairs", - "strata:mossy_argillite_cobblestone_stairs", - "strata:mossy_basalt_cobblestone_stairs", - "strata:mossy_chalk_cobblestone_stairs", - "strata:mossy_eclogite_cobblestone_stairs", - "strata:mossy_gabbro_cobblestone_stairs", - "strata:mossy_gneiss_cobblestone_stairs", - "strata:mossy_jaspillite_cobblestone_stairs", - "strata:mossy_marble_cobblestone_stairs", - "strata:mossy_limestone_cobblestone_stairs", - "strata:mossy_pahoehoe_cobblestone_stairs", - "strata:mossy_schist_cobblestone_stairs", - "strata:mossy_shale_cobblestone_stairs", "strata:aa_brick_stairs", "strata:adakite_brick_stairs", "strata:amphibolite_brick_stairs", - "strata:argillite_brick_stairs", - "strata:basalt_brick_stairs", - "strata:chalk_brick_stairs", "strata:eclogite_brick_stairs", "strata:gabbro_brick_stairs", "strata:gneiss_brick_stairs", - "strata:jaspillite_brick_stairs", "strata:marble_brick_stairs", - "strata:limestone_brick_stairs", "strata:pahoehoe_brick_stairs", "strata:schist_brick_stairs", + "strata:dacite_brick_stairs", + "strata:dunite_brick_stairs", + "strata:komatiite_brick_stairs", + "strata:pegmatite_brick_stairs", + "strata:phonolite_brick_stairs", + "strata:cataclasite_brick_stairs", + "strata:migmatite_brick_stairs", + "strata:slate_brick_stairs", + "strata:soapstone_brick_stairs", + "strata:phyllite_brick_stairs", + "strata:argillite_brick_stairs", + "strata:arkose_brick_stairs", + "strata:breccia_brick_stairs", + "strata:chalk_brick_stairs", + "strata:claystone_brick_stairs", + "strata:dolomite_brick_stairs", + "strata:jaspillite_brick_stairs", + "strata:limestone_brick_stairs", + "strata:mudstone_brick_stairs", "strata:shale_brick_stairs", + "strata:polished_aa_stairs", + "strata:polished_adakite_stairs", + "strata:polished_amphibolite_stairs", + "strata:polished_eclogite_stairs", + "strata:polished_gabbro_stairs", + "strata:polished_gneiss_stairs", + "strata:polished_marble_stairs", + "strata:polished_pahoehoe_stairs", + "strata:polished_schist_stairs", + "strata:polished_dacite_stairs", + "strata:polished_dunite_stairs", + "strata:polished_komatiite_stairs", + "strata:polished_pegmatite_stairs", + "strata:polished_phonolite_stairs", + "strata:polished_cataclasite_stairs", + "strata:polished_migmatite_stairs", + "strata:polished_slate_stairs", + "strata:polished_soapstone_stairs", + "strata:polished_phyllite_stairs", + "strata:polished_argillite_stairs", + "strata:polished_arkose_stairs", + "strata:polished_breccia_stairs", + "strata:polished_chalk_stairs", + "strata:polished_claystone_stairs", + "strata:polished_dolomite_stairs", + "strata:polished_jaspillite_stairs", + "strata:polished_limestone_stairs", + "strata:polished_mudstone_stairs", + "strata:polished_shale_stairs", + "strata:mossy_aa_cobblestone_stairs", + "strata:mossy_adakite_cobblestone_stairs", + "strata:mossy_amphibolite_cobblestone_stairs", + "strata:mossy_eclogite_cobblestone_stairs", + "strata:mossy_gabbro_cobblestone_stairs", + "strata:mossy_gneiss_cobblestone_stairs", + "strata:mossy_marble_cobblestone_stairs", + "strata:mossy_pahoehoe_cobblestone_stairs", + "strata:mossy_schist_cobblestone_stairs", + "strata:mossy_dacite_cobblestone_stairs", + "strata:mossy_dunite_cobblestone_stairs", + "strata:mossy_komatiite_cobblestone_stairs", + "strata:mossy_pegmatite_cobblestone_stairs", + "strata:mossy_phonolite_cobblestone_stairs", + "strata:mossy_cataclasite_cobblestone_stairs", + "strata:mossy_migmatite_cobblestone_stairs", + "strata:mossy_slate_cobblestone_stairs", + "strata:mossy_soapstone_cobblestone_stairs", + "strata:mossy_phyllite_cobblestone_stairs", + "strata:mossy_argillite_cobblestone_stairs", + "strata:mossy_arkose_cobblestone_stairs", + "strata:mossy_breccia_cobblestone_stairs", + "strata:mossy_chalk_cobblestone_stairs", + "strata:mossy_claystone_cobblestone_stairs", + "strata:mossy_dolomite_cobblestone_stairs", + "strata:mossy_jaspillite_cobblestone_stairs", + "strata:mossy_limestone_cobblestone_stairs", + "strata:mossy_mudstone_cobblestone_stairs", + "strata:mossy_shale_cobblestone_stairs", "strata:mossy_aa_brick_stairs", "strata:mossy_adakite_brick_stairs", "strata:mossy_amphibolite_brick_stairs", - "strata:mossy_argillite_brick_stairs", - "strata:mossy_basalt_brick_stairs", - "strata:mossy_chalk_brick_stairs", "strata:mossy_eclogite_brick_stairs", "strata:mossy_gabbro_brick_stairs", "strata:mossy_gneiss_brick_stairs", - "strata:mossy_jaspillite_brick_stairs", "strata:mossy_marble_brick_stairs", - "strata:mossy_limestone_brick_stairs", "strata:mossy_pahoehoe_brick_stairs", "strata:mossy_schist_brick_stairs", + "strata:mossy_dacite_brick_stairs", + "strata:mossy_dunite_brick_stairs", + "strata:mossy_komatiite_brick_stairs", + "strata:mossy_pegmatite_brick_stairs", + "strata:mossy_phonolite_brick_stairs", + "strata:mossy_cataclasite_brick_stairs", + "strata:mossy_migmatite_brick_stairs", + "strata:mossy_slate_brick_stairs", + "strata:mossy_soapstone_brick_stairs", + "strata:mossy_phyllite_brick_stairs", + "strata:mossy_argillite_brick_stairs", + "strata:mossy_arkose_brick_stairs", + "strata:mossy_breccia_brick_stairs", + "strata:mossy_chalk_brick_stairs", + "strata:mossy_claystone_brick_stairs", + "strata:mossy_dolomite_brick_stairs", + "strata:mossy_jaspillite_brick_stairs", + "strata:mossy_limestone_brick_stairs", + "strata:mossy_mudstone_brick_stairs", "strata:mossy_shale_brick_stairs" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/stone_bricks.json b/src/main/resources/data/minecraft/tags/items/stone_bricks.json deleted file mode 100644 index 7cec36c5..00000000 --- a/src/main/resources/data/minecraft/tags/items/stone_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:stone_bricks", - "minecraft:mossy_stone_bricks", - "minecraft:cracked_stone_bricks", - "minecraft:chiseled_stone_bricks" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/trapdoors.json b/src/main/resources/data/minecraft/tags/items/trapdoors.json deleted file mode 100644 index d9625857..00000000 --- a/src/main/resources/data/minecraft/tags/items/trapdoors.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "#minecraft:wooden_trapdoors", - "minecraft:iron_trapdoor" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/walls.json b/src/main/resources/data/minecraft/tags/items/walls.json index 4fdcf985..02487834 100644 --- a/src/main/resources/data/minecraft/tags/items/walls.json +++ b/src/main/resources/data/minecraft/tags/items/walls.json @@ -4,77 +4,147 @@ "strata:aa_wall", "strata:adakite_wall", "strata:amphibolite_wall", - "strata:argillite_wall", - "strata:basalt_wall", - "strata:chalk_wall", "strata:eclogite_wall", "strata:gabbro_wall", "strata:gneiss_wall", - "strata:jaspillite_wall", "strata:marble_wall", - "strata:limestone_wall", "strata:pahoehoe_wall", "strata:schist_wall", + "strata:dacite_wall", + "strata:dunite_wall", + "strata:komatiite_wall", + "strata:pegmatite_wall", + "strata:phonolite_wall", + "strata:cataclasite_wall", + "strata:migmatite_wall", + "strata:slate_wall", + "strata:soapstone_wall", + "strata:phyllite_wall", + "strata:argillite_wall", + "strata:arkose_wall", + "strata:breccia_wall", + "strata:chalk_wall", + "strata:claystone_wall", + "strata:dolomite_wall", + "strata:jaspillite_wall", + "strata:limestone_wall", + "strata:mudstone_wall", "strata:shale_wall", "strata:aa_cobblestone_wall", "strata:adakite_cobblestone_wall", "strata:amphibolite_cobblestone_wall", - "strata:argillite_cobblestone_wall", - "strata:basalt_cobblestone_wall", - "strata:chalk_cobblestone_wall", "strata:eclogite_cobblestone_wall", "strata:gabbro_cobblestone_wall", "strata:gneiss_cobblestone_wall", - "strata:jaspillite_cobblestone_wall", "strata:marble_cobblestone_wall", - "strata:limestone_cobblestone_wall", "strata:pahoehoe_cobblestone_wall", "strata:schist_cobblestone_wall", + "strata:dacite_cobblestone_wall", + "strata:dunite_cobblestone_wall", + "strata:komatiite_cobblestone_wall", + "strata:pegmatite_cobblestone_wall", + "strata:phonolite_cobblestone_wall", + "strata:cataclasite_cobblestone_wall", + "strata:migmatite_cobblestone_wall", + "strata:slate_cobblestone_wall", + "strata:soapstone_cobblestone_wall", + "strata:phyllite_cobblestone_wall", + "strata:argillite_cobblestone_wall", + "strata:arkose_cobblestone_wall", + "strata:breccia_cobblestone_wall", + "strata:chalk_cobblestone_wall", + "strata:claystone_cobblestone_wall", + "strata:dolomite_cobblestone_wall", + "strata:jaspillite_cobblestone_wall", + "strata:limestone_cobblestone_wall", + "strata:mudstone_cobblestone_wall", "strata:shale_cobblestone_wall", - "strata:mossy_aa_cobblestone_wall", - "strata:mossy_adakite_cobblestone_wall", - "strata:mossy_amphibolite_cobblestone_wall", - "strata:mossy_argillite_cobblestone_wall", - "strata:mossy_basalt_cobblestone_wall", - "strata:mossy_chalk_cobblestone_wall", - "strata:mossy_eclogite_cobblestone_wall", - "strata:mossy_gabbro_cobblestone_wall", - "strata:mossy_gneiss_cobblestone_wall", - "strata:mossy_jaspillite_cobblestone_wall", - "strata:mossy_marble_cobblestone_wall", - "strata:mossy_limestone_cobblestone_wall", - "strata:mossy_pahoehoe_cobblestone_wall", - "strata:mossy_schist_cobblestone_wall", - "strata:mossy_shale_cobblestone_wall", "strata:aa_brick_wall", "strata:adakite_brick_wall", "strata:amphibolite_brick_wall", - "strata:argillite_brick_wall", - "strata:basalt_brick_wall", - "strata:chalk_brick_wall", "strata:eclogite_brick_wall", "strata:gabbro_brick_wall", "strata:gneiss_brick_wall", - "strata:jaspillite_brick_wall", "strata:marble_brick_wall", - "strata:limestone_brick_wall", "strata:pahoehoe_brick_wall", "strata:schist_brick_wall", + "strata:dacite_brick_wall", + "strata:dunite_brick_wall", + "strata:komatiite_brick_wall", + "strata:pegmatite_brick_wall", + "strata:phonolite_brick_wall", + "strata:cataclasite_brick_wall", + "strata:migmatite_brick_wall", + "strata:slate_brick_wall", + "strata:soapstone_brick_wall", + "strata:phyllite_brick_wall", + "strata:argillite_brick_wall", + "strata:arkose_brick_wall", + "strata:breccia_brick_wall", + "strata:chalk_brick_wall", + "strata:claystone_brick_wall", + "strata:dolomite_brick_wall", + "strata:jaspillite_brick_wall", + "strata:limestone_brick_wall", + "strata:mudstone_brick_wall", "strata:shale_brick_wall", + "strata:mossy_aa_cobblestone_wall", + "strata:mossy_adakite_cobblestone_wall", + "strata:mossy_amphibolite_cobblestone_wall", + "strata:mossy_eclogite_cobblestone_wall", + "strata:mossy_gabbro_cobblestone_wall", + "strata:mossy_gneiss_cobblestone_wall", + "strata:mossy_marble_cobblestone_wall", + "strata:mossy_pahoehoe_cobblestone_wall", + "strata:mossy_schist_cobblestone_wall", + "strata:mossy_dacite_cobblestone_wall", + "strata:mossy_dunite_cobblestone_wall", + "strata:mossy_komatiite_cobblestone_wall", + "strata:mossy_pegmatite_cobblestone_wall", + "strata:mossy_phonolite_cobblestone_wall", + "strata:mossy_cataclasite_cobblestone_wall", + "strata:mossy_migmatite_cobblestone_wall", + "strata:mossy_slate_cobblestone_wall", + "strata:mossy_soapstone_cobblestone_wall", + "strata:mossy_phyllite_cobblestone_wall", + "strata:mossy_argillite_cobblestone_wall", + "strata:mossy_arkose_cobblestone_wall", + "strata:mossy_breccia_cobblestone_wall", + "strata:mossy_chalk_cobblestone_wall", + "strata:mossy_claystone_cobblestone_wall", + "strata:mossy_dolomite_cobblestone_wall", + "strata:mossy_jaspillite_cobblestone_wall", + "strata:mossy_limestone_cobblestone_wall", + "strata:mossy_mudstone_cobblestone_wall", + "strata:mossy_shale_cobblestone_wall", "strata:mossy_aa_brick_wall", "strata:mossy_adakite_brick_wall", "strata:mossy_amphibolite_brick_wall", - "strata:mossy_argillite_brick_wall", - "strata:mossy_basalt_brick_wall", - "strata:mossy_chalk_brick_wall", "strata:mossy_eclogite_brick_wall", "strata:mossy_gabbro_brick_wall", "strata:mossy_gneiss_brick_wall", - "strata:mossy_jaspillite_brick_wall", "strata:mossy_marble_brick_wall", - "strata:mossy_limestone_brick_wall", "strata:mossy_pahoehoe_brick_wall", "strata:mossy_schist_brick_wall", + "strata:mossy_dacite_brick_wall", + "strata:mossy_dunite_brick_wall", + "strata:mossy_komatiite_brick_wall", + "strata:mossy_pegmatite_brick_wall", + "strata:mossy_phonolite_brick_wall", + "strata:mossy_cataclasite_brick_wall", + "strata:mossy_migmatite_brick_wall", + "strata:mossy_slate_brick_wall", + "strata:mossy_soapstone_brick_wall", + "strata:mossy_phyllite_brick_wall", + "strata:mossy_argillite_brick_wall", + "strata:mossy_arkose_brick_wall", + "strata:mossy_breccia_brick_wall", + "strata:mossy_chalk_brick_wall", + "strata:mossy_claystone_brick_wall", + "strata:mossy_dolomite_brick_wall", + "strata:mossy_jaspillite_brick_wall", + "strata:mossy_limestone_brick_wall", + "strata:mossy_mudstone_brick_wall", "strata:mossy_shale_brick_wall" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/wooden_buttons.json b/src/main/resources/data/minecraft/tags/items/wooden_buttons.json deleted file mode 100644 index 5b09c902..00000000 --- a/src/main/resources/data/minecraft/tags/items/wooden_buttons.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_button", - "minecraft:spruce_button", - "minecraft:birch_button", - "minecraft:jungle_button", - "minecraft:acacia_button", - "minecraft:dark_oak_button" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/wooden_doors.json b/src/main/resources/data/minecraft/tags/items/wooden_doors.json deleted file mode 100644 index b43e2368..00000000 --- a/src/main/resources/data/minecraft/tags/items/wooden_doors.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_door", - "minecraft:spruce_door", - "minecraft:birch_door", - "minecraft:jungle_door", - "minecraft:acacia_door", - "minecraft:dark_oak_door" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/wooden_fences.json b/src/main/resources/data/minecraft/tags/items/wooden_fences.json deleted file mode 100644 index b6c73a9c..00000000 --- a/src/main/resources/data/minecraft/tags/items/wooden_fences.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_fence", - "minecraft:acacia_fence", - "minecraft:dark_oak_fence", - "minecraft:spruce_fence", - "minecraft:birch_fence", - "minecraft:jungle_fence" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/wooden_pressure_plates.json b/src/main/resources/data/minecraft/tags/items/wooden_pressure_plates.json deleted file mode 100644 index 72570f15..00000000 --- a/src/main/resources/data/minecraft/tags/items/wooden_pressure_plates.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_pressure_plate", - "minecraft:spruce_pressure_plate", - "minecraft:birch_pressure_plate", - "minecraft:jungle_pressure_plate", - "minecraft:acacia_pressure_plate", - "minecraft:dark_oak_pressure_plate" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/wooden_slabs.json b/src/main/resources/data/minecraft/tags/items/wooden_slabs.json deleted file mode 100644 index 62c848d6..00000000 --- a/src/main/resources/data/minecraft/tags/items/wooden_slabs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_slab", - "minecraft:spruce_slab", - "minecraft:birch_slab", - "minecraft:jungle_slab", - "minecraft:acacia_slab", - "minecraft:dark_oak_slab" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/wooden_stairs.json b/src/main/resources/data/minecraft/tags/items/wooden_stairs.json deleted file mode 100644 index c3af3bf4..00000000 --- a/src/main/resources/data/minecraft/tags/items/wooden_stairs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_stairs", - "minecraft:spruce_stairs", - "minecraft:birch_stairs", - "minecraft:jungle_stairs", - "minecraft:acacia_stairs", - "minecraft:dark_oak_stairs" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/wooden_trapdoors.json b/src/main/resources/data/minecraft/tags/items/wooden_trapdoors.json deleted file mode 100644 index bc8b2f4a..00000000 --- a/src/main/resources/data/minecraft/tags/items/wooden_trapdoors.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:acacia_trapdoor", - "minecraft:birch_trapdoor", - "minecraft:dark_oak_trapdoor", - "minecraft:jungle_trapdoor", - "minecraft:oak_trapdoor", - "minecraft:spruce_trapdoor" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/wool.json b/src/main/resources/data/minecraft/tags/items/wool.json deleted file mode 100644 index c39732fc..00000000 --- a/src/main/resources/data/minecraft/tags/items/wool.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:white_wool", - "minecraft:orange_wool", - "minecraft:magenta_wool", - "minecraft:light_blue_wool", - "minecraft:yellow_wool", - "minecraft:lime_wool", - "minecraft:pink_wool", - "minecraft:gray_wool", - "minecraft:light_gray_wool", - "minecraft:cyan_wool", - "minecraft:purple_wool", - "minecraft:blue_wool", - "minecraft:brown_wool", - "minecraft:green_wool", - "minecraft:red_wool", - "minecraft:black_wool" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/quark/tags/items/stone_tool_materials.json b/src/main/resources/data/quark/tags/items/stone_tool_materials.json index 3a6a82c0..130d2e07 100644 --- a/src/main/resources/data/quark/tags/items/stone_tool_materials.json +++ b/src/main/resources/data/quark/tags/items/stone_tool_materials.json @@ -1,7 +1,6 @@ { "replace": false, "values": [ - "strata:basalt", "strata:gabbro", "strata:amphibolite", "strata:gneiss", diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/basalt_bricks.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/basalt_bricks.json deleted file mode 100644 index 6f16df52..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/basalt_bricks.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/basalt_bricks" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_bricks" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} - diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/chiseled_basalt_bricks.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/chiseled_basalt_bricks.json deleted file mode 100644 index 1c26312d..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/chiseled_basalt_bricks.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/chiseled_basalt_bricks" - ] - }, - "criteria": { - "has_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_basalt_bricks" - } - } - }, - "requirements": [ - [ - "has_basalt_bricks", - "has_the_recipe" - ] - ] -} - diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/mossy_basalt_cobblestone.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/mossy_basalt_cobblestone.json deleted file mode 100644 index 095f91f5..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/mossy_basalt_cobblestone.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/mossy_basalt_cobblestone" - ] - }, - "criteria": { - "has_vine": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:vine" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_basalt_cobblestone" - } - } - }, - "requirements": [ - [ - "has_vine", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/polished_basalt.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/polished_basalt.json deleted file mode 100644 index e2ea2bbc..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/polished_basalt.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/polished_basalt" - ] - }, - "criteria": { - "has_polished_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_basalt" - } - } - }, - "requirements": [ - [ - "has_polished_basalt", - "has_the_recipe" - ] - ] -} - diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/basalt_brick_slab.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/basalt_brick_slab.json deleted file mode 100644 index 53871b29..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/basalt_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/basalt_brick_slab" - ] - }, - "criteria": { - "has_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_brick_slab" - } - } - }, - "requirements": [ - [ - "has_basalt_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/basalt_cobblestone_slab.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/basalt_cobblestone_slab.json deleted file mode 100644 index c5ed5bfc..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/basalt_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/basalt_cobblestone_slab" - ] - }, - "criteria": { - "has_basalt_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_cobblestone_slab" - } - } - }, - "requirements": [ - [ - "has_basalt_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/basalt_slab.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/basalt_slab.json deleted file mode 100644 index b9c5959f..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/basalt_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/basalt_slab" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_slab" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_basalt_brick_slab.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_basalt_brick_slab.json deleted file mode 100644 index 8817cf67..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_basalt_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/mossy_basalt_brick_slab" - ] - }, - "criteria": { - "has_mossy_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_basalt_brick_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_basalt_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_basalt_cobblestone_slab.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_basalt_cobblestone_slab.json deleted file mode 100644 index 51b1680d..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_basalt_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/mossy_basalt_cobblestone_slab" - ] - }, - "criteria": { - "has_mossy_basalt_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_basalt_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_basalt_cobblestone_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_basalt_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/polished_basalt_slab.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/polished_basalt_slab.json deleted file mode 100644 index 2a220918..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/polished_basalt_slab.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/polished_basalt_slab" - ] - }, - "criteria": { - "has_polished_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_basalt_slab" - } - } - }, - "requirements": [ - [ - "has_polished_basalt", - "has_the_recipe" - ] - ] -} - diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/basalt_brick_stairs.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/basalt_brick_stairs.json deleted file mode 100644 index 8178f1f2..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/basalt_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/basalt_brick_stairs" - ] - }, - "criteria": { - "has_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_basalt_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/basalt_cobblestone_stairs.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/basalt_cobblestone_stairs.json deleted file mode 100644 index f4b1ecca..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/basalt_cobblestone_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/basalt_cobblestone_stairs" - ] - }, - "criteria": { - "has_basalt_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_cobblestone_stairs" - } - } - }, - "requirements": [ - [ - "has_basalt_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/basalt_stairs.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/basalt_stairs.json deleted file mode 100644 index b462c6d4..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/basalt_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/basalt_stairs" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_stairs" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_basalt_brick_stairs.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_basalt_brick_stairs.json deleted file mode 100644 index 3cc3167f..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_basalt_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/mossy_basalt_brick_stairs" - ] - }, - "criteria": { - "has_mossy_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_basalt_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_basalt_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_basalt_cobblestone_stairs.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_basalt_cobblestone_stairs.json deleted file mode 100644 index 8214ec5e..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_basalt_cobblestone_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/mossy_basalt_cobblestone_stairs" - ] - }, - "criteria": { - "has_mossy_basalt_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_basalt_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_basalt_cobblestone_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_basalt_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/polished_basalt_stairs.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/polished_basalt_stairs.json deleted file mode 100644 index d1ea6219..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/polished_basalt_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/polished_basalt_stairs" - ] - }, - "criteria": { - "has_polished_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_basalt_stairs" - } - } - }, - "requirements": [ - [ - "has_polished_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/basalt_brick_wall.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/basalt_brick_wall.json deleted file mode 100644 index d825ae8a..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/basalt_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/basalt_brick_wall" - ] - }, - "criteria": { - "has_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_brick_wall" - } - } - }, - "requirements": [ - [ - "has_basalt_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/basalt_cobblestone_wall.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/basalt_cobblestone_wall.json deleted file mode 100644 index c189f002..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/basalt_cobblestone_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/basalt_cobblestone_wall" - ] - }, - "criteria": { - "has_basalt_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_cobblestone_wall" - } - } - }, - "requirements": [ - [ - "has_basalt_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/basalt_wall.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/basalt_wall.json deleted file mode 100644 index a47a044f..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/basalt_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/basalt_wall" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_wall" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_basalt_brick_wall.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_basalt_brick_wall.json deleted file mode 100644 index 96eae78d..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_basalt_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/mossy_basalt_brick_wall" - ] - }, - "criteria": { - "has_mossy_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_basalt_brick_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_basalt_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_basalt_cobblestone_wall.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_basalt_cobblestone_wall.json deleted file mode 100644 index b1d0952b..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_basalt_cobblestone_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/mossy_basalt_cobblestone_wall" - ] - }, - "criteria": { - "has_mossy_basalt_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_basalt_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_basalt_cobblestone_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_basalt_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/basalt.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/basalt.json deleted file mode 100644 index da6e41b5..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/basalt.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/smelting/block/basalt" - ] - }, - "criteria": { - "has_basalt_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt" - } - } - }, - "requirements": [ - [ - "has_basalt_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/cracked_basalt_bricks.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/cracked_basalt_bricks.json deleted file mode 100644 index 96ba759d..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/cracked_basalt_bricks.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/smelting/block/cracked_basalt_bricks" - ] - }, - "criteria": { - "has_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:cracked_basalt_bricks" - } - } - }, - "requirements": [ - [ - "has_basalt_bricks", - "has_the_recipe" - ] - ] -} - diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_bricks_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_bricks_stonecutting.json deleted file mode 100644 index 38dc6e69..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/basalt_bricks_bricks_stonecutting" - ] - }, - "criteria": { - "has_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_bricks_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_basalt_bricks", - "has_the_recipe" - ] - ] -} - diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_polished_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_polished_stonecutting.json deleted file mode 100644 index 3be81fb6..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_polished_stonecutting.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/basalt_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_basalt", - "has_the_recipe" - ] - ] -} - diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_stone_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_stone_stonecutting.json deleted file mode 100644 index 8eb0c8e6..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_stone_stonecutting.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/basalt_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} - diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_bricks_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_bricks_stonecutting.json deleted file mode 100644 index fdb0d25c..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_bricks_stonecutting" - ] - }, - "criteria": { - "has_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_basalt_bricks_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_basalt_bricks", - "has_the_recipe" - ] - ] -} - diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_polished_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_polished_stonecutting.json deleted file mode 100644 index fb8d5216..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_polished_stonecutting.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_basalt_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_basalt", - "has_the_recipe" - ] - ] -} - diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_stone_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_stone_stonecutting.json deleted file mode 100644 index 4f983bcc..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_stone_stonecutting.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_basalt_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} - diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/mossy_basalt_bricks_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/mossy_basalt_bricks_stonecutting.json deleted file mode 100644 index 51f00ee0..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/mossy_basalt_bricks_stonecutting.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/mossy_basalt_bricks_stonecutting" - ] - }, - "criteria": { - "has_mossy_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_basalt_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_basalt_bricks", - "has_the_recipe" - ] - ] -} - diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/polished_basalt_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/polished_basalt_stonecutting.json deleted file mode 100644 index 4863ff43..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/polished_basalt_stonecutting.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/polished_basalt_stonecutting" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_basalt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} - diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_bricks_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_bricks_stonecutting.json deleted file mode 100644 index 07ad0b6c..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_bricks_stonecutting" - ] - }, - "criteria": { - "has_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "basalt_brick_slab_bricks_stonecutting" - }, - "requirements": [ - [ - "has_basalt_bricks", - "has_the_recipe" - ] - ] - } - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_polished_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_polished_stonecutting.json deleted file mode 100644 index 80e7138a..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "basalt_brick_slab_polished_stonecutting" - }, - "requirements": [ - [ - "has_polished_basalt", - "has_the_recipe" - ] - ] - } - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_stone_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_stone_stonecutting.json deleted file mode 100644 index a2e9a7d0..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "basalt_brick_slab_stone_stonecutting" - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] - } - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_cobblestone_slab.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_cobblestone_slab.json deleted file mode 100644 index c36baf44..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/basalt_cobblestone_slab" - ] - }, - "criteria": { - "has_basalt_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_cobblestone_slab" - } - } - }, - "requirements": [ - [ - "has_basalt_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_slab_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_slab_stonecutting.json deleted file mode 100644 index 261b5d14..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/basalt_slab_stonecutting" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "basalt_slab_stonecutting" - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] - } - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_basalt_brick_slab_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_basalt_brick_slab_stonecutting.json deleted file mode 100644 index f852e083..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_basalt_brick_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/mossy_basalt_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_mossy_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mossy_basalt_brick_slab_stonecutting" - }, - "requirements": [ - [ - "has_mossy_basalt_bricks", - "has_the_recipe" - ] - ] - } - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_basalt_cobblestone_slab.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_basalt_cobblestone_slab.json deleted file mode 100644 index e90c8089..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_basalt_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/mossy_basalt_cobblestone_slab" - ] - }, - "criteria": { - "has_mossy_basalt_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_basalt_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_basalt_cobblestone_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_basalt_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_polished_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_polished_stonecutting.json deleted file mode 100644 index ea4ab4e0..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "polished_basalt_slab_polished_stonecutting" - }, - "requirements": [ - [ - "has_polished_basalt", - "has_the_recipe" - ] - ] - } - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_stone_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_stone_stonecutting.json deleted file mode 100644 index 4f229e47..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "polished_basalt_slab_stone_stonecutting" - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] - } - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_bricks_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index 0ff931a2..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_bricks_stonecutting" - ] - }, - "criteria": { - "has_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "basalt_brick_stairs_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_basalt_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_polished_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_polished_stonecutting.json deleted file mode 100644 index a944c654..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "basalt_brick_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_stone_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_stone_stonecutting.json deleted file mode 100644 index d8177759..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "basalt_brick_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_cobblestone_stairs.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_cobblestone_stairs.json deleted file mode 100644 index 54e9291c..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_cobblestone_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/basalt_cobblestone_stairs" - ] - }, - "criteria": { - "has_basalt_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_cobblestone_stairs" - } - } - }, - "requirements": [ - [ - "has_basalt_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_stairs_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_stairs_stonecutting.json deleted file mode 100644 index 5bc288e4..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/basalt_stairs_stonecutting" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "basalt_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_basalt_brick_stairs_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_basalt_brick_stairs_stonecutting.json deleted file mode 100644 index 7b8bf16e..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_basalt_brick_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/mossy_basalt_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_mossy_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mossy_basalt_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_basalt_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_basalt_cobblestone_stairs.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_basalt_cobblestone_stairs.json deleted file mode 100644 index 4de40a24..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_basalt_cobblestone_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/mossy_basalt_cobblestone_stairs" - ] - }, - "criteria": { - "has_mossy_basalt_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_basalt_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_basalt_cobblestone_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_basalt_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_polished_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_polished_stonecutting.json deleted file mode 100644 index 9352ca5e..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "polished_basalt_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_stone_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_stone_stonecutting.json deleted file mode 100644 index 1a633d4b..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "polished_basalt_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_bricks_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_bricks_stonecutting.json deleted file mode 100644 index 3524825a..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_bricks_stonecutting" - ] - }, - "criteria": { - "has_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "basalt_brick_wall_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_basalt_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_polished_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_polished_stonecutting.json deleted file mode 100644 index 0eeae04f..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "basalt_brick_wall_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_stone_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_stone_stonecutting.json deleted file mode 100644 index 2a856683..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_stone_stonecutting" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "basalt_brick_wall_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_cobblestone_wall.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_cobblestone_wall.json deleted file mode 100644 index 5662a2fc..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_cobblestone_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/basalt_cobblestone_wall" - ] - }, - "criteria": { - "has_basalt_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_cobblestone_wall" - } - } - }, - "requirements": [ - [ - "has_basalt_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_wall_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_wall_stonecutting.json deleted file mode 100644 index 0a3838ac..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/basalt_wall_stonecutting" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "basalt_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_basalt_brick_wall_stonecutting.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_basalt_brick_wall_stonecutting.json deleted file mode 100644 index 5645a50a..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_basalt_brick_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/mossy_basalt_brick_wall_stonecutting" - ] - }, - "criteria": { - "has_mossy_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mossy_basalt_brick_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_basalt_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_basalt_cobblestone_wall.json b/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_basalt_cobblestone_wall.json deleted file mode 100644 index f76b6b93..00000000 --- a/src/main/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_basalt_cobblestone_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/mossy_basalt_cobblestone_wall" - ] - }, - "criteria": { - "has_mossy_basalt_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_basalt_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_basalt_cobblestone_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_basalt_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/button/basalt_button.json b/src/main/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/button/basalt_button.json deleted file mode 100644 index 784d06ca..00000000 --- a/src/main/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/button/basalt_button.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/button/basalt_button" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_button" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/pressure_plate/basalt_pressure_plate.json b/src/main/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/pressure_plate/basalt_pressure_plate.json deleted file mode 100644 index 87357b7c..00000000 --- a/src/main/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/pressure_plate/basalt_pressure_plate.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/pressure_plate/basalt_pressure_plate" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_pressure_plate" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/basalt.json b/src/main/resources/data/strata/loot_tables/blocks/basalt.json deleted file mode 100644 index 088dcb5f..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/basalt.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:basalt" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:basalt_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/basalt_brick_slab.json b/src/main/resources/data/strata/loot_tables/blocks/basalt_brick_slab.json deleted file mode 100644 index 5dfce769..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/basalt_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:basalt_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:basalt_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/basalt_brick_stairs.json b/src/main/resources/data/strata/loot_tables/blocks/basalt_brick_stairs.json deleted file mode 100644 index 3f6b2d19..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/basalt_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:basalt_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:basalt_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/basalt_brick_wall.json b/src/main/resources/data/strata/loot_tables/blocks/basalt_brick_wall.json deleted file mode 100644 index dec65f5f..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/basalt_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:basalt_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:basalt_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/basalt_bricks.json b/src/main/resources/data/strata/loot_tables/blocks/basalt_bricks.json deleted file mode 100644 index 4dbd9baf..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/basalt_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:basalt_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:basalt_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/basalt_button.json b/src/main/resources/data/strata/loot_tables/blocks/basalt_button.json deleted file mode 100644 index 8cf3419e..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/basalt_button.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:basalt_button" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/basalt_cobblestone.json b/src/main/resources/data/strata/loot_tables/blocks/basalt_cobblestone.json deleted file mode 100644 index 7bafcfea..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/basalt_cobblestone.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:basalt_cobblestone" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:basalt_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/basalt_cobblestone_slab.json b/src/main/resources/data/strata/loot_tables/blocks/basalt_cobblestone_slab.json deleted file mode 100644 index 6947a999..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/basalt_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:basalt_cobblestone_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:basalt_cobblestone_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/basalt_cobblestone_stairs.json b/src/main/resources/data/strata/loot_tables/blocks/basalt_cobblestone_stairs.json deleted file mode 100644 index 6ebfc691..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/basalt_cobblestone_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:basalt_cobblestone_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:basalt_cobblestone_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/basalt_cobblestone_wall.json b/src/main/resources/data/strata/loot_tables/blocks/basalt_cobblestone_wall.json deleted file mode 100644 index e8df692b..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/basalt_cobblestone_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:basalt_cobblestone_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:basalt_cobblestone_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/basalt_pressure_plate.json b/src/main/resources/data/strata/loot_tables/blocks/basalt_pressure_plate.json deleted file mode 100644 index dfcbd30f..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/basalt_pressure_plate.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:basalt_pressure_plate" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/basalt_slab.json b/src/main/resources/data/strata/loot_tables/blocks/basalt_slab.json deleted file mode 100644 index 25920f01..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/basalt_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:basalt_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:basalt_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/basalt_stairs.json b/src/main/resources/data/strata/loot_tables/blocks/basalt_stairs.json deleted file mode 100644 index f96a5573..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/basalt_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:basalt_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:basalt_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/basalt_wall.json b/src/main/resources/data/strata/loot_tables/blocks/basalt_wall.json deleted file mode 100644 index bed31d7b..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/basalt_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:basalt_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:basalt_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/chiseled_basalt_bricks.json b/src/main/resources/data/strata/loot_tables/blocks/chiseled_basalt_bricks.json deleted file mode 100644 index ba5a9999..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/chiseled_basalt_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:chiseled_basalt_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:chiseled_basalt_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/cracked_basalt_bricks.json b/src/main/resources/data/strata/loot_tables/blocks/cracked_basalt_bricks.json deleted file mode 100644 index 0d257406..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/cracked_basalt_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:cracked_basalt_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:cracked_basalt_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/mossy_basalt_brick_slab.json b/src/main/resources/data/strata/loot_tables/blocks/mossy_basalt_brick_slab.json deleted file mode 100644 index af89aff6..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/mossy_basalt_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:mossy_basalt_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:mossy_basalt_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/mossy_basalt_brick_stairs.json b/src/main/resources/data/strata/loot_tables/blocks/mossy_basalt_brick_stairs.json deleted file mode 100644 index c1b037c3..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/mossy_basalt_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_basalt_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_basalt_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/mossy_basalt_brick_wall.json b/src/main/resources/data/strata/loot_tables/blocks/mossy_basalt_brick_wall.json deleted file mode 100644 index 80b89a7d..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/mossy_basalt_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_basalt_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_basalt_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/mossy_basalt_bricks.json b/src/main/resources/data/strata/loot_tables/blocks/mossy_basalt_bricks.json deleted file mode 100644 index 84eb86b7..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/mossy_basalt_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_basalt_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_basalt_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/mossy_basalt_cobblestone.json b/src/main/resources/data/strata/loot_tables/blocks/mossy_basalt_cobblestone.json deleted file mode 100644 index 0730f3de..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/mossy_basalt_cobblestone.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_basalt_cobblestone" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_basalt_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/mossy_basalt_cobblestone_slab.json b/src/main/resources/data/strata/loot_tables/blocks/mossy_basalt_cobblestone_slab.json deleted file mode 100644 index 26f3ffdd..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/mossy_basalt_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:mossy_basalt_cobblestone_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:mossy_basalt_cobblestone_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/mossy_basalt_cobblestone_stairs.json b/src/main/resources/data/strata/loot_tables/blocks/mossy_basalt_cobblestone_stairs.json deleted file mode 100644 index 89cd0587..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/mossy_basalt_cobblestone_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_basalt_cobblestone_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_basalt_cobblestone_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/mossy_basalt_cobblestone_wall.json b/src/main/resources/data/strata/loot_tables/blocks/mossy_basalt_cobblestone_wall.json deleted file mode 100644 index 43986bc8..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/mossy_basalt_cobblestone_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_basalt_cobblestone_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_basalt_cobblestone_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/polished_basalt.json b/src/main/resources/data/strata/loot_tables/blocks/polished_basalt.json deleted file mode 100644 index e9f12445..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/polished_basalt.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_basalt" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_basalt" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/polished_basalt_slab.json b/src/main/resources/data/strata/loot_tables/blocks/polished_basalt_slab.json deleted file mode 100644 index 8a793313..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/polished_basalt_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:polished_basalt_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:polished_basalt_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/loot_tables/blocks/polished_basalt_stairs.json b/src/main/resources/data/strata/loot_tables/blocks/polished_basalt_stairs.json deleted file mode 100644 index 28a40fa8..00000000 --- a/src/main/resources/data/strata/loot_tables/blocks/polished_basalt_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_basalt_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_basalt_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/basalt_bricks.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/basalt_bricks.json deleted file mode 100644 index 168a4d8b..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/basalt_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:polished_basalt" - } - }, - "result": { - "item": "strata:basalt_bricks", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/chiseled_basalt_bricks.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/chiseled_basalt_bricks.json deleted file mode 100644 index 470a0866..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/chiseled_basalt_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "# " - ], - "key": { - "#": { - "item": "strata:basalt_brick_slab" - } - }, - "result": { - "item": "strata:chiseled_basalt_bricks", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_basalt_bricks.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_basalt_bricks.json deleted file mode 100644 index fd8281df..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_basalt_bricks.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:basalt_bricks" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "strata:mossy_basalt_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_basalt_cobblestone.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_basalt_cobblestone.json deleted file mode 100644 index 9902f912..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_basalt_cobblestone.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:basalt_cobblestone" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "strata:mossy_basalt_cobblestone" - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/polished_basalt.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/polished_basalt.json deleted file mode 100644 index 6a900c77..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/polished_basalt.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:basalt" - } - }, - "result": { - "item": "strata:polished_basalt", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/basalt_brick_slab.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/basalt_brick_slab.json deleted file mode 100644 index 0c3da30a..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/basalt_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:basalt_bricks" - } - }, - "result": { - "item": "strata:basalt_brick_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/basalt_cobblestone_slab.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/basalt_cobblestone_slab.json deleted file mode 100644 index fad45ffd..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/basalt_cobblestone_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:basalt_cobblestone" - } - }, - "result": { - "item": "strata:basalt_cobblestone_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/basalt_slab.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/basalt_slab.json deleted file mode 100644 index e855e7bd..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/basalt_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:basalt" - } - }, - "result": { - "item": "strata:basalt_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_basalt_brick_slab.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_basalt_brick_slab.json deleted file mode 100644 index ccc883dc..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_basalt_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mossy_basalt_bricks" - } - }, - "result": { - "item": "strata:mossy_basalt_brick_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_basalt_cobblestone_slab.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_basalt_cobblestone_slab.json deleted file mode 100644 index 8c050631..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_basalt_cobblestone_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mossy_basalt_cobblestone" - } - }, - "result": { - "item": "strata:mossy_basalt_cobblestone_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/polished_basalt_slab.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/polished_basalt_slab.json deleted file mode 100644 index 9c5a064b..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/polished_basalt_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:polished_basalt" - } - }, - "result": { - "item": "strata:polished_basalt_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/basalt_brick_stairs.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/basalt_brick_stairs.json deleted file mode 100644 index babef99c..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/basalt_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:basalt_bricks" - } - }, - "result": { - "item": "strata:basalt_brick_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/basalt_cobblestone_stairs.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/basalt_cobblestone_stairs.json deleted file mode 100644 index 4972a706..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/basalt_cobblestone_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:basalt_cobblestone" - } - }, - "result": { - "item": "strata:basalt_cobblestone_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/basalt_stairs.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/basalt_stairs.json deleted file mode 100644 index 443be8e3..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/basalt_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:basalt" - } - }, - "result": { - "item": "strata:basalt_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_basalt_brick_stairs.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_basalt_brick_stairs.json deleted file mode 100644 index f388a3d0..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_basalt_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_basalt_bricks" - } - }, - "result": { - "item": "strata:mossy_basalt_brick_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_basalt_cobblestone_stairs.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_basalt_cobblestone_stairs.json deleted file mode 100644 index ab77d185..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_basalt_cobblestone_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_basalt_cobblestone" - } - }, - "result": { - "item": "strata:mossy_basalt_cobblestone_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/polished_basalt_stairs.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/polished_basalt_stairs.json deleted file mode 100644 index d77fd7fe..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/polished_basalt_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:polished_basalt" - } - }, - "result": { - "item": "strata:polished_basalt_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/basalt_brick_wall.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/basalt_brick_wall.json deleted file mode 100644 index 1b867ac1..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/basalt_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:basalt_bricks" - } - }, - "result": { - "item": "strata:basalt_brick_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/basalt_cobblestone_wall.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/basalt_cobblestone_wall.json deleted file mode 100644 index 15865903..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/basalt_cobblestone_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:basalt_cobblestone" - } - }, - "result": { - "item": "strata:basalt_cobblestone_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/basalt_wall.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/basalt_wall.json deleted file mode 100644 index dc10fb78..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/basalt_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:basalt" - } - }, - "result": { - "item": "strata:basalt_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_basalt_brick_wall.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_basalt_brick_wall.json deleted file mode 100644 index 26ce2356..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_basalt_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_basalt_bricks" - } - }, - "result": { - "item": "strata:mossy_basalt_brick_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_basalt_cobblestone_wall.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_basalt_cobblestone_wall.json deleted file mode 100644 index 19e63fd5..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_basalt_cobblestone_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_basalt_cobblestone" - } - }, - "result": { - "item": "strata:mossy_basalt_cobblestone_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/button/basalt_button.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/button/basalt_button.json deleted file mode 100644 index 63643306..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/button/basalt_button.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:basalt" - } - ], - "result": { - "item": "strata:basalt_button" - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/pressure_plate/basalt_pressure_plate.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/pressure_plate/basalt_pressure_plate.json deleted file mode 100644 index 35d97d01..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/pressure_plate/basalt_pressure_plate.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## " - ], - "key": { - "#": { - "item": "strata:basalt" - } - }, - "result": { - "item": "strata:basalt_pressure_plate" - } -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/basalt.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/basalt.json deleted file mode 100644 index 90585131..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/basalt.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:basalt_cobblestone" - }, - "result": "strata:basalt", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/cracked_basalt_bricks.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/cracked_basalt_bricks.json deleted file mode 100644 index d140af87..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/cracked_basalt_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:basalt_bricks" - }, - "result": "strata:cracked_basalt_bricks", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_polished_stonecutting.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_polished_stonecutting.json deleted file mode 100644 index 09088f85..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_basalt" - }, - "result": "strata:basalt_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_stone_stonecutting.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_stone_stonecutting.json deleted file mode 100644 index 1bde2dd2..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt" - }, - "result": "strata:basalt_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_bricks_stonecutting.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_bricks_stonecutting.json deleted file mode 100644 index 74c67c60..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt_bricks" - }, - "result": "strata:chiseled_basalt_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_polished_stonecutting.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_polished_stonecutting.json deleted file mode 100644 index a43d4372..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_basalt" - }, - "result": "strata:chiseled_basalt_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_stone_stonecutting.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_stone_stonecutting.json deleted file mode 100644 index eb906323..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt" - }, - "result": "strata:chiseled_basalt_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/polished_basalt_stonecutting.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/polished_basalt_stonecutting.json deleted file mode 100644 index d0923a8f..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/polished_basalt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt" - }, - "result": "strata:polished_basalt", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_bricks_stonecutting.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_bricks_stonecutting.json deleted file mode 100644 index 0532aa9d..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt_bricks" - }, - "result": "strata:basalt_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_polished_stonecutting.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_polished_stonecutting.json deleted file mode 100644 index 5a57cfde..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_basalt" - }, - "result": "strata:basalt_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_stone_stonecutting.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_stone_stonecutting.json deleted file mode 100644 index 2f8eba71..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt" - }, - "result": "strata:basalt_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_cobblestone_slab.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_cobblestone_slab.json deleted file mode 100644 index 58dfb890..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_cobblestone_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt_cobblestone" - }, - "result": "strata:basalt_cobblestone_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_slab_stonecutting.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_slab_stonecutting.json deleted file mode 100644 index b7be99ab..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt" - }, - "result": "strata:basalt_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_basalt_brick_slab_stonecutting.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_basalt_brick_slab_stonecutting.json deleted file mode 100644 index 76594f37..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_basalt_brick_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_basalt_bricks" - }, - "result": "strata:mossy_basalt_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_basalt_cobblestone_slab.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_basalt_cobblestone_slab.json deleted file mode 100644 index 43029dd7..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_basalt_cobblestone_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_basalt_cobblestone" - }, - "result": "strata:mossy_basalt_cobblestone_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_polished_stonecutting.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_polished_stonecutting.json deleted file mode 100644 index 35118a1f..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_basalt" - }, - "result": "strata:polished_basalt_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_stone_stonecutting.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_stone_stonecutting.json deleted file mode 100644 index ad357baf..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt" - }, - "result": "strata:polished_basalt_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_bricks_stonecutting.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index 4d53682c..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt_bricks" - }, - "result": "strata:basalt_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_polished_stonecutting.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_polished_stonecutting.json deleted file mode 100644 index f08980c3..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_basalt" - }, - "result": "strata:basalt_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_stone_stonecutting.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_stone_stonecutting.json deleted file mode 100644 index c54521be..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt" - }, - "result": "strata:basalt_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_cobblestone_stairs.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_cobblestone_stairs.json deleted file mode 100644 index 8adc3df6..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_cobblestone_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt_cobblestone" - }, - "result": "strata:basalt_cobblestone_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_stairs_stonecutting.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_stairs_stonecutting.json deleted file mode 100644 index 943b90bf..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt" - }, - "result": "strata:basalt_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_basalt_brick_stairs_stonecutting.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_basalt_brick_stairs_stonecutting.json deleted file mode 100644 index 26bc79ea..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_basalt_brick_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_basalt_bricks" - }, - "result": "strata:mossy_basalt_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_basalt_cobblestone_stairs.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_basalt_cobblestone_stairs.json deleted file mode 100644 index 7694b100..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_basalt_cobblestone_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_basalt_cobblestone" - }, - "result": "strata:mossy_basalt_cobblestone_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_polished_stonecutting.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_polished_stonecutting.json deleted file mode 100644 index 50e4b05e..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_basalt" - }, - "result": "strata:polished_basalt_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_stone_stonecutting.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_stone_stonecutting.json deleted file mode 100644 index 8131b0be..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt" - }, - "result": "strata:polished_basalt_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_bricks_stonecutting.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_bricks_stonecutting.json deleted file mode 100644 index 68a4119b..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt_bricks" - }, - "result": "strata:basalt_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_polished_stonecutting.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_polished_stonecutting.json deleted file mode 100644 index a7c13d34..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_basalt" - }, - "result": "strata:basalt_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_stone_stonecutting.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_stone_stonecutting.json deleted file mode 100644 index 02b5e224..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt" - }, - "result": "strata:basalt_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/basalt_cobblestone_wall.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/basalt_cobblestone_wall.json deleted file mode 100644 index ec29a8ce..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/basalt_cobblestone_wall.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt_cobblestone" - }, - "result": "strata:basalt_cobblestone_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/basalt_wall_stonecutting.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/basalt_wall_stonecutting.json deleted file mode 100644 index 78c30be4..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/basalt_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt" - }, - "result": "strata:basalt_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_basalt_brick_wall_stonecutting.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_basalt_brick_wall_stonecutting.json deleted file mode 100644 index 43080a26..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_basalt_brick_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_basalt_bricks" - }, - "result": "strata:mossy_basalt_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_basalt_cobblestone_wall.json b/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_basalt_cobblestone_wall.json deleted file mode 100644 index 464d46f2..00000000 --- a/src/main/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_basalt_cobblestone_wall.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_basalt_cobblestone" - }, - "result": "strata:mossy_basalt_cobblestone_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/pack.mcmeta b/src/main/resources/pack.mcmeta index 6df3a045..740665d6 100644 --- a/src/main/resources/pack.mcmeta +++ b/src/main/resources/pack.mcmeta @@ -1,7 +1,6 @@ { "pack": { "description": "Strata Resources", - "pack_format": 5, - "_comment": "A pack_format of 5 requires json lang files and some texture changes from 1.15. Note: we require v5 pack meta for all mods." + "pack_format": 6, } } diff --git a/src/test/java/com/quizer9o8/strata/Main.java b/src/test/java/com/quizer9o8/strata/Main.java deleted file mode 100644 index 96b94dc9..00000000 --- a/src/test/java/com/quizer9o8/strata/Main.java +++ /dev/null @@ -1,145 +0,0 @@ -package com.quizer9o8.strata; - -import com.quizer9o8.strata.list.BlockList; -import com.quizer9o8.strata.list.ItemList; -import com.quizer9o8.strata.world.gen.StrataGeneration; -import net.minecraft.item.ItemGroup; -import net.minecraft.item.ItemStack; -import net.minecraft.tags.BlockTags; -import net.minecraft.util.ResourceLocation; -import net.minecraftforge.eventbus.api.IEventBus; -import net.minecraftforge.eventbus.api.SubscribeEvent; -import net.minecraftforge.fml.common.Mod; -import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent; -import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent; -import net.minecraftforge.fml.event.server.FMLServerStartedEvent; -import net.minecraftforge.fml.event.server.FMLServerStartingEvent; -import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; - -// @Mod tells everything this is the main class. -@Mod(Strata.MOD_ID) -@Mod.EventBusSubscriber(modid = Strata.MOD_ID, bus = Mod.EventBusSubscriber.Bus.MOD) -public class Main -{ - //This line below makes it possible to call upon this class from other places. - public static Strata instance; - - //Universal variables. - public static final String MOD_ID = "strata"; - - //Creative Tab - //public static final ItemGroup DEBUG_TAB = new Strata.DebugItemGroup("debug"); - public static final ItemGroup IGNEOUS_TAB = new Strata.IgneousRocksItemGroup("igneous"); - public static final ItemGroup METAMORPHIC_TAB = new Strata.MetamorphicRocksItemGroup("metamorphic"); - public static final ItemGroup SEDIMENTARY_TAB = new Strata.SedimentaryRocksItemGroup("sedimentary"); - //public static final ItemGroup MISCELLANEOUS_TAB = new Strata.MiscellaneousRocksItemGroup("miscellaneous"); - - //Logger - public static final Logger LOGGER = LogManager.getLogger(); - - public Main() - { - instance = this; - - final IEventBus modEventBus = FMLJavaModLoadingContext.get().getModEventBus(); - - modEventBus.addListener(this::setup); - modEventBus.addListener(this::clientSetup); - - BlockList.BLOCKS.register(modEventBus); - ItemList.ITEMS.register(modEventBus); - } - - private void setup(final FMLCommonSetupEvent event) - { - StrataGeneration.generate(); - } - - private void clientSetup(final FMLClientSetupEvent event) - { - - } - - public void onServerStarting(FMLServerStartingEvent event) - { - - } - - //Should tell in the logs if the blocks are correctly being read into the tag or not for TerraForged - @SubscribeEvent - public static void started(FMLServerStartedEvent event) { - new BlockTags.Wrapper(new ResourceLocation("forge:wg_stone")).getAllElements().forEach(System.out::println); - } - - //Creative Tab Objects - - /* - //Debug Creative Tab - public static class DebugItemGroup extends ItemGroup - { - public DebugItemGroup(String name) { - super(name); - } - - @Override - public ItemStack createIcon(){ - return new ItemStack(ItemList.DEBUG_BLOCK.get()); - } - }*/ - - - //Igneous Rocks Creative Tab - public static class IgneousRocksItemGroup extends ItemGroup - { - public IgneousRocksItemGroup(String name) { - super(name); - } - - @Override - public ItemStack createIcon(){ - return new ItemStack(ItemList.GABBRO.get()); - } - } - - //Sedimentary Rocks Creative Tab - public static class SedimentaryRocksItemGroup extends ItemGroup - { - public SedimentaryRocksItemGroup(String name) { - super(name); - } - - @Override - public ItemStack createIcon(){ - return new ItemStack(ItemList.LIMESTONE.get()); - } - } - - //Metamorphic Rocks Creative Tab - public static class MetamorphicRocksItemGroup extends ItemGroup - { - public MetamorphicRocksItemGroup(String name) { - super(name); - } - - @Override - public ItemStack createIcon(){ - return new ItemStack(ItemList.GNEISS.get()); - } - } -/* - //Miscellaneous Rocks Creative Tab - public static class MiscellaneousRocksItemGroup extends ItemGroup - { - public MiscellaneousRocksItemGroup(String name) { - super(name); - } - - @Override - public ItemStack createIcon(){ - return new ItemStack(ItemList.[BLOCK_NAME].get()); - } - } -*/ -} diff --git a/src/test/java/com/quizer9o8/strata/config/ConfigHandler.java b/src/test/java/com/quizer9o8/strata/config/ConfigHandler.java deleted file mode 100644 index 8eb3ccb5..00000000 --- a/src/test/java/com/quizer9o8/strata/config/ConfigHandler.java +++ /dev/null @@ -1,221 +0,0 @@ -package com.quizer9o8.strata.config; - -import net.minecraftforge.common.ForgeConfigSpec; -import org.apache.commons.lang3.tuple.Pair; - -public final class ConfigHandler { - - public static class Client { - public final ForgeConfigSpec.BooleanValue useShaders; - public final ForgeConfigSpec.BooleanValue lexiconRotatingItems; - public final ForgeConfigSpec.BooleanValue lexiconJustifiedText; - public final ForgeConfigSpec.BooleanValue subtlePowerSystem; - public final ForgeConfigSpec.BooleanValue staticWandBeam; - public final ForgeConfigSpec.BooleanValue boundBlockWireframe; - public final ForgeConfigSpec.BooleanValue lexicon3dModel; - public final ForgeConfigSpec.DoubleValue flowerParticleFrequency; - public final ForgeConfigSpec.BooleanValue elfPortalParticlesEnabled; - public final ForgeConfigSpec.BooleanValue renderAccessories; - public final ForgeConfigSpec.BooleanValue enableSeasonalFeatures; - public final ForgeConfigSpec.BooleanValue enableArmorModels; - public final ForgeConfigSpec.BooleanValue enableFancySkybox; - public final ForgeConfigSpec.BooleanValue enableFancySkyboxInNormalWorlds; - - public final ForgeConfigSpec.IntValue manaBarHeight; - public final ForgeConfigSpec.IntValue glSecondaryTextureUnit; - - public final ForgeConfigSpec.BooleanValue staticFloaters; - public final ForgeConfigSpec.BooleanValue debugInfo; - public final ForgeConfigSpec.BooleanValue matrixMode; - public final ForgeConfigSpec.BooleanValue referencesEnabled; - public final ForgeConfigSpec.BooleanValue splashesEnabled; - - public Client(ForgeConfigSpec.Builder builder) { - useShaders = builder - .comment("Set this to false to disable the use of shaders for some of the mod's renders.") - .define("shaders.enabled", true); - lexiconRotatingItems = builder - .comment("Set this to false to disable the rotating items in the petal and rune entries in the Lexica Botania.") - .define("lexicon.rotating_items", true); - lexiconJustifiedText = builder - .comment("Set this to true to enable justified text in the Lexica Botania's text pages.") - .define("lexicon.justified_text", false); - subtlePowerSystem = builder - .comment("Set this to true to set the power system's particles to be a lot more subtle. Good for low-end systems, if the particles are causing lag.") - .define("subtile_power_system", false); - staticWandBeam = builder - .comment("Set this to true to use a static wand beam that shows every single position of the burst, similar to the way it used to work on old Botania versions. Warning: Disabled by default because it may be laggy.") - .define("static_wand_beam", false); - boundBlockWireframe = builder - .comment("Set this to false to disable the wireframe when looking a block bound to something (spreaders, flowers, etc).") - .define("bound_block_wireframe", true); - lexicon3dModel = builder - .comment("Set this to false to disable the animated 3D render for the Lexica Botania.") - .define("lexicon.render_3d", true); - flowerParticleFrequency = builder - .comment("The frequency in which particles spawn from normal (worldgen) mystical flowers") - .defineInRange("particles.flower_frequency", 0.75, Double.MIN_VALUE, Double.MAX_VALUE); - elfPortalParticlesEnabled = builder - .comment("Set this to false to disable the particles in the elven portal.") - .define("particles.elf_portal", true); - renderAccessories = builder - .comment("Set this to false to disable rendering of baubles in the player.") - .define("render_baubles", true); - enableSeasonalFeatures = builder - .comment("Set this to false to disable seasonal features, such as halloween and christmas.") - .define("seasonal_features", true); - enableArmorModels = builder - .comment("Set this to false to disable custom armor models") - .define("armor_models", true); - enableFancySkybox = builder - .comment("Set this to false to disable the fancy skybox in Garden of Glass") - .define("fancy_skybox.enabled", true); - enableFancySkyboxInNormalWorlds = builder - .comment("Set this to true to enable the fancy skybox in non Garden of Glass worlds. (Does not require Garden of Glass loaded to use, needs 'fancy_skybox.enabled' to be true as well)") - .define("fancy_skybox.normal_worlds", false); - manaBarHeight = builder - .comment("The height of the mana display bar in above the XP bar. You can change this if you have a mod that changes where the XP bar is.") - .defineInRange("hud.mana_bar.height", 29, 0, Integer.MAX_VALUE); - glSecondaryTextureUnit = builder - .comment("The GL Texture Unit to use for the secondary sampler passed in to the Lexica Botania's category button shader. DO NOT TOUCH THIS IF YOU DON'T KNOW WHAT YOU'RE DOING") - .defineInRange("shaders.secondary_unit", 7, 0, Integer.MAX_VALUE); - staticFloaters = builder - .comment("Set this to true if you use lots of floating flowers and are experiencing rendering lag. Will disable the floating flowers' animations and render them statically for a major performance boost. Hit F3+A in-world after toggling this.") - .define("static_floaters", false); - debugInfo = builder - .comment("Set to false to disable Botania's messages in the F3 debug screen") - .define("debug_info", true); - matrixMode = builder - .comment("Set this to true if you are the chosen one. For lovers of glitch art and just general mad people.") - .define("matrix_mode", false); - referencesEnabled = builder - .comment("Set this to false to disable the references in the flower tooltips. (You monster D:)") - .define("references", true); - splashesEnabled = builder - .comment("Set this to false to disable Botania's splashes in the main menu.") - .define("splashes", true); - } - } - - public static final Client CLIENT; - public static final ForgeConfigSpec CLIENT_SPEC; - static { - final Pair specPair = new ForgeConfigSpec.Builder().configure(Client::new); - CLIENT_SPEC = specPair.getRight(); - CLIENT = specPair.getLeft(); - } - - public static class Common { - public final ForgeConfigSpec.BooleanValue blockBreakParticles; - public final ForgeConfigSpec.BooleanValue blockBreakParticlesTool; - public final ForgeConfigSpec.BooleanValue chargingAnimationEnabled; - public final ForgeConfigSpec.BooleanValue silentSpreaders; - public final ForgeConfigSpec.IntValue spreaderTraceTime; - public final ForgeConfigSpec.BooleanValue flowerForceCheck; - public final ForgeConfigSpec.BooleanValue enderPickpocketEnabled; - - public final ForgeConfigSpec.BooleanValue fallenKanadeEnabled; - public final ForgeConfigSpec.BooleanValue enchanterEnabled; - public final ForgeConfigSpec.BooleanValue fluxfieldEnabled; - public final ForgeConfigSpec.BooleanValue relicsEnabled; - public final ForgeConfigSpec.BooleanValue ringOfOdinFireResist; - public final ForgeConfigSpec.BooleanValue invertMagnetRing; - public final ForgeConfigSpec.BooleanValue enableThaumcraftStablizers; - public final ForgeConfigSpec.BooleanValue enableThaumcraftAspects; - - public final ForgeConfigSpec.IntValue harvestLevelWeight; - public final ForgeConfigSpec.IntValue harvestLevelBore; - - public final ForgeConfigSpec.IntValue flowerQuantity; - public final ForgeConfigSpec.IntValue flowerDensity; - public final ForgeConfigSpec.IntValue flowerPatchSize; - public final ForgeConfigSpec.IntValue flowerPatchChance; - public final ForgeConfigSpec.DoubleValue flowerTallChance; - public final ForgeConfigSpec.IntValue mushroomQuantity; - - public final ForgeConfigSpec.BooleanValue gogSpawnWithLexicon; - - public Common(ForgeConfigSpec.Builder builder) { - blockBreakParticles = builder - .comment("Set this to false to remove the block breaking particles from the flowers and other items in the mod.") - .define("blockBreakingParticles.enabled", true); - blockBreakParticlesTool = builder - .comment("Set this to false to remove the block breaking particles from the Terra Shatterer, as there can be a good amount in higher levels.") - .define("blockBreakingParticlesTool.enabled", true); - chargingAnimationEnabled = builder - .comment("Set this to false to disable the animation when an item is charging on top of a mana pool") - .define("chargeAnimation.enabled", true); - silentSpreaders = builder - .comment("Set this to true to disable the mana spreader shooting sound") - .define("manaSpreaders.silent", false); - spreaderTraceTime = builder - .comment("How many ticks into the future will mana spreaders attempt to predict where mana bursts go? Setting this lower will improve spreader performance, but will cause them to not fire at targets that are too far away.") - .defineInRange("spreader.traceTime", 400, 1, Integer.MAX_VALUE); - flowerForceCheck = builder - .comment("Turn this off ONLY IF you're on an extremely large world with an exaggerated count of Mana Spreaders/Mana Pools and are experiencing TPS lag. This toggles whether flowers are strict with their checking for connecting to pools/spreaders or just check whenever possible.") - .define("flower.forceCheck", true); - enderPickpocketEnabled = builder - .comment("Set to false to disable the ability for the Hand of Ender to pickpocket other players' ender chests") - .define("enderPickpocket.enabled", true); - fallenKanadeEnabled = builder - .comment("Set this to false to disable the Fallen Kanade flower (gives Regeneration). This config option is here for those using Blood Magic. Note: Turning this off will not remove ones already in the world, it'll simply prevent the crafting.") - .define("fallenKanade.enabled", true); - enchanterEnabled = builder - .comment("Set this to false to disable the Mana Enchanter. Since some people find it OP or something. This only disables the entry and creation. Old ones that are already in the world will stay.") - .define("manaEnchanter.enabled", true); - fluxfieldEnabled = builder - .comment("Set this to false to disable the Mana Fluxfield (generates FE from mana). This only disables the entry and creation. Old ones that are already in the world will stay.") - .define("manaFluxfield.enabled", true); - relicsEnabled = builder - .comment("Set this to false to disable the Relic System. This only disables the entries, drops and achievements. Old ones that are already in the world will stay.") - .define("relics.enabled", true); - ringOfOdinFireResist = builder - .comment("Set this to false to make the Ring of Odin not apply fire resistance. Mostly for people who use Witchery transformations.") - .define("ringOfOdin.fireResist", true); - invertMagnetRing = builder - .comment("Set this to true to invert the Ring of Magnetization's controls (from shift to stop to shift to work)") - .define("magnetRing.invert", false); - enableThaumcraftStablizers = builder - .comment("Set this to false to disable Thaumcraft Infusion Stabilizing in botania blocks") - .define("thaumraftStabilizers.enabled", true); - enableThaumcraftAspects = builder - .comment("Set this to false to disable Thaumcraft aspects on Botania items") - .define("thaumcraftAspects.enabled", true); - harvestLevelWeight = builder - .comment("The harvest level of the Mana Lens: Weight. 3 is diamond level. Defaults to 2 (iron level)") - .defineInRange("harvestLevel.weightLens", 2, 0, Integer.MAX_VALUE); - harvestLevelBore = builder - .comment("The harvest level of the Mana Lens: Bore. 3 is diamond level. Defaults to 3") - .defineInRange("harvestLevel.boreLens", 3, 0, Integer.MAX_VALUE); - flowerQuantity = builder - .comment("The quantity of Botania flower patches to generate in the world, defaults to 2, the lower the number the less patches generate.") - .defineInRange("worldgen.flower.quantity", 2, 0, Integer.MAX_VALUE); - flowerDensity = builder - .comment("The density of each Botania flower patch generated, defaults to 2, the lower the number, the less each patch will have.") - .defineInRange("worldgen.flower.density", 2, 0, Integer.MAX_VALUE); - flowerPatchSize = builder - .comment("The size of each Botania flower patch, defaults to 6. The larger this is the farther the each patch can spread") - .defineInRange("worldgen.flower.patchSize", 6, 0, Integer.MAX_VALUE); - flowerPatchChance = builder - .comment("The inverse chance for a Botania flower patch to be generated, defaults to 16. The higher this value is the less patches will exist and the more flower each will have.") - .defineInRange("worldgen.flower.patchChance", 16, 0, Integer.MAX_VALUE); - flowerTallChance = builder - .comment("The chance for a Botania flower generated in a patch to be a tall flower. 0.1 is 10%, 1 is 100%. Defaults to 0.05") - .defineInRange("worldgen.flower.tallChance", 0.05, 0, 1); - mushroomQuantity = builder - .comment("The quantity of Botania mushrooms to generate underground, in the world, defaults to 40, the lower the number the less patches generate.") - .defineInRange("worldgen.mushroom.quantity", 40, 0, Integer.MAX_VALUE); - gogSpawnWithLexicon = builder - .comment("Set this to false to disable spawning with a Lexica Botania in Garden of Glass worlds, if you are modifying the modpack's progression to not start with Botania.") - .define("gardenOfGlass.spawnWithLexicon", true); - } - } - - public static final Common COMMON; - public static final ForgeConfigSpec COMMON_SPEC; - static { - final Pair specPair = new ForgeConfigSpec.Builder().configure(Common::new); - COMMON_SPEC = specPair.getRight(); - COMMON = specPair.getLeft(); - } -} diff --git a/src/test/java/com/quizer9o8/strata/config/StartupClientOnly.java b/src/test/java/com/quizer9o8/strata/config/StartupClientOnly.java deleted file mode 100644 index 7bdd6ef7..00000000 --- a/src/test/java/com/quizer9o8/strata/config/StartupClientOnly.java +++ /dev/null @@ -1,18 +0,0 @@ -package com.quizer9o8.strata.config; - -public class StartupClientOnly { - public static void preInitClientOnly() - { - StrataConfiguration.clientPreInit(); // used to set up an event handler for the GUI so that the altered values are - // saved back to disk. - } - - public static void initClientOnly() - { - } - - public static void postInitClientOnly() - { - } - -} \ No newline at end of file diff --git a/src/test/java/com/quizer9o8/strata/config/StartupCommonOnly.java b/src/test/java/com/quizer9o8/strata/config/StartupCommonOnly.java deleted file mode 100644 index acf750e2..00000000 --- a/src/test/java/com/quizer9o8/strata/config/StartupCommonOnly.java +++ /dev/null @@ -1,29 +0,0 @@ -package com.quizer9o8.strata.config; - -public class StartupCommonOnly -{ - public static void preInitCommon() - { - StrataConfiguration.preInit(); - System.out.println("Strata: myInteger=" + StrataConfiguration.myInteger - + "; myBoolean=" + StrataConfiguration.myBoolean - + "; myString=" + StrataConfiguration.myString); - System.out.println("Strata: myDouble=" + StrataConfiguration.myDouble - + "; myColour=" + StrataConfiguration.myColour); - System.out.print("Strata: myIntList="); - for (int value : StrataConfiguration.myIntList) { - System.out.print(value + "; "); - } - System.out.println(); - - } - - public static void initCommon() - { - } - - public static void postInitCommon() - { - } - -} \ No newline at end of file diff --git a/src/test/java/com/quizer9o8/strata/config/StrataConfiguration.java b/src/test/java/com/quizer9o8/strata/config/StrataConfiguration.java deleted file mode 100644 index e5606ea4..00000000 --- a/src/test/java/com/quizer9o8/strata/config/StrataConfiguration.java +++ /dev/null @@ -1,191 +0,0 @@ - package com.quizer9o8.strata.config; - - import com.quizer9o8.strata.Strata; - import net.minecraftforge.common.MinecraftForge; - import net.minecraftforge.common.config.Configuration; - import net.minecraftforge.common.config.Property; - import net.minecraftforge.fml.client.event.ConfigChangedEvent; - import net.minecraftforge.fml.common.Loader; - import net.minecraftforge.fml.common.eventhandler.EventPriority; - import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; - - import java.io.File; - import java.util.ArrayList; - import java.util.List; - -public class StrataConfiguration { - - // Declare all configuration fields used by the mod here - public static int myInteger; - public static boolean myBoolean; - public static double myDouble; - public static int[] myIntList; - public static String myString; - public static String myColour; - - public static final String CATEGORY_NAME_GENERAL = "category_general"; - public static final String CATEGORY_NAME_OTHER = "category_other"; - - public static void preInit() - { - - File configFile = new File(Loader.instance().getConfigDir(), "MinecraftByExample.cfg"); - - // initialize your configuration object with your configuration file values. - config = new Configuration(configFile); - - // load config from file (see mbe70 package for more info) - syncFromFile(); - } - - public static void clientPreInit() { - - MinecraftForge.EVENT_BUS.register(new ConfigEventHandler()); - } - - public static Configuration getConfig() { - return config; - } - - public static void syncFromFile() { - syncConfig(true, true); - } - - public static void syncFromGUI() { - syncConfig(false, true); - } - - public static void syncFromFields() { - syncConfig(false, false); - } - - private static void syncConfig(boolean loadConfigFromFile, boolean readFieldsFromConfig) - { - - if (loadConfigFromFile) { - config.load(); - } - - // integer - - final int MY_INT_MIN_VALUE = 3; - final int MY_INT_MAX_VALUE = 12; - final int MY_INT_DEFAULT_VALUE = 10; - Property propMyInt = config.get(CATEGORY_NAME_GENERAL, "myInteger", MY_INT_DEFAULT_VALUE, - "Configuration integer (myInteger)", MY_INT_MIN_VALUE, MY_INT_MAX_VALUE); - propMyInt.setLanguageKey("gui.mbe70_configuration.myInteger"); - - // boolean - final boolean MY_BOOL_DEFAULT_VALUE = true; - Property propMyBool = config.get(CATEGORY_NAME_GENERAL, "myBoolean", MY_BOOL_DEFAULT_VALUE); - propMyBool.setComment("Configuration boolean (myBoolean)"); - propMyBool.setLanguageKey("gui.mbe70_configuration.myBoolean").setRequiresMcRestart(true); - - // double - final double MY_DOUBLE_MIN_VALUE = 0.0; - final double MY_DOUBLE_MAX_VALUE = 1.0; - final double MY_DOUBLE_DEFAULT_VALUE = 0.80; - Property propMyDouble = config.get(CATEGORY_NAME_GENERAL, "myDouble", MY_DOUBLE_DEFAULT_VALUE, - "Configuration double (myDouble)", MY_DOUBLE_MIN_VALUE, MY_DOUBLE_MAX_VALUE); - propMyDouble.setLanguageKey("gui.mbe70_configuration.myDouble"); - - // string - final String MY_STRING_DEFAULT_VALUE = "default"; - Property propMyString = config.get(CATEGORY_NAME_GENERAL, "myString", MY_STRING_DEFAULT_VALUE); - propMyString.setComment("Configuration string (myString)"); - propMyString.setLanguageKey("gui.mbe70_configuration.myString").setRequiresWorldRestart(true); - - // list of integer values - final int[] MY_INT_LIST_DEFAULT_VALUE = new int[] { 1, 2, 3, 4, 5 }; - Property propMyIntList = config.get(CATEGORY_NAME_GENERAL, "myIntList", MY_INT_LIST_DEFAULT_VALUE, - "Configuration integer list (myIntList)"); - propMyIntList.setLanguageKey("gui.mbe70_configuration.myIntList"); - - // a string restricted to several choices - located on a separate category tab in the GUI - final String COLOUR_DEFAULT_VALUE = "red"; - final String[] COLOUR_CHOICES = { "blue", "red", "yellow" }; - Property propColour = config.get(CATEGORY_NAME_OTHER, "myColour", COLOUR_DEFAULT_VALUE); - propColour.setComment("Configuration string (myColour): blue, red, yellow"); - propColour.setLanguageKey("gui.mbe70_configuration.myColour").setRequiresWorldRestart(true); - propColour.setValidValues(COLOUR_CHOICES); - - // By defining a property order we can control the order of the - // properties in the config file and GUI. This is defined on a per config-category basis. - - List propOrderGeneral = new ArrayList(); - propOrderGeneral.add(propMyInt.getName()); // push the config value's name into the ordered list - propOrderGeneral.add(propMyBool.getName()); - propOrderGeneral.add(propMyDouble.getName()); - propOrderGeneral.add(propMyString.getName()); - propOrderGeneral.add(propMyIntList.getName()); - config.setCategoryPropertyOrder(CATEGORY_NAME_GENERAL, propOrderGeneral); - - List propOrderOther = new ArrayList(); - propOrderOther.add(propColour.getName()); - config.setCategoryPropertyOrder(CATEGORY_NAME_OTHER, propOrderOther); - - if (readFieldsFromConfig) - { - // If getInt() cannot get an integer value from the config file - // value of myInteger (e.g. corrupted file). - // It will set it to the default value passed to the function. - - myInteger = propMyInt.getInt(MY_INT_DEFAULT_VALUE); - if (myInteger > MY_INT_MAX_VALUE || myInteger < MY_INT_MIN_VALUE) { - myInteger = MY_INT_DEFAULT_VALUE; - } - - myBoolean = propMyBool.getBoolean(MY_BOOL_DEFAULT_VALUE); // can also use a literal (see integer example) if desired - - myDouble = propMyDouble.getDouble(MY_DOUBLE_DEFAULT_VALUE); - if (myDouble > MY_DOUBLE_MAX_VALUE || myDouble < MY_DOUBLE_MIN_VALUE) { - myDouble = MY_DOUBLE_DEFAULT_VALUE; - } - - myString = propMyString.getString(); - myIntList = propMyIntList.getIntList(); - - myColour = propColour.getString(); - boolean matched = false; - for (String entry : COLOUR_CHOICES) { - if (entry.equals(myColour)) { - matched = true; - break; - } - } - if (!matched) { - myColour = COLOUR_DEFAULT_VALUE; - } - } - - propMyInt.set(myInteger); - propMyBool.set(myBoolean); - propMyDouble.set(myDouble); - propMyString.set(myString); - propMyIntList.set(myIntList); - propColour.set(myColour); - - if (config.hasChanged()) { - config.save(); - } - } - - // Define your configuration object - private static Configuration config = null; - - public static class ConfigEventHandler - { - - @SubscribeEvent(priority = EventPriority.NORMAL) - public void onEvent(ConfigChangedEvent.OnConfigChangedEvent event) - { - if (MinecraftByExample.MODID.equals(event.getModID()) && !event.isWorldRunning()) - { - if (event.getConfigID().equals(CATEGORY_NAME_GENERAL) || event.getConfigID().equals(CATEGORY_NAME_OTHER)) - { - syncFromGUI(); - } - } - } - } -} \ No newline at end of file diff --git a/src/test/java/com/quizer9o8/strata/config/StrataGuiFactory.java b/src/test/java/com/quizer9o8/strata/config/StrataGuiFactory.java deleted file mode 100644 index 47216424..00000000 --- a/src/test/java/com/quizer9o8/strata/config/StrataGuiFactory.java +++ /dev/null @@ -1,127 +0,0 @@ -package com.quizer9o8.strata.config; - -import net.minecraft.client.Minecraft; -import net.minecraft.client.gui.screen.Screen; -import net.minecraft.client.resources.I18n; -import net.minecraftforge.common.config.ConfigElement; -import net.minecraftforge.common.config.Configuration; -import net.minecraftforge.fml.client.IModGuiFactory; -import net.minecraftforge.fml.client.config.DummyConfigElement.DummyCategoryElement; -import net.minecraftforge.fml.client.config.GuiConfig; -import net.minecraftforge.fml.client.config.GuiConfigEntries; -import net.minecraftforge.fml.client.config.GuiConfigEntries.CategoryEntry; -import net.minecraftforge.fml.client.config.IConfigElement; - -import java.util.ArrayList; -import java.util.List; -import java.util.Set; - -public class StrataGuiFactory implements IModGuiFactory -{ - //this class is accessed when Forge needs a GUI made relating to your mod (e.g. config GUI) - - @Override - public void initialize(Minecraft minecraftInstance) - { - //needed to implement IModGuiFactory but doesn't need to do anything - // for the configuration gui - } - - // called when your GUI needs to be created - public Screen createConfigGui(Screen parentScreen) - { - return new StrataConfigGui(parentScreen); - } - - public boolean hasConfigGui() { - return true; - } - - // This function is needed for implementation only, the config gui does not require them - @Override - public Set runtimeGuiCategories() - { - return null; - } - - //This class inherits from GuiConfig, a specialized GuiScreen designed to display your - // configuration categories - public static class StrataConfigGui extends GuiConfig - { - public StrataConfigGui(Screen parentScreen) - { - //I18n function basically "translates" or localizes the given key using the appropriate .lang file - super(parentScreen, getConfigElements(), MinecraftByExample.MODID, - false, false, I18n.format("gui.mbe70_configuration.mainTitle")); - } - - private static List getConfigElements() - { - List list = new ArrayList(); - //Add the two buttons that will go to each config category edit screen - list.add(new DummyCategoryElement("mainCfg", "gui.mbe70_configuration.ctgy.general", CategoryEntryGeneral.class)); - list.add(new DummyCategoryElement("miscCfg", "gui.mbe70_configuration.ctgy.other", CategoryEntryOther.class)); - return list; - } - - //the next two classes are the edit screens for each configuration category - public static class CategoryEntryGeneral extends CategoryEntry - { - public CategoryEntryGeneral(GuiConfig owningScreen, GuiConfigEntries owningEntryList, IConfigElement prop) - { - super(owningScreen, owningEntryList, prop); - } - - @Override - protected Screen buildChildScreen() - { - //The following GuiConfig object specifies the configID of the object and thus will force-save - // when closed. - //Parent GuiConfig object's entryList will also be refreshed to reflect the changes. - // --see GuiFactory of Forge for more info - //Additionally, Forge best practices say to put the path to the config file for the category as - // the title for the category config screen - - Configuration configuration = StrataConfiguration.getConfig(); - ConfigElement cat_general = new ConfigElement(configuration.getCategory(StrataConfiguration.CATEGORY_NAME_GENERAL)); - List propertiesOnThisScreen = cat_general.getChildElements(); - String windowTitle = configuration.toString(); - - return new GuiConfig(this.owningScreen, propertiesOnThisScreen, - this.owningScreen.modID, - StrataConfiguration.CATEGORY_NAME_GENERAL, - this.configElement.requiresWorldRestart() || this.owningScreen.allRequireWorldRestart, - this.configElement.requiresMcRestart() || this.owningScreen.allRequireMcRestart, - windowTitle); - //this is a complicated object that specifies the category's gui screen, to better understand - // how it works, look into the definitions of the called functions and objects - } - } - - public static class CategoryEntryOther extends CategoryEntry - { - public CategoryEntryOther(GuiConfig owningScreen, GuiConfigEntries owningEntryList, IConfigElement prop) - { - super(owningScreen, owningEntryList, prop); - } - - @Override - protected Screen buildChildScreen() - { - Configuration configuration = StrataConfiguration.getConfig(); - ConfigElement cat_general = new ConfigElement(configuration.getCategory(StrataConfiguration.CATEGORY_NAME_OTHER)); - List propertiesOnThisScreen = cat_general.getChildElements(); - String windowTitle = configuration.toString(); - - return new GuiConfig(this.owningScreen, propertiesOnThisScreen, - this.owningScreen.modID, - StrataConfiguration.CATEGORY_NAME_OTHER, - this.configElement.requiresWorldRestart() || this.owningScreen.allRequireWorldRestart, - this.configElement.requiresMcRestart() || this.owningScreen.allRequireMcRestart, - windowTitle); - //this is a complicated object that specifies the category's gui screen, to better understand - // how it works, look into the definitions of the called functions and objects - } - } - } -} diff --git a/src/test/java/com/quizer9o8/strata/events/RegistryEvents.java b/src/test/java/com/quizer9o8/strata/events/RegistryEvents.java deleted file mode 100644 index 4bc5244a..00000000 --- a/src/test/java/com/quizer9o8/strata/events/RegistryEvents.java +++ /dev/null @@ -1,27 +0,0 @@ -package com.quizer9o8.strata.events; - -import com.quizer9o8.strata.Strata; -import net.minecraft.item.ItemGroup; -import net.minecraft.util.ResourceLocation; -import net.minecraftforge.fml.common.Mod; -import org.apache.logging.log4j.Logger; - -//This tells the game to run this class before anything else. -@Mod.EventBusSubscriber(bus=Mod.EventBusSubscriber.Bus.MOD) -public class RegistryEvents -{ - public static final Logger LOGGER = Strata.LOGGER; - public static final String MOD_ID = Strata.MOD_ID; - - //ItemGroups - //public static final ItemGroup DEBUG = Strata.DEBUG_TAB; - public static final ItemGroup IGNEOUS = Strata.IGNEOUS_TAB; - public static final ItemGroup SEDIMENTARY = Strata.SEDIMENTARY_TAB; - public static final ItemGroup METAMORPHIC = Strata.METAMORPHIC_TAB; - //public static final ItemGroup MISCELLANEOUS = Strata.MISCELLANEOUS_TAB; - - public static ResourceLocation location(String name) - { - return new ResourceLocation(MOD_ID, name); - } -} diff --git a/src/test/java/com/quizer9o8/strata/list/BlockList.java b/src/test/java/com/quizer9o8/strata/list/BlockList.java deleted file mode 100644 index 0bb2411f..00000000 --- a/src/test/java/com/quizer9o8/strata/list/BlockList.java +++ /dev/null @@ -1,239 +0,0 @@ -package com.quizer9o8.strata.list; - -import com.quizer9o8.strata.Strata; -import com.quizer9o8.strata.objects.blocks.StrataButtonBlock; -import com.quizer9o8.strata.objects.blocks.StrataPressurePlateBlock; -import com.quizer9o8.strata.objects.blocks.StrataStairsBlock; -import net.minecraft.block.*; -import net.minecraft.block.material.Material; -import net.minecraftforge.common.ToolType; -import net.minecraftforge.fml.RegistryObject; -import net.minecraftforge.registries.DeferredRegister; -import net.minecraftforge.registries.ForgeRegistries; - -public class BlockList -{ - //Deferred Registries Method - public static final DeferredRegister BLOCKS = new DeferredRegister(ForgeRegistries.BLOCKS, Strata.MOD_ID); - -/* - //Debug Blocks - public static final RegistryObject DEBUG_BLOCK = BLOCKS.register("debug_block", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).hardnessAndResistance(0.0f, 0.0f).harvestLevel(0))); - public static final RegistryObject DEBUG_SLAB = BLOCKS.register("debug_slab", () -> new SlabBlock(Block.Properties.from(DEBUG_BLOCK.get()))); - public static final RegistryObject DEBUG_STAIRS = BLOCKS.register("debug_stairs", () -> new StrataStairsBlock(DEBUG_BLOCK.get().getDefaultState(), Block.Properties.from(DEBUG_BLOCK.get()))); - public static final RegistryObject DEBUG_WALL = BLOCKS.register("debug_wall", () -> new WallBlock(Block.Properties.from(DEBUG_BLOCK.get()))); - //public static final RegistryObject DEBUG_ORE = BLOCKS.register("debug_ore", () -> new StrataOreBlock(Block.Properties.from(Blocks.IRON_ORE))); -*/ - - /*Igneous Rocks*/ - - //Basalt - public static final RegistryObject BASALT = BLOCKS.register("basalt", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject BASALT_SLAB = BLOCKS.register("basalt_slab", () -> new SlabBlock(Block.Properties.from(BASALT.get()))); - public static final RegistryObject BASALT_STAIRS = BLOCKS.register("basalt_stairs", () -> new StrataStairsBlock(BASALT.get().getDefaultState(), Block.Properties.from(BASALT.get()))); - public static final RegistryObject BASALT_WALL = BLOCKS.register("basalt_wall", () -> new WallBlock(Block.Properties.from(BASALT.get()))); - - //Buttons - public static final RegistryObject BASALT_BUTTON = BLOCKS.register("basalt_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); - - //Pressure Plates - public static final RegistryObject BASALT_PRESSURE_PLATE = BLOCKS.register("basalt_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); - - //Bricks - public static final RegistryObject BASALT_BRICKS = BLOCKS.register("basalt_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject BASALT_BRICK_SLAB = BLOCKS.register("basalt_brick_slab", () -> new SlabBlock(Block.Properties.from(BASALT_BRICKS.get()))); - public static final RegistryObject BASALT_BRICK_STAIRS = BLOCKS.register("basalt_brick_stairs", () -> new StrataStairsBlock(BASALT_BRICKS.get().getDefaultState(), Block.Properties.from(BASALT_BRICKS.get()))); - public static final RegistryObject BASALT_BRICK_WALL = BLOCKS.register("basalt_brick_wall", () -> new WallBlock(Block.Properties.from(BASALT_BRICKS.get()))); - public static final RegistryObject CHISELED_BASALT_BRICKS = BLOCKS.register("chiseled_basalt_bricks", () -> new Block(Block.Properties.from(BASALT_BRICKS.get()))); - public static final RegistryObject CRACKED_BASALT_BRICKS = BLOCKS.register("cracked_basalt_bricks", () -> new Block(Block.Properties.from(BASALT_BRICKS.get()))); - public static final RegistryObject MOSSY_BASALT_BRICKS = BLOCKS.register("mossy_basalt_bricks", () -> new Block(Block.Properties.from(BASALT_BRICKS.get()))); - public static final RegistryObject MOSSY_BASALT_BRICK_SLAB = BLOCKS.register("mossy_basalt_brick_slab", () -> new SlabBlock(Block.Properties.from(BASALT_BRICKS.get()))); - public static final RegistryObject MOSSY_BASALT_BRICK_STAIRS = BLOCKS.register("mossy_basalt_brick_stairs", () -> new StrataStairsBlock(BASALT_BRICKS.get().getDefaultState(), Block.Properties.from(BASALT.get()))); - public static final RegistryObject MOSSY_BASALT_BRICK_WALL = BLOCKS.register("mossy_basalt_brick_wall", () -> new WallBlock(Block.Properties.from(BASALT_BRICKS.get()))); - - //Polished - public static final RegistryObject POLISHED_BASALT = BLOCKS.register("polished_basalt", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject POLISHED_BASALT_SLAB = BLOCKS.register("polished_basalt_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_BASALT.get()))); - public static final RegistryObject POLISHED_BASALT_STAIRS = BLOCKS.register("polished_basalt_stairs", () -> new StrataStairsBlock(POLISHED_BASALT.get().getDefaultState(), Block.Properties.from(POLISHED_BASALT.get()))); - - //Gabbro - public static final RegistryObject GABBRO = BLOCKS.register("gabbro", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject GABBRO_SLAB = BLOCKS.register("gabbro_slab", () -> new SlabBlock(Block.Properties.from(GABBRO.get()))); - public static final RegistryObject GABBRO_STAIRS = BLOCKS.register("gabbro_stairs", () -> new StrataStairsBlock(GABBRO.get().getDefaultState(), Block.Properties.from(GABBRO.get()))); - public static final RegistryObject GABBRO_WALL = BLOCKS.register("gabbro_wall", () -> new WallBlock(Block.Properties.from(GABBRO.get()))); - - //Buttons - public static final RegistryObject GABBRO_BUTTON = BLOCKS.register("gabbro_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); - - //Pressure Plates - public static final RegistryObject GABBRO_PRESSURE_PLATE = BLOCKS.register("gabbro_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); - - //Bricks - public static final RegistryObject GABBRO_BRICKS = BLOCKS.register("gabbro_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject GABBRO_BRICK_SLAB = BLOCKS.register("gabbro_brick_slab", () -> new SlabBlock(Block.Properties.from(GABBRO_BRICKS.get()))); - public static final RegistryObject GABBRO_BRICK_STAIRS = BLOCKS.register("gabbro_brick_stairs", () -> new StrataStairsBlock(GABBRO_BRICKS.get().getDefaultState(), Block.Properties.from(GABBRO_BRICKS.get()))); - public static final RegistryObject GABBRO_BRICK_WALL = BLOCKS.register("gabbro_brick_wall", () -> new WallBlock(Block.Properties.from(GABBRO_BRICKS.get()))); - public static final RegistryObject CHISELED_GABBRO_BRICKS = BLOCKS.register("chiseled_gabbro_bricks", () -> new Block(Block.Properties.from(GABBRO_BRICKS.get()))); - public static final RegistryObject CRACKED_GABBRO_BRICKS = BLOCKS.register("cracked_gabbro_bricks", () -> new Block(Block.Properties.from(GABBRO_BRICKS.get()))); - public static final RegistryObject MOSSY_GABBRO_BRICKS = BLOCKS.register("mossy_gabbro_bricks", () -> new Block(Block.Properties.from(GABBRO_BRICKS.get()))); - public static final RegistryObject MOSSY_GABBRO_BRICK_SLAB = BLOCKS.register("mossy_gabbro_brick_slab", () -> new SlabBlock(Block.Properties.from(GABBRO_BRICKS.get()))); - public static final RegistryObject MOSSY_GABBRO_BRICK_STAIRS = BLOCKS.register("mossy_gabbro_brick_stairs", () -> new StrataStairsBlock(GABBRO_BRICKS.get().getDefaultState(), Block.Properties.from(GABBRO.get()))); - public static final RegistryObject MOSSY_GABBRO_BRICK_WALL = BLOCKS.register("mossy_gabbro_brick_wall", () -> new WallBlock(Block.Properties.from(GABBRO_BRICKS.get()))); - - //Polished - public static final RegistryObject POLISHED_GABBRO = BLOCKS.register("polished_gabbro", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject POLISHED_GABBRO_SLAB = BLOCKS.register("polished_gabbro_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_GABBRO.get()))); - public static final RegistryObject POLISHED_GABBRO_STAIRS = BLOCKS.register("polished_gabbro_stairs", () -> new StrataStairsBlock(POLISHED_GABBRO.get().getDefaultState(), Block.Properties.from(POLISHED_GABBRO.get()))); - - /*Metamorphic Rocks*/ - - //Amphibolite - public static final RegistryObject AMPHIBOLITE = BLOCKS.register("amphibolite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject AMPHIBOLITE_SLAB = BLOCKS.register("amphibolite_slab", () -> new SlabBlock(Block.Properties.from(AMPHIBOLITE.get()))); - public static final RegistryObject AMPHIBOLITE_STAIRS = BLOCKS.register("amphibolite_stairs", () -> new StrataStairsBlock(AMPHIBOLITE.get().getDefaultState(), Block.Properties.from(AMPHIBOLITE.get()))); - public static final RegistryObject AMPHIBOLITE_WALL = BLOCKS.register("amphibolite_wall", () -> new WallBlock(Block.Properties.from(AMPHIBOLITE.get()))); - - //Buttons - public static final RegistryObject AMPHIBOLITE_BUTTON = BLOCKS.register("amphibolite_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); - - //Pressure Plates - public static final RegistryObject AMPHIBOLITE_PRESSURE_PLATE = BLOCKS.register("amphibolite_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); - - //Bricks - public static final RegistryObject AMPHIBOLITE_BRICKS = BLOCKS.register("amphibolite_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject AMPHIBOLITE_BRICK_SLAB = BLOCKS.register("amphibolite_brick_slab", () -> new SlabBlock(Block.Properties.from(AMPHIBOLITE_BRICKS.get()))); - public static final RegistryObject AMPHIBOLITE_BRICK_STAIRS = BLOCKS.register("amphibolite_brick_stairs", () -> new StrataStairsBlock(AMPHIBOLITE_BRICKS.get().getDefaultState(), Block.Properties.from(AMPHIBOLITE_BRICKS.get()))); - public static final RegistryObject AMPHIBOLITE_BRICK_WALL = BLOCKS.register("amphibolite_brick_wall", () -> new WallBlock(Block.Properties.from(AMPHIBOLITE_BRICKS.get()))); - public static final RegistryObject CHISELED_AMPHIBOLITE_BRICKS = BLOCKS.register("chiseled_amphibolite_bricks", () -> new Block(Block.Properties.from(AMPHIBOLITE_BRICKS.get()))); - public static final RegistryObject CRACKED_AMPHIBOLITE_BRICKS = BLOCKS.register("cracked_amphibolite_bricks", () -> new Block(Block.Properties.from(AMPHIBOLITE_BRICKS.get()))); - public static final RegistryObject MOSSY_AMPHIBOLITE_BRICKS = BLOCKS.register("mossy_amphibolite_bricks", () -> new Block(Block.Properties.from(AMPHIBOLITE_BRICKS.get()))); - public static final RegistryObject MOSSY_AMPHIBOLITE_BRICK_SLAB = BLOCKS.register("mossy_amphibolite_brick_slab", () -> new SlabBlock(Block.Properties.from(AMPHIBOLITE_BRICKS.get()))); - public static final RegistryObject MOSSY_AMPHIBOLITE_BRICK_STAIRS = BLOCKS.register("mossy_amphibolite_brick_stairs", () -> new StrataStairsBlock(AMPHIBOLITE_BRICKS.get().getDefaultState(), Block.Properties.from(AMPHIBOLITE.get()))); - public static final RegistryObject MOSSY_AMPHIBOLITE_BRICK_WALL = BLOCKS.register("mossy_amphibolite_brick_wall", () -> new WallBlock(Block.Properties.from(AMPHIBOLITE_BRICKS.get()))); - - //Polished - public static final RegistryObject POLISHED_AMPHIBOLITE = BLOCKS.register("polished_amphibolite", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject POLISHED_AMPHIBOLITE_SLAB = BLOCKS.register("polished_amphibolite_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_AMPHIBOLITE.get()))); - public static final RegistryObject POLISHED_AMPHIBOLITE_STAIRS = BLOCKS.register("polished_amphibolite_stairs", () -> new StrataStairsBlock(POLISHED_AMPHIBOLITE.get().getDefaultState(), Block.Properties.from(POLISHED_AMPHIBOLITE.get()))); - - //Gneiss - public static final RegistryObject GNEISS = BLOCKS.register("gneiss", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject GNEISS_SLAB = BLOCKS.register("gneiss_slab", () -> new SlabBlock(Block.Properties.from(GNEISS.get()))); - public static final RegistryObject GNEISS_STAIRS = BLOCKS.register("gneiss_stairs", () -> new StrataStairsBlock(GNEISS.get().getDefaultState(), Block.Properties.from(GNEISS.get()))); - public static final RegistryObject GNEISS_WALL = BLOCKS.register("gneiss_wall", () -> new WallBlock(Block.Properties.from(GNEISS.get()))); - - //Buttons - public static final RegistryObject GNEISS_BUTTON = BLOCKS.register("gneiss_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); - - //Pressure Plates - public static final RegistryObject GNEISS_PRESSURE_PLATE = BLOCKS.register("gneiss_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); - - //Bricks - public static final RegistryObject GNEISS_BRICKS = BLOCKS.register("gneiss_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject GNEISS_BRICK_SLAB = BLOCKS.register("gneiss_brick_slab", () -> new SlabBlock(Block.Properties.from(GNEISS_BRICKS.get()))); - public static final RegistryObject GNEISS_BRICK_STAIRS = BLOCKS.register("gneiss_brick_stairs", () -> new StrataStairsBlock(GNEISS_BRICKS.get().getDefaultState(), Block.Properties.from(GNEISS_BRICKS.get()))); - public static final RegistryObject GNEISS_BRICK_WALL = BLOCKS.register("gneiss_brick_wall", () -> new WallBlock(Block.Properties.from(GNEISS_BRICKS.get()))); - public static final RegistryObject CHISELED_GNEISS_BRICKS = BLOCKS.register("chiseled_gneiss_bricks", () -> new Block(Block.Properties.from(GNEISS_BRICKS.get()))); - public static final RegistryObject CRACKED_GNEISS_BRICKS = BLOCKS.register("cracked_gneiss_bricks", () -> new Block(Block.Properties.from(GNEISS_BRICKS.get()))); - public static final RegistryObject MOSSY_GNEISS_BRICKS = BLOCKS.register("mossy_gneiss_bricks", () -> new Block(Block.Properties.from(GNEISS_BRICKS.get()))); - public static final RegistryObject MOSSY_GNEISS_BRICK_SLAB = BLOCKS.register("mossy_gneiss_brick_slab", () -> new SlabBlock(Block.Properties.from(GNEISS_BRICKS.get()))); - public static final RegistryObject MOSSY_GNEISS_BRICK_STAIRS = BLOCKS.register("mossy_gneiss_brick_stairs", () -> new StrataStairsBlock(GNEISS_BRICKS.get().getDefaultState(), Block.Properties.from(GNEISS.get()))); - public static final RegistryObject MOSSY_GNEISS_BRICK_WALL = BLOCKS.register("mossy_gneiss_brick_wall", () -> new WallBlock(Block.Properties.from(GNEISS_BRICKS.get()))); - - //Polished - public static final RegistryObject POLISHED_GNEISS = BLOCKS.register("polished_gneiss", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject POLISHED_GNEISS_SLAB = BLOCKS.register("polished_gneiss_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_GNEISS.get()))); - public static final RegistryObject POLISHED_GNEISS_STAIRS = BLOCKS.register("polished_gneiss_stairs", () -> new StrataStairsBlock(POLISHED_GNEISS.get().getDefaultState(), Block.Properties.from(POLISHED_GNEISS.get()))); - - //Schist - public static final RegistryObject SCHIST = BLOCKS.register("schist", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject SCHIST_SLAB = BLOCKS.register("schist_slab", () -> new SlabBlock(Block.Properties.from(SCHIST.get()))); - public static final RegistryObject SCHIST_STAIRS = BLOCKS.register("schist_stairs", () -> new StrataStairsBlock(SCHIST.get().getDefaultState(), Block.Properties.from(SCHIST.get()))); - public static final RegistryObject SCHIST_WALL = BLOCKS.register("schist_wall", () -> new WallBlock(Block.Properties.from(SCHIST.get()))); - - //Buttons - public static final RegistryObject SCHIST_BUTTON = BLOCKS.register("schist_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); - - //Pressure Plates - public static final RegistryObject SCHIST_PRESSURE_PLATE = BLOCKS.register("schist_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); - - //Bricks - public static final RegistryObject SCHIST_BRICKS = BLOCKS.register("schist_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject SCHIST_BRICK_SLAB = BLOCKS.register("schist_brick_slab", () -> new SlabBlock(Block.Properties.from(SCHIST_BRICKS.get()))); - public static final RegistryObject SCHIST_BRICK_STAIRS = BLOCKS.register("schist_brick_stairs", () -> new StrataStairsBlock(SCHIST_BRICKS.get().getDefaultState(), Block.Properties.from(SCHIST_BRICKS.get()))); - public static final RegistryObject SCHIST_BRICK_WALL = BLOCKS.register("schist_brick_wall", () -> new WallBlock(Block.Properties.from(SCHIST_BRICKS.get()))); - public static final RegistryObject CHISELED_SCHIST_BRICKS = BLOCKS.register("chiseled_schist_bricks", () -> new Block(Block.Properties.from(SCHIST_BRICKS.get()))); - public static final RegistryObject CRACKED_SCHIST_BRICKS = BLOCKS.register("cracked_schist_bricks", () -> new Block(Block.Properties.from(SCHIST_BRICKS.get()))); - public static final RegistryObject MOSSY_SCHIST_BRICKS = BLOCKS.register("mossy_schist_bricks", () -> new Block(Block.Properties.from(SCHIST_BRICKS.get()))); - public static final RegistryObject MOSSY_SCHIST_BRICK_SLAB = BLOCKS.register("mossy_schist_brick_slab", () -> new SlabBlock(Block.Properties.from(SCHIST_BRICKS.get()))); - public static final RegistryObject MOSSY_SCHIST_BRICK_STAIRS = BLOCKS.register("mossy_schist_brick_stairs", () -> new StrataStairsBlock(SCHIST_BRICKS.get().getDefaultState(), Block.Properties.from(SCHIST.get()))); - public static final RegistryObject MOSSY_SCHIST_BRICK_WALL = BLOCKS.register("mossy_schist_brick_wall", () -> new WallBlock(Block.Properties.from(SCHIST_BRICKS.get()))); - - //Polished - public static final RegistryObject POLISHED_SCHIST = BLOCKS.register("polished_schist", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject POLISHED_SCHIST_SLAB = BLOCKS.register("polished_schist_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_SCHIST.get()))); - public static final RegistryObject POLISHED_SCHIST_STAIRS = BLOCKS.register("polished_schist_stairs", () -> new StrataStairsBlock(POLISHED_SCHIST.get().getDefaultState(), Block.Properties.from(POLISHED_SCHIST.get()))); - - /*Sedimentary Rocks*/ - - //Limestone - public static final RegistryObject LIMESTONE = BLOCKS.register("limestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject LIMESTONE_SLAB = BLOCKS.register("limestone_slab", () -> new SlabBlock(Block.Properties.from(LIMESTONE.get()))); - public static final RegistryObject LIMESTONE_STAIRS = BLOCKS.register("limestone_stairs", () -> new StrataStairsBlock(LIMESTONE.get().getDefaultState(), Block.Properties.from(LIMESTONE.get()))); - public static final RegistryObject LIMESTONE_WALL = BLOCKS.register("limestone_wall", () -> new WallBlock(Block.Properties.from(LIMESTONE.get()))); - - //Buttons - public static final RegistryObject LIMESTONE_BUTTON = BLOCKS.register("limestone_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); - - //Pressure Plates - public static final RegistryObject LIMESTONE_PRESSURE_PLATE = BLOCKS.register("limestone_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); - - //Bricks - public static final RegistryObject LIMESTONE_BRICKS = BLOCKS.register("limestone_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject LIMESTONE_BRICK_SLAB = BLOCKS.register("limestone_brick_slab", () -> new SlabBlock(Block.Properties.from(LIMESTONE_BRICKS.get()))); - public static final RegistryObject LIMESTONE_BRICK_STAIRS = BLOCKS.register("limestone_brick_stairs", () -> new StrataStairsBlock(LIMESTONE_BRICKS.get().getDefaultState(), Block.Properties.from(LIMESTONE_BRICKS.get()))); - public static final RegistryObject LIMESTONE_BRICK_WALL = BLOCKS.register("limestone_brick_wall", () -> new WallBlock(Block.Properties.from(LIMESTONE_BRICKS.get()))); - public static final RegistryObject CHISELED_LIMESTONE_BRICKS = BLOCKS.register("chiseled_limestone_bricks", () -> new Block(Block.Properties.from(LIMESTONE_BRICKS.get()))); - public static final RegistryObject CRACKED_LIMESTONE_BRICKS = BLOCKS.register("cracked_limestone_bricks", () -> new Block(Block.Properties.from(LIMESTONE_BRICKS.get()))); - public static final RegistryObject MOSSY_LIMESTONE_BRICKS = BLOCKS.register("mossy_limestone_bricks", () -> new Block(Block.Properties.from(LIMESTONE_BRICKS.get()))); - public static final RegistryObject MOSSY_LIMESTONE_BRICK_SLAB = BLOCKS.register("mossy_limestone_brick_slab", () -> new SlabBlock(Block.Properties.from(LIMESTONE_BRICKS.get()))); - public static final RegistryObject MOSSY_LIMESTONE_BRICK_STAIRS = BLOCKS.register("mossy_limestone_brick_stairs", () -> new StrataStairsBlock(LIMESTONE_BRICKS.get().getDefaultState(), Block.Properties.from(LIMESTONE.get()))); - public static final RegistryObject MOSSY_LIMESTONE_BRICK_WALL = BLOCKS.register("mossy_limestone_brick_wall", () -> new WallBlock(Block.Properties.from(LIMESTONE_BRICKS.get()))); - - //Polished - public static final RegistryObject POLISHED_LIMESTONE = BLOCKS.register("polished_limestone", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject POLISHED_LIMESTONE_SLAB = BLOCKS.register("polished_limestone_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_LIMESTONE.get()))); - public static final RegistryObject POLISHED_LIMESTONE_STAIRS = BLOCKS.register("polished_limestone_stairs", () -> new StrataStairsBlock(POLISHED_LIMESTONE.get().getDefaultState(), Block.Properties.from(POLISHED_LIMESTONE.get()))); - - //Shale - public static final RegistryObject SHALE = BLOCKS.register("shale", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject SHALE_SLAB = BLOCKS.register("shale_slab", () -> new SlabBlock(Block.Properties.from(SHALE.get()))); - public static final RegistryObject SHALE_STAIRS = BLOCKS.register("shale_stairs", () -> new StrataStairsBlock(SHALE.get().getDefaultState(), Block.Properties.from(SHALE.get()))); - public static final RegistryObject SHALE_WALL = BLOCKS.register("shale_wall", () -> new WallBlock(Block.Properties.from(SHALE.get()))); - - //Buttons - public static final RegistryObject SHALE_BUTTON = BLOCKS.register("shale_button", () -> new StrataButtonBlock(Block.Properties.create(Material.MISCELLANEOUS).sound(SoundType.STONE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); - - //Pressure Plates - public static final RegistryObject SHALE_PRESSURE_PLATE = BLOCKS.register("shale_pressure_plate", () -> new StrataPressurePlateBlock(PressurePlateBlock.Sensitivity.MOBS, Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).doesNotBlockMovement().hardnessAndResistance(0.5f, 0.5f))); - - //Bricks - public static final RegistryObject SHALE_BRICKS = BLOCKS.register("shale_bricks", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject SHALE_BRICK_SLAB = BLOCKS.register("shale_brick_slab", () -> new SlabBlock(Block.Properties.from(SHALE_BRICKS.get()))); - public static final RegistryObject SHALE_BRICK_STAIRS = BLOCKS.register("shale_brick_stairs", () -> new StrataStairsBlock(SHALE_BRICKS.get().getDefaultState(), Block.Properties.from(SHALE_BRICKS.get()))); - public static final RegistryObject SHALE_BRICK_WALL = BLOCKS.register("shale_brick_wall", () -> new WallBlock(Block.Properties.from(SHALE_BRICKS.get()))); - public static final RegistryObject CHISELED_SHALE_BRICKS = BLOCKS.register("chiseled_shale_bricks", () -> new Block(Block.Properties.from(SHALE_BRICKS.get()))); - public static final RegistryObject CRACKED_SHALE_BRICKS = BLOCKS.register("cracked_shale_bricks", () -> new Block(Block.Properties.from(SHALE_BRICKS.get()))); - public static final RegistryObject MOSSY_SHALE_BRICKS = BLOCKS.register("mossy_shale_bricks", () -> new Block(Block.Properties.from(SHALE_BRICKS.get()))); - public static final RegistryObject MOSSY_SHALE_BRICK_SLAB = BLOCKS.register("mossy_shale_brick_slab", () -> new SlabBlock(Block.Properties.from(SHALE_BRICKS.get()))); - public static final RegistryObject MOSSY_SHALE_BRICK_STAIRS = BLOCKS.register("mossy_shale_brick_stairs", () -> new StrataStairsBlock(SHALE_BRICKS.get().getDefaultState(), Block.Properties.from(SHALE.get()))); - public static final RegistryObject MOSSY_SHALE_BRICK_WALL = BLOCKS.register("mossy_shale_brick_wall", () -> new WallBlock(Block.Properties.from(SHALE_BRICKS.get()))); - - //Polished - public static final RegistryObject POLISHED_SHALE = BLOCKS.register("polished_shale", () -> new Block(Block.Properties.create(Material.ROCK).sound(SoundType.STONE).harvestTool(ToolType.PICKAXE).hardnessAndResistance(1.5f, 6.0f))); - public static final RegistryObject POLISHED_SHALE_SLAB = BLOCKS.register("polished_shale_slab", () -> new SlabBlock(Block.Properties.from(POLISHED_SHALE.get()))); - public static final RegistryObject POLISHED_SHALE_STAIRS = BLOCKS.register("polished_shale_stairs", () -> new StrataStairsBlock(POLISHED_SHALE.get().getDefaultState(), Block.Properties.from(POLISHED_SHALE.get()))); - - -} - diff --git a/src/test/java/com/quizer9o8/strata/list/ItemList.java b/src/test/java/com/quizer9o8/strata/list/ItemList.java deleted file mode 100644 index 9ecb6616..00000000 --- a/src/test/java/com/quizer9o8/strata/list/ItemList.java +++ /dev/null @@ -1,233 +0,0 @@ -package com.quizer9o8.strata.list; - -import com.quizer9o8.strata.Strata; -import net.minecraft.item.BlockItem; -import net.minecraft.item.Item; -import net.minecraftforge.fml.RegistryObject; -import net.minecraftforge.registries.DeferredRegister; -import net.minecraftforge.registries.ForgeRegistries; - -public class ItemList -{ - public static final DeferredRegister ITEMS = new DeferredRegister(ForgeRegistries.ITEMS, Strata.MOD_ID); - -/* - //Debug - - public static final RegistryObject DEBUG_ITEM = ITEMS.register("debug_item", () -> new Item(new Item.Properties().group(Strata.DEBUG_TAB))); - public static final RegistryObject DEBUG_BLOCK = ITEMS.register("debug_block", () -> new BlockItem(BlockList.DEBUG_BLOCK.get(), new Item.Properties().group(Strata.DEBUG_TAB))); - public static final RegistryObject DEBUG_SLAB = ITEMS.register("debug_slab", () -> new Item(new Item.Properties().group(Strata.DEBUG_TAB))); - public static final RegistryObject DEBUG_STAIRS = ITEMS.register("debug_stairs", () -> new Item(new Item.Properties().group(Strata.DEBUG_TAB))); - public static final RegistryObject DEBUG_WALL = ITEMS.register("debug_wall", () -> new Item(new Item.Properties().group(Strata.DEBUG_TAB))); - //public static final RegistryObject DEBUG_ORE = ITEMS.register("debug_ore", () -> new BlockItem(BlockList.DEBUG_ORE.get(), new Item.Properties().group(Strata.DEBUG_TAB))); -*/ - - /*Igneous Rocks*/ - - /*-Basalt-*/ - public static final RegistryObject BASALT = ITEMS.register("basalt", () -> new BlockItem(BlockList.BASALT.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject BASALT_SLAB = ITEMS.register("basalt_slab", () -> new BlockItem(BlockList.BASALT_SLAB.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject BASALT_STAIRS = ITEMS.register("basalt_stairs", () -> new BlockItem(BlockList.BASALT_STAIRS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject BASALT_WALL = ITEMS.register("basalt_wall", () -> new BlockItem(BlockList.BASALT_WALL.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - - //Buttons - public static final RegistryObject BASALT_BUTTON = ITEMS.register("basalt_button", () -> new BlockItem(BlockList.BASALT_BUTTON.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - - //Pressure Plates - public static final RegistryObject BASALT_PRESSURE_PLATE = ITEMS.register("basalt_pressure_plate", () -> new BlockItem(BlockList.BASALT_PRESSURE_PLATE.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - - //Bricks - public static final RegistryObject BASALT_BRICKS = ITEMS.register("basalt_bricks", () -> new BlockItem(BlockList.BASALT_BRICKS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject BASALT_BRICK_SLAB = ITEMS.register("basalt_brick_slab", () -> new BlockItem(BlockList.BASALT_BRICK_SLAB.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject BASALT_BRICK_STAIRS = ITEMS.register("basalt_brick_stairs", () -> new BlockItem(BlockList.BASALT_BRICK_STAIRS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject BASALT_BRICK_WALL = ITEMS.register("basalt_brick_wall", () -> new BlockItem(BlockList.BASALT_BRICK_WALL.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject CHISELED_BASALT_BRICKS = ITEMS.register("chiseled_basalt_bricks", () -> new BlockItem(BlockList.CHISELED_BASALT_BRICKS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject CRACKED_BASALT_BRICKS = ITEMS.register("cracked_basalt_bricks", () -> new BlockItem(BlockList.CRACKED_BASALT_BRICKS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject MOSSY_BASALT_BRICKS = ITEMS.register("mossy_basalt_bricks", () -> new BlockItem(BlockList.MOSSY_BASALT_BRICKS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject MOSSY_BASALT_BRICK_SLAB = ITEMS.register("mossy_basalt_brick_slab", () -> new BlockItem(BlockList.MOSSY_BASALT_BRICK_SLAB.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject MOSSY_BASALT_BRICK_STAIRS = ITEMS.register("mossy_basalt_brick_stairs", () -> new BlockItem(BlockList.MOSSY_BASALT_BRICK_STAIRS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject MOSSY_BASALT_BRICK_WALL = ITEMS.register("mossy_basalt_brick_wall", () -> new BlockItem(BlockList.MOSSY_BASALT_BRICK_WALL.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - - //Polished - public static final RegistryObject POLISHED_BASALT = ITEMS.register("polished_basalt", () -> new BlockItem(BlockList.POLISHED_BASALT.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject POLISHED_BASALT_SLAB = ITEMS.register("polished_basalt_slab", () -> new BlockItem(BlockList.POLISHED_BASALT_SLAB.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject POLISHED_BASALT_STAIRS = ITEMS.register("polished_basalt_stairs", () -> new BlockItem(BlockList.POLISHED_BASALT_STAIRS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - - /*-Gabbro-*/ - public static final RegistryObject GABBRO = ITEMS.register("gabbro", () -> new BlockItem(BlockList.GABBRO.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject GABBRO_SLAB = ITEMS.register("gabbro_slab", () -> new BlockItem(BlockList.GABBRO_SLAB.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject GABBRO_STAIRS = ITEMS.register("gabbro_stairs", () -> new BlockItem(BlockList.GABBRO_STAIRS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject GABBRO_WALL = ITEMS.register("gabbro_wall", () -> new BlockItem(BlockList.GABBRO_WALL.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - - //Buttons - public static final RegistryObject GABBRO_BUTTON = ITEMS.register("gabbro_button", () -> new BlockItem(BlockList.GABBRO_BUTTON.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - - //Pressure Plates - public static final RegistryObject GABBRO_PRESSURE_PLATE = ITEMS.register("gabbro_pressure_plate", () -> new BlockItem(BlockList.GABBRO_PRESSURE_PLATE.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - - //Bricks - public static final RegistryObject GABBRO_BRICKS = ITEMS.register("gabbro_bricks", () -> new BlockItem(BlockList.GABBRO_BRICKS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject GABBRO_BRICK_SLAB = ITEMS.register("gabbro_brick_slab", () -> new BlockItem(BlockList.GABBRO_BRICK_SLAB.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject GABBRO_BRICK_STAIRS = ITEMS.register("gabbro_brick_stairs", () -> new BlockItem(BlockList.GABBRO_BRICK_STAIRS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject GABBRO_BRICK_WALL = ITEMS.register("gabbro_brick_wall", () -> new BlockItem(BlockList.GABBRO_BRICK_WALL.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject CHISELED_GABBRO_BRICKS = ITEMS.register("chiseled_gabbro_bricks", () -> new BlockItem(BlockList.CHISELED_GABBRO_BRICKS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject CRACKED_GABBRO_BRICKS = ITEMS.register("cracked_gabbro_bricks", () -> new BlockItem(BlockList.CRACKED_GABBRO_BRICKS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject MOSSY_GABBRO_BRICKS = ITEMS.register("mossy_gabbro_bricks", () -> new BlockItem(BlockList.MOSSY_GABBRO_BRICKS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject MOSSY_GABBRO_BRICK_SLAB = ITEMS.register("mossy_gabbro_brick_slab", () -> new BlockItem(BlockList.MOSSY_GABBRO_BRICK_SLAB.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject MOSSY_GABBRO_BRICK_STAIRS = ITEMS.register("mossy_gabbro_brick_stairs", () -> new BlockItem(BlockList.MOSSY_GABBRO_BRICK_STAIRS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject MOSSY_GABBRO_BRICK_WALL = ITEMS.register("mossy_gabbro_brick_wall", () -> new BlockItem(BlockList.MOSSY_GABBRO_BRICK_WALL.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - - //Polished - public static final RegistryObject POLISHED_GABBRO = ITEMS.register("polished_gabbro", () -> new BlockItem(BlockList.POLISHED_GABBRO.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject POLISHED_GABBRO_SLAB = ITEMS.register("polished_gabbro_slab", () -> new BlockItem(BlockList.POLISHED_GABBRO_SLAB.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - public static final RegistryObject POLISHED_GABBRO_STAIRS = ITEMS.register("polished_gabbro_stairs", () -> new BlockItem(BlockList.POLISHED_GABBRO_STAIRS.get(), new Item.Properties().group(Strata.IGNEOUS_TAB))); - - /*Metamorphic Rocks*/ - - /*-Amphibolite-*/ - public static final RegistryObject AMPHIBOLITE = ITEMS.register("amphibolite", () -> new BlockItem(BlockList.AMPHIBOLITE.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject AMPHIBOLITE_SLAB = ITEMS.register("amphibolite_slab", () -> new BlockItem(BlockList.AMPHIBOLITE_SLAB.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject AMPHIBOLITE_STAIRS = ITEMS.register("amphibolite_stairs", () -> new BlockItem(BlockList.AMPHIBOLITE_STAIRS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject AMPHIBOLITE_WALL = ITEMS.register("amphibolite_wall", () -> new BlockItem(BlockList.AMPHIBOLITE_WALL.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - - //Buttons - public static final RegistryObject AMPHIBOLITE_BUTTON = ITEMS.register("amphibolite_button", () -> new BlockItem(BlockList.AMPHIBOLITE_BUTTON.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - - //Pressure Plates - public static final RegistryObject AMPHIBOLITE_PRESSURE_PLATE = ITEMS.register("amphibolite_pressure_plate", () -> new BlockItem(BlockList.AMPHIBOLITE_PRESSURE_PLATE.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - - //Bricks - public static final RegistryObject AMPHIBOLITE_BRICKS = ITEMS.register("amphibolite_bricks", () -> new BlockItem(BlockList.AMPHIBOLITE_BRICKS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject AMPHIBOLITE_BRICK_SLAB = ITEMS.register("amphibolite_brick_slab", () -> new BlockItem(BlockList.AMPHIBOLITE_BRICK_SLAB.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject AMPHIBOLITE_BRICK_STAIRS = ITEMS.register("amphibolite_brick_stairs", () -> new BlockItem(BlockList.AMPHIBOLITE_BRICK_STAIRS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject AMPHIBOLITE_BRICK_WALL = ITEMS.register("amphibolite_brick_wall", () -> new BlockItem(BlockList.AMPHIBOLITE_BRICK_WALL.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject CHISELED_AMPHIBOLITE_BRICKS = ITEMS.register("chiseled_amphibolite_bricks", () -> new BlockItem(BlockList.CHISELED_AMPHIBOLITE_BRICKS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject CRACKED_AMPHIBOLITE_BRICKS = ITEMS.register("cracked_amphibolite_bricks", () -> new BlockItem(BlockList.CRACKED_AMPHIBOLITE_BRICKS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject MOSSY_AMPHIBOLITE_BRICKS = ITEMS.register("mossy_amphibolite_bricks", () -> new BlockItem(BlockList.MOSSY_AMPHIBOLITE_BRICKS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject MOSSY_AMPHIBOLITE_BRICK_SLAB = ITEMS.register("mossy_amphibolite_brick_slab", () -> new BlockItem(BlockList.MOSSY_AMPHIBOLITE_BRICK_SLAB.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject MOSSY_AMPHIBOLITE_BRICK_STAIRS = ITEMS.register("mossy_amphibolite_brick_stairs", () -> new BlockItem(BlockList.MOSSY_AMPHIBOLITE_BRICK_STAIRS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject MOSSY_AMPHIBOLITE_BRICK_WALL = ITEMS.register("mossy_amphibolite_brick_wall", () -> new BlockItem(BlockList.MOSSY_AMPHIBOLITE_BRICK_WALL.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - - //Polished - public static final RegistryObject POLISHED_AMPHIBOLITE = ITEMS.register("polished_amphibolite", () -> new BlockItem(BlockList.POLISHED_AMPHIBOLITE.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject POLISHED_AMPHIBOLITE_SLAB = ITEMS.register("polished_amphibolite_slab", () -> new BlockItem(BlockList.POLISHED_AMPHIBOLITE_SLAB.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject POLISHED_AMPHIBOLITE_STAIRS = ITEMS.register("polished_amphibolite_stairs", () -> new BlockItem(BlockList.POLISHED_AMPHIBOLITE_STAIRS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - - /*-Gneiss-*/ - public static final RegistryObject GNEISS = ITEMS.register("gneiss", () -> new BlockItem(BlockList.GNEISS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject GNEISS_SLAB = ITEMS.register("gneiss_slab", () -> new BlockItem(BlockList.GNEISS_SLAB.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject GNEISS_STAIRS = ITEMS.register("gneiss_stairs", () -> new BlockItem(BlockList.GNEISS_STAIRS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject GNEISS_WALL = ITEMS.register("gneiss_wall", () -> new BlockItem(BlockList.GNEISS_WALL.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - - //Buttons - public static final RegistryObject GNEISS_BUTTON = ITEMS.register("gneiss_button", () -> new BlockItem(BlockList.GNEISS_BUTTON.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - - //Pressure Plates - public static final RegistryObject GNEISS_PRESSURE_PLATE = ITEMS.register("gneiss_pressure_plate", () -> new BlockItem(BlockList.GNEISS_PRESSURE_PLATE.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - - //Bricks - public static final RegistryObject GNEISS_BRICKS = ITEMS.register("gneiss_bricks", () -> new BlockItem(BlockList.GNEISS_BRICKS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject GNEISS_BRICK_SLAB = ITEMS.register("gneiss_brick_slab", () -> new BlockItem(BlockList.GNEISS_BRICK_SLAB.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject GNEISS_BRICK_STAIRS = ITEMS.register("gneiss_brick_stairs", () -> new BlockItem(BlockList.GNEISS_BRICK_STAIRS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject GNEISS_BRICK_WALL = ITEMS.register("gneiss_brick_wall", () -> new BlockItem(BlockList.GNEISS_BRICK_WALL.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject CHISELED_GNEISS_BRICKS = ITEMS.register("chiseled_gneiss_bricks", () -> new BlockItem(BlockList.CHISELED_GNEISS_BRICKS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject CRACKED_GNEISS_BRICKS = ITEMS.register("cracked_gneiss_bricks", () -> new BlockItem(BlockList.CRACKED_GNEISS_BRICKS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject MOSSY_GNEISS_BRICKS = ITEMS.register("mossy_gneiss_bricks", () -> new BlockItem(BlockList.MOSSY_GNEISS_BRICKS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject MOSSY_GNEISS_BRICK_SLAB = ITEMS.register("mossy_gneiss_brick_slab", () -> new BlockItem(BlockList.MOSSY_GNEISS_BRICK_SLAB.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject MOSSY_GNEISS_BRICK_STAIRS = ITEMS.register("mossy_gneiss_brick_stairs", () -> new BlockItem(BlockList.MOSSY_GNEISS_BRICK_STAIRS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject MOSSY_GNEISS_BRICK_WALL = ITEMS.register("mossy_gneiss_brick_wall", () -> new BlockItem(BlockList.MOSSY_GNEISS_BRICK_WALL.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - - //Polished - public static final RegistryObject POLISHED_GNEISS = ITEMS.register("polished_gneiss", () -> new BlockItem(BlockList.POLISHED_GNEISS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject POLISHED_GNEISS_SLAB = ITEMS.register("polished_gneiss_slab", () -> new BlockItem(BlockList.POLISHED_GNEISS_SLAB.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject POLISHED_GNEISS_STAIRS = ITEMS.register("polished_gneiss_stairs", () -> new BlockItem(BlockList.POLISHED_GNEISS_STAIRS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - - /*-Schist-*/ - public static final RegistryObject SCHIST = ITEMS.register("schist", () -> new BlockItem(BlockList.SCHIST.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject SCHIST_SLAB = ITEMS.register("schist_slab", () -> new BlockItem(BlockList.SCHIST_SLAB.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject SCHIST_STAIRS = ITEMS.register("schist_stairs", () -> new BlockItem(BlockList.SCHIST_STAIRS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject SCHIST_WALL = ITEMS.register("schist_wall", () -> new BlockItem(BlockList.SCHIST_WALL.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - - //Buttons - public static final RegistryObject SCHIST_BUTTON = ITEMS.register("schist_button", () -> new BlockItem(BlockList.SCHIST_BUTTON.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - - //Pressure Plates - public static final RegistryObject SCHIST_PRESSURE_PLATE = ITEMS.register("schist_pressure_plate", () -> new BlockItem(BlockList.SCHIST_PRESSURE_PLATE.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - - //Bricks - public static final RegistryObject SCHIST_BRICKS = ITEMS.register("schist_bricks", () -> new BlockItem(BlockList.SCHIST_BRICKS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject SCHIST_BRICK_SLAB = ITEMS.register("schist_brick_slab", () -> new BlockItem(BlockList.SCHIST_BRICK_SLAB.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject SCHIST_BRICK_STAIRS = ITEMS.register("schist_brick_stairs", () -> new BlockItem(BlockList.SCHIST_BRICK_STAIRS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject SCHIST_BRICK_WALL = ITEMS.register("schist_brick_wall", () -> new BlockItem(BlockList.SCHIST_BRICK_WALL.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject CHISELED_SCHIST_BRICKS = ITEMS.register("chiseled_schist_bricks", () -> new BlockItem(BlockList.CHISELED_SCHIST_BRICKS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject CRACKED_SCHIST_BRICKS = ITEMS.register("cracked_schist_bricks", () -> new BlockItem(BlockList.CRACKED_SCHIST_BRICKS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject MOSSY_SCHIST_BRICKS = ITEMS.register("mossy_schist_bricks", () -> new BlockItem(BlockList.MOSSY_SCHIST_BRICKS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject MOSSY_SCHIST_BRICK_SLAB = ITEMS.register("mossy_schist_brick_slab", () -> new BlockItem(BlockList.MOSSY_SCHIST_BRICK_SLAB.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject MOSSY_SCHIST_BRICK_STAIRS = ITEMS.register("mossy_schist_brick_stairs", () -> new BlockItem(BlockList.MOSSY_SCHIST_BRICK_STAIRS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject MOSSY_SCHIST_BRICK_WALL = ITEMS.register("mossy_schist_brick_wall", () -> new BlockItem(BlockList.MOSSY_SCHIST_BRICK_WALL.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - - //Polished - public static final RegistryObject POLISHED_SCHIST = ITEMS.register("polished_schist", () -> new BlockItem(BlockList.POLISHED_SCHIST.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject POLISHED_SCHIST_SLAB = ITEMS.register("polished_schist_slab", () -> new BlockItem(BlockList.POLISHED_SCHIST_SLAB.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - public static final RegistryObject POLISHED_SCHIST_STAIRS = ITEMS.register("polished_schist_stairs", () -> new BlockItem(BlockList.POLISHED_SCHIST_STAIRS.get(), new Item.Properties().group(Strata.METAMORPHIC_TAB))); - - /*Sedimentary Rocks*/ - - /*-Limestone-*/ - public static final RegistryObject LIMESTONE = ITEMS.register("limestone", () -> new BlockItem(BlockList.LIMESTONE.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject LIMESTONE_SLAB = ITEMS.register("limestone_slab", () -> new BlockItem(BlockList.LIMESTONE_SLAB.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject LIMESTONE_STAIRS = ITEMS.register("limestone_stairs", () -> new BlockItem(BlockList.LIMESTONE_STAIRS.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject LIMESTONE_WALL = ITEMS.register("limestone_wall", () -> new BlockItem(BlockList.LIMESTONE_WALL.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - - //Buttons - public static final RegistryObject LIMESTONE_BUTTON = ITEMS.register("limestone_button", () -> new BlockItem(BlockList.LIMESTONE_BUTTON.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - - //Pressure Plates - public static final RegistryObject LIMESTONE_PRESSURE_PLATE = ITEMS.register("limestone_pressure_plate", () -> new BlockItem(BlockList.LIMESTONE_PRESSURE_PLATE.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - - //Bricks - public static final RegistryObject LIMESTONE_BRICKS = ITEMS.register("limestone_bricks", () -> new BlockItem(BlockList.LIMESTONE_BRICKS.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject LIMESTONE_BRICK_SLAB = ITEMS.register("limestone_brick_slab", () -> new BlockItem(BlockList.LIMESTONE_BRICK_SLAB.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject LIMESTONE_BRICK_STAIRS = ITEMS.register("limestone_brick_stairs", () -> new BlockItem(BlockList.LIMESTONE_BRICK_STAIRS.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject LIMESTONE_BRICK_WALL = ITEMS.register("limestone_brick_wall", () -> new BlockItem(BlockList.LIMESTONE_BRICK_WALL.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject CHISELED_LIMESTONE_BRICKS = ITEMS.register("chiseled_limestone_bricks", () -> new BlockItem(BlockList.CHISELED_LIMESTONE_BRICKS.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject CRACKED_LIMESTONE_BRICKS = ITEMS.register("cracked_limestone_bricks", () -> new BlockItem(BlockList.CRACKED_LIMESTONE_BRICKS.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject MOSSY_LIMESTONE_BRICKS = ITEMS.register("mossy_limestone_bricks", () -> new BlockItem(BlockList.MOSSY_LIMESTONE_BRICKS.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject MOSSY_LIMESTONE_BRICK_SLAB = ITEMS.register("mossy_limestone_brick_slab", () -> new BlockItem(BlockList.MOSSY_LIMESTONE_BRICK_SLAB.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject MOSSY_LIMESTONE_BRICK_STAIRS = ITEMS.register("mossy_limestone_brick_stairs", () -> new BlockItem(BlockList.MOSSY_LIMESTONE_BRICK_STAIRS.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject MOSSY_LIMESTONE_BRICK_WALL = ITEMS.register("mossy_limestone_brick_wall", () -> new BlockItem(BlockList.MOSSY_LIMESTONE_BRICK_WALL.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - - //Polished - public static final RegistryObject POLISHED_LIMESTONE = ITEMS.register("polished_limestone", () -> new BlockItem(BlockList.POLISHED_LIMESTONE.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject POLISHED_LIMESTONE_SLAB = ITEMS.register("polished_limestone_slab", () -> new BlockItem(BlockList.POLISHED_LIMESTONE_SLAB.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject POLISHED_LIMESTONE_STAIRS = ITEMS.register("polished_limestone_stairs", () -> new BlockItem(BlockList.POLISHED_LIMESTONE_STAIRS.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - - /*-Shale-*/ - public static final RegistryObject SHALE = ITEMS.register("shale", () -> new BlockItem(BlockList.SHALE.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject SHALE_SLAB = ITEMS.register("shale_slab", () -> new BlockItem(BlockList.SHALE_SLAB.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject SHALE_STAIRS = ITEMS.register("shale_stairs", () -> new BlockItem(BlockList.SHALE_STAIRS.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject SHALE_WALL = ITEMS.register("shale_wall", () -> new BlockItem(BlockList.SHALE_WALL.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - - //Buttons - public static final RegistryObject SHALE_BUTTON = ITEMS.register("shale_button", () -> new BlockItem(BlockList.SHALE_BUTTON.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - - //Pressure Plates - public static final RegistryObject SHALE_PRESSURE_PLATE = ITEMS.register("shale_pressure_plate", () -> new BlockItem(BlockList.SHALE_PRESSURE_PLATE.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - - //Bricks - public static final RegistryObject SHALE_BRICKS = ITEMS.register("shale_bricks", () -> new BlockItem(BlockList.SHALE_BRICKS.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject SHALE_BRICK_SLAB = ITEMS.register("shale_brick_slab", () -> new BlockItem(BlockList.SHALE_BRICK_SLAB.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject SHALE_BRICK_STAIRS = ITEMS.register("shale_brick_stairs", () -> new BlockItem(BlockList.SHALE_BRICK_STAIRS.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject SHALE_BRICK_WALL = ITEMS.register("shale_brick_wall", () -> new BlockItem(BlockList.SHALE_BRICK_WALL.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject CHISELED_SHALE_BRICKS = ITEMS.register("chiseled_shale_bricks", () -> new BlockItem(BlockList.CHISELED_SHALE_BRICKS.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject CRACKED_SHALE_BRICKS = ITEMS.register("cracked_shale_bricks", () -> new BlockItem(BlockList.CRACKED_SHALE_BRICKS.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject MOSSY_SHALE_BRICKS = ITEMS.register("mossy_shale_bricks", () -> new BlockItem(BlockList.MOSSY_SHALE_BRICKS.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject MOSSY_SHALE_BRICK_SLAB = ITEMS.register("mossy_shale_brick_slab", () -> new BlockItem(BlockList.MOSSY_SHALE_BRICK_SLAB.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject MOSSY_SHALE_BRICK_STAIRS = ITEMS.register("mossy_shale_brick_stairs", () -> new BlockItem(BlockList.MOSSY_SHALE_BRICK_STAIRS.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject MOSSY_SHALE_BRICK_WALL = ITEMS.register("mossy_shale_brick_wall", () -> new BlockItem(BlockList.MOSSY_SHALE_BRICK_WALL.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - - //Polished - public static final RegistryObject POLISHED_SHALE = ITEMS.register("polished_shale", () -> new BlockItem(BlockList.POLISHED_SHALE.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject POLISHED_SHALE_SLAB = ITEMS.register("polished_shale_slab", () -> new BlockItem(BlockList.POLISHED_SHALE_SLAB.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); - public static final RegistryObject POLISHED_SHALE_STAIRS = ITEMS.register("polished_shale_stairs", () -> new BlockItem(BlockList.POLISHED_SHALE_STAIRS.get(), new Item.Properties().group(Strata.SEDIMENTARY_TAB))); -} diff --git a/src/test/java/com/quizer9o8/strata/objects/blocks/StrataButtonBlock.java b/src/test/java/com/quizer9o8/strata/objects/blocks/StrataButtonBlock.java deleted file mode 100644 index c0537a6b..00000000 --- a/src/test/java/com/quizer9o8/strata/objects/blocks/StrataButtonBlock.java +++ /dev/null @@ -1,11 +0,0 @@ -package com.quizer9o8.strata.objects.blocks; - -import net.minecraft.block.BlockState; -import net.minecraft.block.StoneButtonBlock; - -public class StrataButtonBlock extends StoneButtonBlock -{ - public StrataButtonBlock(Properties properties) { - super(properties); - } -} diff --git a/src/test/java/com/quizer9o8/strata/objects/blocks/StrataOreBlock.java b/src/test/java/com/quizer9o8/strata/objects/blocks/StrataOreBlock.java deleted file mode 100644 index 01299af2..00000000 --- a/src/test/java/com/quizer9o8/strata/objects/blocks/StrataOreBlock.java +++ /dev/null @@ -1,13 +0,0 @@ -package com.quizer9o8.strata.objects.blocks; - -import net.minecraft.block.OreBlock; -import net.minecraft.util.math.MathHelper; - -import java.util.Random; - -public class StrataOreBlock extends OreBlock -{ - public StrataOreBlock(Properties properties) { - super(properties); - } -} diff --git a/src/test/java/com/quizer9o8/strata/objects/blocks/StrataPressurePlateBlock.java b/src/test/java/com/quizer9o8/strata/objects/blocks/StrataPressurePlateBlock.java deleted file mode 100644 index 570a19dc..00000000 --- a/src/test/java/com/quizer9o8/strata/objects/blocks/StrataPressurePlateBlock.java +++ /dev/null @@ -1,10 +0,0 @@ -package com.quizer9o8.strata.objects.blocks; - -import net.minecraft.block.PressurePlateBlock; - -public class StrataPressurePlateBlock extends PressurePlateBlock { - - public StrataPressurePlateBlock(Sensitivity sensitivityIn, Properties propertiesIn) { - super(sensitivityIn, propertiesIn); - } -} diff --git a/src/test/java/com/quizer9o8/strata/objects/blocks/StrataStairsBlock.java b/src/test/java/com/quizer9o8/strata/objects/blocks/StrataStairsBlock.java deleted file mode 100644 index 8e4d2f0e..00000000 --- a/src/test/java/com/quizer9o8/strata/objects/blocks/StrataStairsBlock.java +++ /dev/null @@ -1,11 +0,0 @@ -package com.quizer9o8.strata.objects.blocks; - -import net.minecraft.block.BlockState; -import net.minecraft.block.StairsBlock; - -public class StrataStairsBlock extends StairsBlock -{ - public StrataStairsBlock(BlockState state, Properties properties) { - super(state, properties); - } -} diff --git a/src/test/java/com/quizer9o8/strata/world/gen/StrataGeneration.java b/src/test/java/com/quizer9o8/strata/world/gen/StrataGeneration.java deleted file mode 100644 index a78b2f45..00000000 --- a/src/test/java/com/quizer9o8/strata/world/gen/StrataGeneration.java +++ /dev/null @@ -1,326 +0,0 @@ - -package com.quizer9o8.strata.world.gen; - -import com.quizer9o8.strata.list.BlockList; -import net.minecraft.world.biome.Biome; -import net.minecraft.world.biome.Biomes; -import net.minecraft.world.gen.GenerationStage; -import net.minecraft.world.gen.feature.Feature; -import net.minecraft.world.gen.feature.OreFeatureConfig; -import net.minecraft.world.gen.placement.CountRangeConfig; -import net.minecraft.world.gen.placement.Placement; -import net.minecraftforge.registries.ForgeRegistries; - -public class StrataGeneration -{ - private static void setupOreGeneration(){ - - - //size = maximum amount of that said block to generate in the world - //count = how common that said block will be in your world. The higher - -/* Unused for now... - //Gabbro - - for(Biome biome : ForgeRegistries.BIOMES) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 33)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(20, 0, 0, 128)))); - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.OCEAN) { - - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.FROZEN_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.COLD_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.DEEP_COLD_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.DEEP_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.LUKEWARM_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.DEEP_LUKEWARM_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.WARM_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.DEEP_WARM_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(23, 0, 0, 128)))); - } - } - - // Basalt - - for(Biome biome : ForgeRegistries.BIOMES) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 33)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(10, 0, 0, 128)))); - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.OCEAN) { - - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.FROZEN_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.COLD_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.DEEP_COLD_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.DEEP_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.LUKEWARM_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.DEEP_LUKEWARM_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.WARM_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - - for(Biome biome : ForgeRegistries.BIOMES) { - if (biome == Biomes.DEEP_WARM_OCEAN) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GABBRO.get().getDefaultState(), 66)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(30, 0, 0, 128)))); - } - } - - //Gneiss - - for(Biome biome : ForgeRegistries.BIOMES) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.GNEISS.get().getDefaultState(), 33)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(20, 0, 0, 128)))); - } - - //Schist - - for(Biome biome : ForgeRegistries.BIOMES) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.SCHIST.get().getDefaultState(), 33)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(20, 0, 0, 128)))); - } - - //Amphibolite - - for(Biome biome : ForgeRegistries.BIOMES) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.AMPHIBOLITE.get().getDefaultState(), 33)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(20, 0, 0, 128)))); - } - - //Limestone - - for(Biome biome : ForgeRegistries.BIOMES) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.LIMESTONE.get().getDefaultState(), 33)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(20, 0, 0, 128)))); - } - - //Shale - - for(Biome biome : ForgeRegistries.BIOMES) { - biome.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, - Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, - BlockList.SHALE.get().getDefaultState(), 33)) - .withPlacement(Placement.COUNT_RANGE.configure(new CountRangeConfig(20, 0, 0, 128)))); - }*/ - - } - - public static void generate() { - setupOreGeneration(); - } -} - diff --git a/src/test/resources/META-INF/mods.toml b/src/test/resources/META-INF/mods.toml deleted file mode 100644 index fb919b5e..00000000 --- a/src/test/resources/META-INF/mods.toml +++ /dev/null @@ -1,44 +0,0 @@ -modLoader="javafml" #mandatory - -loaderVersion="[31,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions. - -issueTrackerURL="https://github.com/Quizer9O8/Strata/issues" #optional - -[[mods]] #mandatory - -modId="strata" #mandatory - -version="1.0.2" #mandatory - -displayName="Strata" #mandatory - -updateJSONURL="http://myurl.me/" #optional - -displayURL="" #optional - -logoFile="strata.png" #optional - -credits="Quizer9O8" #optional - -authors="Quizer9O8" #optional - -description='''Strata is a mod that adds various types of rocks into the game. It changes the look and feel of the game and gives you a plethora of blocks to interact with.''' - -[[dependencies.examplemod]] #optional - # the modid of the dependency - modId="forge" #mandatory - # Does this dependency have to exist - if not, ordering below must be specified - mandatory=true #mandatory - # The version range of the dependency - versionRange="[31,)" #mandatory - # An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory - ordering="NONE" - # Side this dependency is applied on - BOTH, CLIENT or SERVER - side="BOTH" - -[[dependencies.examplemod]] - modId="minecraft" - mandatory=true - versionRange="[1.15.2]" - ordering="NONE" - side="BOTH" diff --git a/src/test/resources/assets/strata/blockstates/aa.json b/src/test/resources/assets/strata/blockstates/aa.json deleted file mode 100644 index 662f4600..00000000 --- a/src/test/resources/assets/strata/blockstates/aa.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/aa" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/aa_brick_slab.json b/src/test/resources/assets/strata/blockstates/aa_brick_slab.json deleted file mode 100644 index da47cddc..00000000 --- a/src/test/resources/assets/strata/blockstates/aa_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/aa_brick_slab" }, - "type=top": { "model": "strata:block/aa_brick_slab_top" }, - "type=double": { "model": "strata:block/aa_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/aa_brick_stairs.json b/src/test/resources/assets/strata/blockstates/aa_brick_stairs.json deleted file mode 100644 index f51bad03..00000000 --- a/src/test/resources/assets/strata/blockstates/aa_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/aa_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/aa_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/aa_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/aa_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/aa_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/aa_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/aa_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/aa_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/aa_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/aa_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/aa_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/aa_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/aa_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/aa_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/aa_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/aa_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/aa_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/aa_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/aa_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/aa_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/aa_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/aa_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/aa_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/aa_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/aa_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/aa_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/aa_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/aa_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/aa_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/aa_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/aa_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/aa_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/aa_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/aa_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/aa_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/aa_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/aa_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/aa_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/aa_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/aa_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/aa_brick_wall.json b/src/test/resources/assets/strata/blockstates/aa_brick_wall.json deleted file mode 100644 index 9b376a9b..00000000 --- a/src/test/resources/assets/strata/blockstates/aa_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/aa_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/aa_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/aa_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/aa_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/aa_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/aa_bricks.json b/src/test/resources/assets/strata/blockstates/aa_bricks.json deleted file mode 100644 index 3bc73276..00000000 --- a/src/test/resources/assets/strata/blockstates/aa_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/aa_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/aa_button.json b/src/test/resources/assets/strata/blockstates/aa_button.json deleted file mode 100644 index e814e339..00000000 --- a/src/test/resources/assets/strata/blockstates/aa_button.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "variants": { - "face=floor,facing=east,powered=false": { "model": "strata:block/aa_button", "y": 90 }, - "face=floor,facing=west,powered=false": { "model": "strata:block/aa_button", "y": 270 }, - "face=floor,facing=south,powered=false": { "model": "strata:block/aa_button", "y": 180 }, - "face=floor,facing=north,powered=false": { "model": "strata:block/aa_button" }, - "face=wall,facing=east,powered=false": { "model": "strata:block/aa_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=false": { "model": "strata:block/aa_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=false": { "model": "strata:block/aa_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=false": { "model": "strata:block/aa_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=false": { "model": "strata:block/aa_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=false": { "model": "strata:block/aa_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=false": { "model": "strata:block/aa_button", "x": 180 }, - "face=ceiling,facing=north,powered=false": { "model": "strata:block/aa_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/aa_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/aa_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/aa_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/aa_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/aa_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/aa_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/aa_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/aa_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/aa_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/aa_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/aa_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/aa_button", "x": 180, "y": 180 } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/aa_cobblestone.json b/src/test/resources/assets/strata/blockstates/aa_cobblestone.json deleted file mode 100644 index b8beb235..00000000 --- a/src/test/resources/assets/strata/blockstates/aa_cobblestone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/aa_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/aa_cobblestone_slab.json b/src/test/resources/assets/strata/blockstates/aa_cobblestone_slab.json deleted file mode 100644 index a791060e..00000000 --- a/src/test/resources/assets/strata/blockstates/aa_cobblestone_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/aa_cobblestone_slab" }, - "type=top": { "model": "strata:block/aa_cobblestone_slab_top" }, - "type=double": { "model": "strata:block/aa_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/aa_cobblestone_stairs.json b/src/test/resources/assets/strata/blockstates/aa_cobblestone_stairs.json deleted file mode 100644 index f27e1201..00000000 --- a/src/test/resources/assets/strata/blockstates/aa_cobblestone_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/aa_cobblestone_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/aa_cobblestone_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/aa_cobblestone_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/aa_cobblestone_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/aa_cobblestone_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/aa_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/aa_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/aa_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/aa_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/aa_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/aa_cobblestone_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/aa_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/aa_cobblestone_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/aa_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/aa_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/aa_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/aa_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/aa_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/aa_cobblestone_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/aa_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/aa_cobblestone_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/aa_cobblestone_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/aa_cobblestone_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/aa_cobblestone_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/aa_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/aa_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/aa_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/aa_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/aa_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/aa_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/aa_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/aa_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/aa_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/aa_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/aa_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/aa_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/aa_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/aa_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/aa_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/aa_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/aa_cobblestone_wall.json b/src/test/resources/assets/strata/blockstates/aa_cobblestone_wall.json deleted file mode 100644 index c7147505..00000000 --- a/src/test/resources/assets/strata/blockstates/aa_cobblestone_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/aa_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/aa_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/aa_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/aa_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/aa_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/aa_pressure_plate.json b/src/test/resources/assets/strata/blockstates/aa_pressure_plate.json deleted file mode 100644 index b567edab..00000000 --- a/src/test/resources/assets/strata/blockstates/aa_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "variants": { - "powered=false": { "model": "strata:block/jaspillite_pressure_plate" }, - "powered=true": { "model": "strata:block/jaspillite_pressure_plate_down" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/aa_slab.json b/src/test/resources/assets/strata/blockstates/aa_slab.json deleted file mode 100644 index d4cdcb6f..00000000 --- a/src/test/resources/assets/strata/blockstates/aa_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/aa_slab" }, - "type=top": { "model": "strata:block/aa_slab_top" }, - "type=double": { "model": "strata:block/aa" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/aa_stairs.json b/src/test/resources/assets/strata/blockstates/aa_stairs.json deleted file mode 100644 index 583be578..00000000 --- a/src/test/resources/assets/strata/blockstates/aa_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/aa_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/aa_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/aa_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/aa_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/aa_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/aa_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/aa_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/aa_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/aa_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/aa_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/aa_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/aa_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/aa_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/aa_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/aa_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/aa_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/aa_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/aa_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/aa_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/aa_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/aa_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/aa_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/aa_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/aa_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/aa_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/aa_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/aa_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/aa_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/aa_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/aa_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/aa_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/aa_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/aa_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/aa_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/aa_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/aa_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/aa_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/aa_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/aa_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/aa_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/aa_wall.json b/src/test/resources/assets/strata/blockstates/aa_wall.json deleted file mode 100644 index 92d2115d..00000000 --- a/src/test/resources/assets/strata/blockstates/aa_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/aa_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/aa_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/aa_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/aa_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/aa_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/test/resources/assets/strata/blockstates/adakite.json b/src/test/resources/assets/strata/blockstates/adakite.json deleted file mode 100644 index b38b03bb..00000000 --- a/src/test/resources/assets/strata/blockstates/adakite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/adakite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/adakite_brick_slab.json b/src/test/resources/assets/strata/blockstates/adakite_brick_slab.json deleted file mode 100644 index 030650d4..00000000 --- a/src/test/resources/assets/strata/blockstates/adakite_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/adakite_brick_slab" }, - "type=top": { "model": "strata:block/adakite_brick_slab_top" }, - "type=double": { "model": "strata:block/adakite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/adakite_brick_stairs.json b/src/test/resources/assets/strata/blockstates/adakite_brick_stairs.json deleted file mode 100644 index aec128c0..00000000 --- a/src/test/resources/assets/strata/blockstates/adakite_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/adakite_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/adakite_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/adakite_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/adakite_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/adakite_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/adakite_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/adakite_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/adakite_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/adakite_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/adakite_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/adakite_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/adakite_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/adakite_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/adakite_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/adakite_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/adakite_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/adakite_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/adakite_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/adakite_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/adakite_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/adakite_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/adakite_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/adakite_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/adakite_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/adakite_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/adakite_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/adakite_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/adakite_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/adakite_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/adakite_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/adakite_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/adakite_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/adakite_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/adakite_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/adakite_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/adakite_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/adakite_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/adakite_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/adakite_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/adakite_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/adakite_brick_wall.json b/src/test/resources/assets/strata/blockstates/adakite_brick_wall.json deleted file mode 100644 index cac9d0b7..00000000 --- a/src/test/resources/assets/strata/blockstates/adakite_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/adakite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/adakite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/adakite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/adakite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/adakite_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/adakite_bricks.json b/src/test/resources/assets/strata/blockstates/adakite_bricks.json deleted file mode 100644 index 4c161eb8..00000000 --- a/src/test/resources/assets/strata/blockstates/adakite_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/adakite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/adakite_button.json b/src/test/resources/assets/strata/blockstates/adakite_button.json deleted file mode 100644 index b8f82cb8..00000000 --- a/src/test/resources/assets/strata/blockstates/adakite_button.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "variants": { - "face=floor,facing=east,powered=false": { "model": "strata:block/adakite_button", "y": 90 }, - "face=floor,facing=west,powered=false": { "model": "strata:block/adakite_button", "y": 270 }, - "face=floor,facing=south,powered=false": { "model": "strata:block/adakite_button", "y": 180 }, - "face=floor,facing=north,powered=false": { "model": "strata:block/adakite_button" }, - "face=wall,facing=east,powered=false": { "model": "strata:block/adakite_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=false": { "model": "strata:block/adakite_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=false": { "model": "strata:block/adakite_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=false": { "model": "strata:block/adakite_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=false": { "model": "strata:block/adakite_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=false": { "model": "strata:block/adakite_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=false": { "model": "strata:block/adakite_button", "x": 180 }, - "face=ceiling,facing=north,powered=false": { "model": "strata:block/adakite_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/adakite_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/adakite_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/adakite_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/adakite_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/adakite_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/adakite_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/adakite_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/adakite_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/adakite_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/adakite_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/adakite_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/adakite_button", "x": 180, "y": 180 } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/adakite_cobblestone.json b/src/test/resources/assets/strata/blockstates/adakite_cobblestone.json deleted file mode 100644 index 5445b50f..00000000 --- a/src/test/resources/assets/strata/blockstates/adakite_cobblestone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/adakite_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/adakite_cobblestone_slab.json b/src/test/resources/assets/strata/blockstates/adakite_cobblestone_slab.json deleted file mode 100644 index c2174c12..00000000 --- a/src/test/resources/assets/strata/blockstates/adakite_cobblestone_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/adakite_cobblestone_slab" }, - "type=top": { "model": "strata:block/adakite_cobblestone_slab_top" }, - "type=double": { "model": "strata:block/adakite_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/adakite_cobblestone_stairs.json b/src/test/resources/assets/strata/blockstates/adakite_cobblestone_stairs.json deleted file mode 100644 index 4d20af0e..00000000 --- a/src/test/resources/assets/strata/blockstates/adakite_cobblestone_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/adakite_cobblestone_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/adakite_cobblestone_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/adakite_cobblestone_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/adakite_cobblestone_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/adakite_cobblestone_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/adakite_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/adakite_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/adakite_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/adakite_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/adakite_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/adakite_cobblestone_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/adakite_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/adakite_cobblestone_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/adakite_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/adakite_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/adakite_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/adakite_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/adakite_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/adakite_cobblestone_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/adakite_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/adakite_cobblestone_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/adakite_cobblestone_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/adakite_cobblestone_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/adakite_cobblestone_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/adakite_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/adakite_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/adakite_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/adakite_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/adakite_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/adakite_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/adakite_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/adakite_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/adakite_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/adakite_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/adakite_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/adakite_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/adakite_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/adakite_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/adakite_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/adakite_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/adakite_cobblestone_wall.json b/src/test/resources/assets/strata/blockstates/adakite_cobblestone_wall.json deleted file mode 100644 index 74c7b07e..00000000 --- a/src/test/resources/assets/strata/blockstates/adakite_cobblestone_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/adakite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/adakite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/adakite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/adakite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/adakite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/adakite_slab.json b/src/test/resources/assets/strata/blockstates/adakite_slab.json deleted file mode 100644 index f2456c1a..00000000 --- a/src/test/resources/assets/strata/blockstates/adakite_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/adakite_slab" }, - "type=top": { "model": "strata:block/adakite_slab_top" }, - "type=double": { "model": "strata:block/adakite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/adakite_stairs.json b/src/test/resources/assets/strata/blockstates/adakite_stairs.json deleted file mode 100644 index ffa5b6ae..00000000 --- a/src/test/resources/assets/strata/blockstates/adakite_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/adakite_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/adakite_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/adakite_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/adakite_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/adakite_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/adakite_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/adakite_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/adakite_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/adakite_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/adakite_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/adakite_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/adakite_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/adakite_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/adakite_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/adakite_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/adakite_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/adakite_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/adakite_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/adakite_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/adakite_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/adakite_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/adakite_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/adakite_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/adakite_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/adakite_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/adakite_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/adakite_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/adakite_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/adakite_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/adakite_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/adakite_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/adakite_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/adakite_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/adakite_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/adakite_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/adakite_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/adakite_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/adakite_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/adakite_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/adakite_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/adakite_wall.json b/src/test/resources/assets/strata/blockstates/adakite_wall.json deleted file mode 100644 index 76b076fc..00000000 --- a/src/test/resources/assets/strata/blockstates/adakite_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/adakite_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/adakite_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/adakite_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/adakite_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/adakite_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/adamellite.json b/src/test/resources/assets/strata/blockstates/adamellite.json deleted file mode 100644 index 520999ab..00000000 --- a/src/test/resources/assets/strata/blockstates/adamellite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/soapstone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/alkali_fieldspar_granite.json b/src/test/resources/assets/strata/blockstates/alkali_fieldspar_granite.json deleted file mode 100644 index e83f41b5..00000000 --- a/src/test/resources/assets/strata/blockstates/alkali_fieldspar_granite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/alkali_fieldspar_granite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/amphibolite.json b/src/test/resources/assets/strata/blockstates/amphibolite.json deleted file mode 100644 index a9112e57..00000000 --- a/src/test/resources/assets/strata/blockstates/amphibolite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/amphibolite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/amphibolite_brick_slab.json b/src/test/resources/assets/strata/blockstates/amphibolite_brick_slab.json deleted file mode 100644 index fb4a326e..00000000 --- a/src/test/resources/assets/strata/blockstates/amphibolite_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/amphibolite_brick_slab" }, - "type=top": { "model": "strata:block/amphibolite_brick_slab_top" }, - "type=double": { "model": "strata:block/amphibolite_brick" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/amphibolite_brick_stairs.json b/src/test/resources/assets/strata/blockstates/amphibolite_brick_stairs.json deleted file mode 100644 index d9c1e41f..00000000 --- a/src/test/resources/assets/strata/blockstates/amphibolite_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/amphibolite_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/amphibolite_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/amphibolite_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/amphibolite_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/amphibolite_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/amphibolite_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/amphibolite_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/amphibolite_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/amphibolite_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/amphibolite_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/amphibolite_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/amphibolite_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/amphibolite_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/amphibolite_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/amphibolite_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/amphibolite_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/amphibolite_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/amphibolite_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/amphibolite_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/amphibolite_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/amphibolite_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/amphibolite_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/amphibolite_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/amphibolite_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/amphibolite_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/amphibolite_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/amphibolite_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/amphibolite_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/amphibolite_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/amphibolite_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/amphibolite_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/amphibolite_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/amphibolite_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/amphibolite_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/amphibolite_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/amphibolite_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/amphibolite_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/amphibolite_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/amphibolite_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/amphibolite_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/amphibolite_brick_wall.json b/src/test/resources/assets/strata/blockstates/amphibolite_brick_wall.json deleted file mode 100644 index b7bafe76..00000000 --- a/src/test/resources/assets/strata/blockstates/amphibolite_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/amphibolite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/amphibolite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/amphibolite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/amphibolite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/amphibolite_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/test/resources/assets/strata/blockstates/amphibolite_bricks.json b/src/test/resources/assets/strata/blockstates/amphibolite_bricks.json deleted file mode 100644 index b8543bce..00000000 --- a/src/test/resources/assets/strata/blockstates/amphibolite_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/amphibolite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/amphibolite_button.json b/src/test/resources/assets/strata/blockstates/amphibolite_button.json deleted file mode 100644 index 9259ef91..00000000 --- a/src/test/resources/assets/strata/blockstates/amphibolite_button.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "variants": { - "face=floor,facing=east,powered=false": { "model": "strata:block/amphibolite_button", "y": 90 }, - "face=floor,facing=west,powered=false": { "model": "strata:block/amphibolite_button", "y": 270 }, - "face=floor,facing=south,powered=false": { "model": "strata:block/amphibolite_button", "y": 180 }, - "face=floor,facing=north,powered=false": { "model": "strata:block/amphibolite_button" }, - "face=wall,facing=east,powered=false": { "model": "strata:block/amphibolite_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=false": { "model": "strata:block/amphibolite_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=false": { "model": "strata:block/amphibolite_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=false": { "model": "strata:block/amphibolite_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=false": { "model": "strata:block/amphibolite_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=false": { "model": "strata:block/amphibolite_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=false": { "model": "strata:block/amphibolite_button", "x": 180 }, - "face=ceiling,facing=north,powered=false": { "model": "strata:block/amphibolite_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/amphibolite_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/amphibolite_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/amphibolite_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/amphibolite_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/amphibolite_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/amphibolite_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/amphibolite_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/amphibolite_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/amphibolite_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/amphibolite_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/amphibolite_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/amphibolite_button", "x": 180, "y": 180 } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/amphibolite_pressure_plate.json b/src/test/resources/assets/strata/blockstates/amphibolite_pressure_plate.json deleted file mode 100644 index d84e9f5b..00000000 --- a/src/test/resources/assets/strata/blockstates/amphibolite_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "variants": { - "powered=false": { "model": "strata:block/amphibolite_pressure_plate" }, - "powered=true": { "model": "strata:block/amphibolite_pressure_plate_down" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/amphibolite_slab.json b/src/test/resources/assets/strata/blockstates/amphibolite_slab.json deleted file mode 100644 index b64ee0ea..00000000 --- a/src/test/resources/assets/strata/blockstates/amphibolite_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/amphibolite_slab" }, - "type=top": { "model": "strata:block/amphibolite_slab_top" }, - "type=double": { "model": "strata:block/amphibolite" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/amphibolite_stairs.json b/src/test/resources/assets/strata/blockstates/amphibolite_stairs.json deleted file mode 100644 index ae160823..00000000 --- a/src/test/resources/assets/strata/blockstates/amphibolite_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/amphibolite_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/amphibolite_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/amphibolite_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/amphibolite_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/amphibolite_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/amphibolite_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/amphibolite_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/amphibolite_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/amphibolite_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/amphibolite_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/amphibolite_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/amphibolite_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/amphibolite_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/amphibolite_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/amphibolite_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/amphibolite_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/amphibolite_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/amphibolite_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/amphibolite_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/amphibolite_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/amphibolite_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/amphibolite_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/amphibolite_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/amphibolite_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/amphibolite_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/amphibolite_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/amphibolite_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/amphibolite_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/amphibolite_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/amphibolite_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/amphibolite_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/amphibolite_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/amphibolite_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/amphibolite_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/amphibolite_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/amphibolite_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/amphibolite_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/amphibolite_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/amphibolite_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/amphibolite_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/amphibolite_wall.json b/src/test/resources/assets/strata/blockstates/amphibolite_wall.json deleted file mode 100644 index 151a498b..00000000 --- a/src/test/resources/assets/strata/blockstates/amphibolite_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/amphibolite_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/amphibolite_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/amphibolite_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/amphibolite_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/amphibolite_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/test/resources/assets/strata/blockstates/anorthosite.json b/src/test/resources/assets/strata/blockstates/anorthosite.json deleted file mode 100644 index aeef7420..00000000 --- a/src/test/resources/assets/strata/blockstates/anorthosite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/anorthosite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/anthracite.json b/src/test/resources/assets/strata/blockstates/anthracite.json deleted file mode 100644 index 534e286d..00000000 --- a/src/test/resources/assets/strata/blockstates/anthracite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/anthracite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/aphanite.json b/src/test/resources/assets/strata/blockstates/aphanite.json deleted file mode 100644 index aa4c2179..00000000 --- a/src/test/resources/assets/strata/blockstates/aphanite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/aphanite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/aplite.json b/src/test/resources/assets/strata/blockstates/aplite.json deleted file mode 100644 index 8bbd6dfd..00000000 --- a/src/test/resources/assets/strata/blockstates/aplite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/aplite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/appinite.json b/src/test/resources/assets/strata/blockstates/appinite.json deleted file mode 100644 index 27bd35f7..00000000 --- a/src/test/resources/assets/strata/blockstates/appinite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/appinite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/argillite.json b/src/test/resources/assets/strata/blockstates/argillite.json deleted file mode 100644 index 89079210..00000000 --- a/src/test/resources/assets/strata/blockstates/argillite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/argillite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/argillite_brick_slab.json b/src/test/resources/assets/strata/blockstates/argillite_brick_slab.json deleted file mode 100644 index cc2872f9..00000000 --- a/src/test/resources/assets/strata/blockstates/argillite_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/argillite_brick_slab" }, - "type=top": { "model": "strata:block/argillite_brick_slab_top" }, - "type=double": { "model": "strata:block/argillite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/argillite_brick_stairs.json b/src/test/resources/assets/strata/blockstates/argillite_brick_stairs.json deleted file mode 100644 index 327b7a84..00000000 --- a/src/test/resources/assets/strata/blockstates/argillite_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/argillite_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/argillite_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/argillite_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/argillite_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/argillite_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/argillite_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/argillite_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/argillite_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/argillite_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/argillite_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/argillite_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/argillite_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/argillite_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/argillite_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/argillite_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/argillite_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/argillite_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/argillite_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/argillite_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/argillite_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/argillite_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/argillite_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/argillite_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/argillite_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/argillite_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/argillite_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/argillite_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/argillite_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/argillite_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/argillite_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/argillite_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/argillite_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/argillite_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/argillite_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/argillite_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/argillite_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/argillite_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/argillite_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/argillite_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/argillite_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/argillite_brick_wall.json b/src/test/resources/assets/strata/blockstates/argillite_brick_wall.json deleted file mode 100644 index c2e87a2e..00000000 --- a/src/test/resources/assets/strata/blockstates/argillite_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/argillite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/argillite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/argillite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/argillite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/argillite_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/argillite_bricks.json b/src/test/resources/assets/strata/blockstates/argillite_bricks.json deleted file mode 100644 index e023d795..00000000 --- a/src/test/resources/assets/strata/blockstates/argillite_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/argillite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/argillite_button.json b/src/test/resources/assets/strata/blockstates/argillite_button.json deleted file mode 100644 index 149b0fb8..00000000 --- a/src/test/resources/assets/strata/blockstates/argillite_button.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "variants": { - "face=floor,facing=east,powered=false": { "model": "strata:block/argillite_button", "y": 90 }, - "face=floor,facing=west,powered=false": { "model": "strata:block/argillite_button", "y": 270 }, - "face=floor,facing=south,powered=false": { "model": "strata:block/argillite_button", "y": 180 }, - "face=floor,facing=north,powered=false": { "model": "strata:block/argillite_button" }, - "face=wall,facing=east,powered=false": { "model": "strata:block/argillite_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=false": { "model": "strata:block/argillite_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=false": { "model": "strata:block/argillite_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=false": { "model": "strata:block/argillite_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=false": { "model": "strata:block/argillite_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=false": { "model": "strata:block/argillite_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=false": { "model": "strata:block/argillite_button", "x": 180 }, - "face=ceiling,facing=north,powered=false": { "model": "strata:block/argillite_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/argillite_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/argillite_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/argillite_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/argillite_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/argillite_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/argillite_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/argillite_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/argillite_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/argillite_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/argillite_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/argillite_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/argillite_button", "x": 180, "y": 180 } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/argillite_cobblestone.json b/src/test/resources/assets/strata/blockstates/argillite_cobblestone.json deleted file mode 100644 index 6008de71..00000000 --- a/src/test/resources/assets/strata/blockstates/argillite_cobblestone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/argillite_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/argillite_cobblestone_slab.json b/src/test/resources/assets/strata/blockstates/argillite_cobblestone_slab.json deleted file mode 100644 index 3fb8de5b..00000000 --- a/src/test/resources/assets/strata/blockstates/argillite_cobblestone_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/argillite_cobblestone_slab" }, - "type=top": { "model": "strata:block/argillite_cobblestone_slab_top" }, - "type=double": { "model": "strata:block/argillite_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/argillite_cobblestone_stairs.json b/src/test/resources/assets/strata/blockstates/argillite_cobblestone_stairs.json deleted file mode 100644 index 4828615e..00000000 --- a/src/test/resources/assets/strata/blockstates/argillite_cobblestone_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/argillite_cobblestone_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/argillite_cobblestone_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/argillite_cobblestone_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/argillite_cobblestone_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/argillite_cobblestone_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/argillite_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/argillite_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/argillite_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/argillite_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/argillite_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/argillite_cobblestone_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/argillite_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/argillite_cobblestone_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/argillite_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/argillite_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/argillite_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/argillite_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/argillite_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/argillite_cobblestone_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/argillite_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/argillite_cobblestone_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/argillite_cobblestone_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/argillite_cobblestone_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/argillite_cobblestone_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/argillite_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/argillite_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/argillite_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/argillite_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/argillite_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/argillite_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/argillite_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/argillite_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/argillite_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/argillite_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/argillite_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/argillite_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/argillite_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/argillite_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/argillite_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/argillite_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/argillite_cobblestone_wall.json b/src/test/resources/assets/strata/blockstates/argillite_cobblestone_wall.json deleted file mode 100644 index 922d4f0c..00000000 --- a/src/test/resources/assets/strata/blockstates/argillite_cobblestone_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/argillite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/argillite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/argillite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/argillite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/argillite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/argillite_slab.json b/src/test/resources/assets/strata/blockstates/argillite_slab.json deleted file mode 100644 index 13bfc24e..00000000 --- a/src/test/resources/assets/strata/blockstates/argillite_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/argillite_slab" }, - "type=top": { "model": "strata:block/argillite_slab_top" }, - "type=double": { "model": "strata:block/argillite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/argillite_stairs.json b/src/test/resources/assets/strata/blockstates/argillite_stairs.json deleted file mode 100644 index d5b33541..00000000 --- a/src/test/resources/assets/strata/blockstates/argillite_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/argillite_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/argillite_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/argillite_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/argillite_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/argillite_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/argillite_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/argillite_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/argillite_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/argillite_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/argillite_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/argillite_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/argillite_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/argillite_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/argillite_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/argillite_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/argillite_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/argillite_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/argillite_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/argillite_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/argillite_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/argillite_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/argillite_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/argillite_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/argillite_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/argillite_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/argillite_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/argillite_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/argillite_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/argillite_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/argillite_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/argillite_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/argillite_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/argillite_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/argillite_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/argillite_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/argillite_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/argillite_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/argillite_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/argillite_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/argillite_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/argillite_wall.json b/src/test/resources/assets/strata/blockstates/argillite_wall.json deleted file mode 100644 index 14d1a1d2..00000000 --- a/src/test/resources/assets/strata/blockstates/argillite_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/argillite_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/argillite_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/argillite_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/argillite_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/argillite_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/arkose.json b/src/test/resources/assets/strata/blockstates/arkose.json deleted file mode 100644 index 39cec0b1..00000000 --- a/src/test/resources/assets/strata/blockstates/arkose.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/arkose" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/basalt.json b/src/test/resources/assets/strata/blockstates/basalt.json deleted file mode 100644 index 1abcc442..00000000 --- a/src/test/resources/assets/strata/blockstates/basalt.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/basalt" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/basalt_brick_slab.json b/src/test/resources/assets/strata/blockstates/basalt_brick_slab.json deleted file mode 100644 index 913d72f4..00000000 --- a/src/test/resources/assets/strata/blockstates/basalt_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/basalt_brick_slab" }, - "type=top": { "model": "strata:block/basalt_brick_slab_top" }, - "type=double": { "model": "strata:block/basalt_brick" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/basalt_brick_stairs.json b/src/test/resources/assets/strata/blockstates/basalt_brick_stairs.json deleted file mode 100644 index dedd17d0..00000000 --- a/src/test/resources/assets/strata/blockstates/basalt_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/basalt_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/basalt_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/basalt_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/basalt_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/basalt_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/basalt_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/basalt_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/basalt_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/basalt_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/basalt_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/basalt_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/basalt_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/basalt_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/basalt_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/basalt_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/basalt_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/basalt_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/basalt_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/basalt_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/basalt_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/basalt_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/basalt_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/basalt_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/basalt_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/basalt_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/basalt_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/basalt_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/basalt_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/basalt_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/basalt_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/basalt_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/basalt_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/basalt_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/basalt_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/basalt_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/basalt_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/basalt_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/basalt_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/basalt_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/basalt_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/basalt_brick_wall.json b/src/test/resources/assets/strata/blockstates/basalt_brick_wall.json deleted file mode 100644 index 954d01ac..00000000 --- a/src/test/resources/assets/strata/blockstates/basalt_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/basalt_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/basalt_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/basalt_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/basalt_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/basalt_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/test/resources/assets/strata/blockstates/basalt_bricks.json b/src/test/resources/assets/strata/blockstates/basalt_bricks.json deleted file mode 100644 index 46eea316..00000000 --- a/src/test/resources/assets/strata/blockstates/basalt_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/basalt_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/basalt_button.json b/src/test/resources/assets/strata/blockstates/basalt_button.json deleted file mode 100644 index b5f5fe40..00000000 --- a/src/test/resources/assets/strata/blockstates/basalt_button.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "variants": { - "face=floor,facing=east,powered=false": { "model": "strata:block/basalt_button", "y": 90 }, - "face=floor,facing=west,powered=false": { "model": "strata:block/basalt_button", "y": 270 }, - "face=floor,facing=south,powered=false": { "model": "strata:block/basalt_button", "y": 180 }, - "face=floor,facing=north,powered=false": { "model": "strata:block/basalt_button" }, - "face=wall,facing=east,powered=false": { "model": "strata:block/basalt_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=false": { "model": "strata:block/basalt_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=false": { "model": "strata:block/basalt_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=false": { "model": "strata:block/basalt_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=false": { "model": "strata:block/basalt_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=false": { "model": "strata:block/basalt_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=false": { "model": "strata:block/basalt_button", "x": 180 }, - "face=ceiling,facing=north,powered=false": { "model": "strata:block/basalt_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/basalt_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/basalt_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/basalt_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/basalt_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/basalt_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/basalt_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/basalt_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/basalt_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/basalt_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/basalt_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/basalt_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/basalt_button", "x": 180, "y": 180 } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/basalt_pressure_plate.json b/src/test/resources/assets/strata/blockstates/basalt_pressure_plate.json deleted file mode 100644 index a18241f9..00000000 --- a/src/test/resources/assets/strata/blockstates/basalt_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "variants": { - "powered=false": { "model": "strata:block/basalt_pressure_plate" }, - "powered=true": { "model": "strata:block/basalt_pressure_plate_down" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/basalt_slab.json b/src/test/resources/assets/strata/blockstates/basalt_slab.json deleted file mode 100644 index 2eee3ec8..00000000 --- a/src/test/resources/assets/strata/blockstates/basalt_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/basalt_slab" }, - "type=top": { "model": "strata:block/basalt_slab_top" }, - "type=double": { "model": "strata:block/basalt" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/basalt_stairs.json b/src/test/resources/assets/strata/blockstates/basalt_stairs.json deleted file mode 100644 index 5b216b50..00000000 --- a/src/test/resources/assets/strata/blockstates/basalt_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/basalt_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/basalt_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/basalt_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/basalt_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/basalt_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/basalt_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/basalt_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/basalt_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/basalt_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/basalt_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/basalt_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/basalt_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/basalt_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/basalt_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/basalt_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/basalt_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/basalt_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/basalt_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/basalt_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/basalt_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/basalt_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/basalt_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/basalt_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/basalt_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/basalt_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/basalt_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/basalt_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/basalt_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/basalt_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/basalt_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/basalt_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/basalt_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/basalt_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/basalt_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/basalt_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/basalt_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/basalt_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/basalt_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/basalt_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/basalt_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/basalt_wall.json b/src/test/resources/assets/strata/blockstates/basalt_wall.json deleted file mode 100644 index 70ba468e..00000000 --- a/src/test/resources/assets/strata/blockstates/basalt_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/basalt_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/basalt_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/basalt_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/basalt_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/basalt_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/test/resources/assets/strata/blockstates/basaltic_trachyandesite.json b/src/test/resources/assets/strata/blockstates/basaltic_trachyandesite.json deleted file mode 100644 index 2e4377c0..00000000 --- a/src/test/resources/assets/strata/blockstates/basaltic_trachyandesite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/basaltic_trachyandesite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/basanite.json b/src/test/resources/assets/strata/blockstates/basanite.json deleted file mode 100644 index 9a06d525..00000000 --- a/src/test/resources/assets/strata/blockstates/basanite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/basanite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/benmoreite.json b/src/test/resources/assets/strata/blockstates/benmoreite.json deleted file mode 100644 index 1455aa2e..00000000 --- a/src/test/resources/assets/strata/blockstates/benmoreite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/benmoreite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/blairmorite.json b/src/test/resources/assets/strata/blockstates/blairmorite.json deleted file mode 100644 index 1a1e2c2a..00000000 --- a/src/test/resources/assets/strata/blockstates/blairmorite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/blairmorite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/blue_granite.json b/src/test/resources/assets/strata/blockstates/blue_granite.json deleted file mode 100644 index 900cca53..00000000 --- a/src/test/resources/assets/strata/blockstates/blue_granite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/blue_granite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/blueschist.json b/src/test/resources/assets/strata/blockstates/blueschist.json deleted file mode 100644 index e9d1a5f6..00000000 --- a/src/test/resources/assets/strata/blockstates/blueschist.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/blueschist" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/boninite.json b/src/test/resources/assets/strata/blockstates/boninite.json deleted file mode 100644 index d28e74fb..00000000 --- a/src/test/resources/assets/strata/blockstates/boninite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/boninite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/borolanite.json b/src/test/resources/assets/strata/blockstates/borolanite.json deleted file mode 100644 index 85445af7..00000000 --- a/src/test/resources/assets/strata/blockstates/borolanite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/borolanite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/breccia.json b/src/test/resources/assets/strata/blockstates/breccia.json deleted file mode 100644 index 1e6086bf..00000000 --- a/src/test/resources/assets/strata/blockstates/breccia.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/breccia" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/calcarenite.json b/src/test/resources/assets/strata/blockstates/calcarenite.json deleted file mode 100644 index de8deb25..00000000 --- a/src/test/resources/assets/strata/blockstates/calcarenite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/calcarenite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/calcflinta.json b/src/test/resources/assets/strata/blockstates/calcflinta.json deleted file mode 100644 index e28adc46..00000000 --- a/src/test/resources/assets/strata/blockstates/calcflinta.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/calcflinta" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/carbonatite.json b/src/test/resources/assets/strata/blockstates/carbonatite.json deleted file mode 100644 index 6afed525..00000000 --- a/src/test/resources/assets/strata/blockstates/carbonatite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/carbonatite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/cataclasite.json b/src/test/resources/assets/strata/blockstates/cataclasite.json deleted file mode 100644 index 367ee6e9..00000000 --- a/src/test/resources/assets/strata/blockstates/cataclasite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/cataclasite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chalk.json b/src/test/resources/assets/strata/blockstates/chalk.json deleted file mode 100644 index b5aad7f4..00000000 --- a/src/test/resources/assets/strata/blockstates/chalk.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/chalk" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chalk_brick_slab.json b/src/test/resources/assets/strata/blockstates/chalk_brick_slab.json deleted file mode 100644 index 8c63677c..00000000 --- a/src/test/resources/assets/strata/blockstates/chalk_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/chalk_brick_slab" }, - "type=top": { "model": "strata:block/chalk_brick_slab_top" }, - "type=double": { "model": "strata:block/chalk_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chalk_brick_stairs.json b/src/test/resources/assets/strata/blockstates/chalk_brick_stairs.json deleted file mode 100644 index 61ed6799..00000000 --- a/src/test/resources/assets/strata/blockstates/chalk_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/chalk_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/chalk_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/chalk_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/chalk_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/chalk_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/chalk_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/chalk_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/chalk_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/chalk_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/chalk_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/chalk_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/chalk_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/chalk_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/chalk_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/chalk_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/chalk_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/chalk_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/chalk_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/chalk_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/chalk_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/chalk_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/chalk_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/chalk_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/chalk_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/chalk_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/chalk_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/chalk_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/chalk_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/chalk_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/chalk_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/chalk_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/chalk_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/chalk_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/chalk_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/chalk_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/chalk_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/chalk_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/chalk_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/chalk_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/chalk_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chalk_brick_wall.json b/src/test/resources/assets/strata/blockstates/chalk_brick_wall.json deleted file mode 100644 index 4ade4836..00000000 --- a/src/test/resources/assets/strata/blockstates/chalk_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/chalk_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/chalk_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/chalk_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/chalk_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/chalk_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chalk_bricks.json b/src/test/resources/assets/strata/blockstates/chalk_bricks.json deleted file mode 100644 index 354129fe..00000000 --- a/src/test/resources/assets/strata/blockstates/chalk_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/chalk_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chalk_button.json b/src/test/resources/assets/strata/blockstates/chalk_button.json deleted file mode 100644 index f9da040b..00000000 --- a/src/test/resources/assets/strata/blockstates/chalk_button.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "variants": { - "face=floor,facing=east,powered=false": { "model": "strata:block/chalk_button", "y": 90 }, - "face=floor,facing=west,powered=false": { "model": "strata:block/chalk_button", "y": 270 }, - "face=floor,facing=south,powered=false": { "model": "strata:block/chalk_button", "y": 180 }, - "face=floor,facing=north,powered=false": { "model": "strata:block/chalk_button" }, - "face=wall,facing=east,powered=false": { "model": "strata:block/chalk_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=false": { "model": "strata:block/chalk_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=false": { "model": "strata:block/chalk_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=false": { "model": "strata:block/chalk_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=false": { "model": "strata:block/chalk_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=false": { "model": "strata:block/chalk_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=false": { "model": "strata:block/chalk_button", "x": 180 }, - "face=ceiling,facing=north,powered=false": { "model": "strata:block/chalk_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/chalk_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/chalk_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/chalk_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/chalk_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/chalk_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/chalk_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/chalk_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/chalk_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/chalk_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/chalk_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/chalk_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/chalk_button", "x": 180, "y": 180 } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chalk_cobblestone.json b/src/test/resources/assets/strata/blockstates/chalk_cobblestone.json deleted file mode 100644 index 6a7bd9b7..00000000 --- a/src/test/resources/assets/strata/blockstates/chalk_cobblestone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/chalk_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chalk_cobblestone_slab.json b/src/test/resources/assets/strata/blockstates/chalk_cobblestone_slab.json deleted file mode 100644 index 7755643d..00000000 --- a/src/test/resources/assets/strata/blockstates/chalk_cobblestone_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/chalk_cobblestone_slab" }, - "type=top": { "model": "strata:block/chalk_cobblestone_slab_top" }, - "type=double": { "model": "strata:block/chalk_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chalk_cobblestone_stairs.json b/src/test/resources/assets/strata/blockstates/chalk_cobblestone_stairs.json deleted file mode 100644 index dbc8871b..00000000 --- a/src/test/resources/assets/strata/blockstates/chalk_cobblestone_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/chalk_cobblestone_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/chalk_cobblestone_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/chalk_cobblestone_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/chalk_cobblestone_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/chalk_cobblestone_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/chalk_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/chalk_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/chalk_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/chalk_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/chalk_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/chalk_cobblestone_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/chalk_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/chalk_cobblestone_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/chalk_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/chalk_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/chalk_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/chalk_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/chalk_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/chalk_cobblestone_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/chalk_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/chalk_cobblestone_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/chalk_cobblestone_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/chalk_cobblestone_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/chalk_cobblestone_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/chalk_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/chalk_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/chalk_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/chalk_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/chalk_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/chalk_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/chalk_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/chalk_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/chalk_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/chalk_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/chalk_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/chalk_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/chalk_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/chalk_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/chalk_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/chalk_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chalk_cobblestone_wall.json b/src/test/resources/assets/strata/blockstates/chalk_cobblestone_wall.json deleted file mode 100644 index 22e72e34..00000000 --- a/src/test/resources/assets/strata/blockstates/chalk_cobblestone_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/chalk_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/chalk_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/chalk_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/chalk_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/chalk_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chalk_slab.json b/src/test/resources/assets/strata/blockstates/chalk_slab.json deleted file mode 100644 index ad150071..00000000 --- a/src/test/resources/assets/strata/blockstates/chalk_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/chalk_slab" }, - "type=top": { "model": "strata:block/chalk_slab_top" }, - "type=double": { "model": "strata:block/chalk" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chalk_stairs.json b/src/test/resources/assets/strata/blockstates/chalk_stairs.json deleted file mode 100644 index 10a1dcf2..00000000 --- a/src/test/resources/assets/strata/blockstates/chalk_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/chalk_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/chalk_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/chalk_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/chalk_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/chalk_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/chalk_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/chalk_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/chalk_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/chalk_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/chalk_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/chalk_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/chalk_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/chalk_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/chalk_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/chalk_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/chalk_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/chalk_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/chalk_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/chalk_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/chalk_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/chalk_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/chalk_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/chalk_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/chalk_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/chalk_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/chalk_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/chalk_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/chalk_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/chalk_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/chalk_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/chalk_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/chalk_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/chalk_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/chalk_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/chalk_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/chalk_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/chalk_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/chalk_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/chalk_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/chalk_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chalk_wall.json b/src/test/resources/assets/strata/blockstates/chalk_wall.json deleted file mode 100644 index 06dffcf4..00000000 --- a/src/test/resources/assets/strata/blockstates/chalk_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/chalk_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/chalk_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/chalk_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/chalk_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/chalk_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/charnockite.json b/src/test/resources/assets/strata/blockstates/charnockite.json deleted file mode 100644 index ca4d0de7..00000000 --- a/src/test/resources/assets/strata/blockstates/charnockite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/charnockite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chert.json b/src/test/resources/assets/strata/blockstates/chert.json deleted file mode 100644 index a644bc9b..00000000 --- a/src/test/resources/assets/strata/blockstates/chert.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/chert" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chiseled_aa_bricks.json b/src/test/resources/assets/strata/blockstates/chiseled_aa_bricks.json deleted file mode 100644 index 0dc55489..00000000 --- a/src/test/resources/assets/strata/blockstates/chiseled_aa_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/chiseled_aa_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chiseled_adakite_bricks.json b/src/test/resources/assets/strata/blockstates/chiseled_adakite_bricks.json deleted file mode 100644 index eef86248..00000000 --- a/src/test/resources/assets/strata/blockstates/chiseled_adakite_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/chiseled_adakite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chiseled_amphibolite_bricks.json b/src/test/resources/assets/strata/blockstates/chiseled_amphibolite_bricks.json deleted file mode 100644 index e636284a..00000000 --- a/src/test/resources/assets/strata/blockstates/chiseled_amphibolite_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/chiseled_amphibolite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chiseled_argillite_bricks.json b/src/test/resources/assets/strata/blockstates/chiseled_argillite_bricks.json deleted file mode 100644 index b1086e1f..00000000 --- a/src/test/resources/assets/strata/blockstates/chiseled_argillite_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/chiseled_argillite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chiseled_basalt_bricks.json b/src/test/resources/assets/strata/blockstates/chiseled_basalt_bricks.json deleted file mode 100644 index 199a4459..00000000 --- a/src/test/resources/assets/strata/blockstates/chiseled_basalt_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/chiseled_basalt_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chiseled_chalk_bricks.json b/src/test/resources/assets/strata/blockstates/chiseled_chalk_bricks.json deleted file mode 100644 index 6813c0a1..00000000 --- a/src/test/resources/assets/strata/blockstates/chiseled_chalk_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/chiseled_chalk_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chiseled_eclogite_bricks.json b/src/test/resources/assets/strata/blockstates/chiseled_eclogite_bricks.json deleted file mode 100644 index 3549ba8c..00000000 --- a/src/test/resources/assets/strata/blockstates/chiseled_eclogite_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/chiseled_eclogite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chiseled_gabbro_bricks.json b/src/test/resources/assets/strata/blockstates/chiseled_gabbro_bricks.json deleted file mode 100644 index 4efb56a9..00000000 --- a/src/test/resources/assets/strata/blockstates/chiseled_gabbro_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/chiseled_gabbro_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chiseled_gneiss_bricks.json b/src/test/resources/assets/strata/blockstates/chiseled_gneiss_bricks.json deleted file mode 100644 index e8f5ade2..00000000 --- a/src/test/resources/assets/strata/blockstates/chiseled_gneiss_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/chiseled_gneiss_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chiseled_jaspillite_bricks.json b/src/test/resources/assets/strata/blockstates/chiseled_jaspillite_bricks.json deleted file mode 100644 index 7f040064..00000000 --- a/src/test/resources/assets/strata/blockstates/chiseled_jaspillite_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/chiseled_jaspillite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chiseled_limestone_bricks.json b/src/test/resources/assets/strata/blockstates/chiseled_limestone_bricks.json deleted file mode 100644 index 8acc98c9..00000000 --- a/src/test/resources/assets/strata/blockstates/chiseled_limestone_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/chiseled_limestone_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chiseled_marble_bricks.json b/src/test/resources/assets/strata/blockstates/chiseled_marble_bricks.json deleted file mode 100644 index c4e99fa4..00000000 --- a/src/test/resources/assets/strata/blockstates/chiseled_marble_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/chiseled_marble_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chiseled_pahoehoe_bricks.json b/src/test/resources/assets/strata/blockstates/chiseled_pahoehoe_bricks.json deleted file mode 100644 index 9e68e1ff..00000000 --- a/src/test/resources/assets/strata/blockstates/chiseled_pahoehoe_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/chiseled_pahoehoe_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chiseled_schist_bricks.json b/src/test/resources/assets/strata/blockstates/chiseled_schist_bricks.json deleted file mode 100644 index 5a0beac8..00000000 --- a/src/test/resources/assets/strata/blockstates/chiseled_schist_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/chiseled_schist_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/chiseled_shale_bricks.json b/src/test/resources/assets/strata/blockstates/chiseled_shale_bricks.json deleted file mode 100644 index 15641655..00000000 --- a/src/test/resources/assets/strata/blockstates/chiseled_shale_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/chiseled_shale_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/claystone.json b/src/test/resources/assets/strata/blockstates/claystone.json deleted file mode 100644 index bc3a4644..00000000 --- a/src/test/resources/assets/strata/blockstates/claystone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/claystone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/comendite.json b/src/test/resources/assets/strata/blockstates/comendite.json deleted file mode 100644 index 3634212b..00000000 --- a/src/test/resources/assets/strata/blockstates/comendite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/comendite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/conglomerate.json b/src/test/resources/assets/strata/blockstates/conglomerate.json deleted file mode 100644 index b0573467..00000000 --- a/src/test/resources/assets/strata/blockstates/conglomerate.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/conglomerate" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/coquina.json b/src/test/resources/assets/strata/blockstates/coquina.json deleted file mode 100644 index 07dd853f..00000000 --- a/src/test/resources/assets/strata/blockstates/coquina.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/coquina" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/cracked_aa_bricks.json b/src/test/resources/assets/strata/blockstates/cracked_aa_bricks.json deleted file mode 100644 index 25ef4005..00000000 --- a/src/test/resources/assets/strata/blockstates/cracked_aa_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/cracked_aa_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/cracked_adakite_bricks.json b/src/test/resources/assets/strata/blockstates/cracked_adakite_bricks.json deleted file mode 100644 index 55beaa74..00000000 --- a/src/test/resources/assets/strata/blockstates/cracked_adakite_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/cracked_adakite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/cracked_amphibolite_bricks.json b/src/test/resources/assets/strata/blockstates/cracked_amphibolite_bricks.json deleted file mode 100644 index ae94433f..00000000 --- a/src/test/resources/assets/strata/blockstates/cracked_amphibolite_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/cracked_amphibolite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/cracked_argillite_bricks.json b/src/test/resources/assets/strata/blockstates/cracked_argillite_bricks.json deleted file mode 100644 index e11e5092..00000000 --- a/src/test/resources/assets/strata/blockstates/cracked_argillite_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/cracked_argillite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/cracked_basalt_bricks.json b/src/test/resources/assets/strata/blockstates/cracked_basalt_bricks.json deleted file mode 100644 index dbcf9d8e..00000000 --- a/src/test/resources/assets/strata/blockstates/cracked_basalt_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/cracked_basalt_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/cracked_chalk_bricks.json b/src/test/resources/assets/strata/blockstates/cracked_chalk_bricks.json deleted file mode 100644 index 4ac2178f..00000000 --- a/src/test/resources/assets/strata/blockstates/cracked_chalk_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/cracked_chalk_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/cracked_eclogite_bricks.json b/src/test/resources/assets/strata/blockstates/cracked_eclogite_bricks.json deleted file mode 100644 index 0fbe5af1..00000000 --- a/src/test/resources/assets/strata/blockstates/cracked_eclogite_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/cracked_eclogite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/cracked_gabbro_bricks.json b/src/test/resources/assets/strata/blockstates/cracked_gabbro_bricks.json deleted file mode 100644 index 4f8d13d0..00000000 --- a/src/test/resources/assets/strata/blockstates/cracked_gabbro_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/cracked_gabbro_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/cracked_gneiss_bricks.json b/src/test/resources/assets/strata/blockstates/cracked_gneiss_bricks.json deleted file mode 100644 index 2d335d4d..00000000 --- a/src/test/resources/assets/strata/blockstates/cracked_gneiss_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/cracked_gneiss_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/cracked_jaspillite_bricks.json b/src/test/resources/assets/strata/blockstates/cracked_jaspillite_bricks.json deleted file mode 100644 index 56a88481..00000000 --- a/src/test/resources/assets/strata/blockstates/cracked_jaspillite_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/cracked_jaspillite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/cracked_limestone_bricks.json b/src/test/resources/assets/strata/blockstates/cracked_limestone_bricks.json deleted file mode 100644 index 871343ef..00000000 --- a/src/test/resources/assets/strata/blockstates/cracked_limestone_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/cracked_limestone_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/cracked_marble_bricks.json b/src/test/resources/assets/strata/blockstates/cracked_marble_bricks.json deleted file mode 100644 index d3b2d79b..00000000 --- a/src/test/resources/assets/strata/blockstates/cracked_marble_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/cracked_marble_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/cracked_pahoehoe_bricks.json b/src/test/resources/assets/strata/blockstates/cracked_pahoehoe_bricks.json deleted file mode 100644 index 5c1d95c8..00000000 --- a/src/test/resources/assets/strata/blockstates/cracked_pahoehoe_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/cracked_pahoehoe_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/cracked_schist_bricks.json b/src/test/resources/assets/strata/blockstates/cracked_schist_bricks.json deleted file mode 100644 index 887bdb9b..00000000 --- a/src/test/resources/assets/strata/blockstates/cracked_schist_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/cracked_schist_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/cracked_shale_bricks.json b/src/test/resources/assets/strata/blockstates/cracked_shale_bricks.json deleted file mode 100644 index 1235f054..00000000 --- a/src/test/resources/assets/strata/blockstates/cracked_shale_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/cracked_shale_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/dacite.json b/src/test/resources/assets/strata/blockstates/dacite.json deleted file mode 100644 index 03b1829b..00000000 --- a/src/test/resources/assets/strata/blockstates/dacite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/dacite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/debug_block.json b/src/test/resources/assets/strata/blockstates/debug_block.json deleted file mode 100644 index 51e019fc..00000000 --- a/src/test/resources/assets/strata/blockstates/debug_block.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/debug_block" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/debug_ore.json b/src/test/resources/assets/strata/blockstates/debug_ore.json deleted file mode 100644 index 7a988b26..00000000 --- a/src/test/resources/assets/strata/blockstates/debug_ore.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/debug_ore" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/debug_slab.json b/src/test/resources/assets/strata/blockstates/debug_slab.json deleted file mode 100644 index 9dc0df81..00000000 --- a/src/test/resources/assets/strata/blockstates/debug_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/debug_slab" }, - "type=top": { "model": "strata:block/debug_slab_top" }, - "type=double": { "model": "strata:block/debug_block" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/debug_stairs.json b/src/test/resources/assets/strata/blockstates/debug_stairs.json deleted file mode 100644 index 43a480d7..00000000 --- a/src/test/resources/assets/strata/blockstates/debug_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/debug_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/debug_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/debug_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/debug_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/debug_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/debug_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/debug_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/debug_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/debug_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/debug_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/debug_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/debug_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/debug_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/debug_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/debug_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/debug_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/debug_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/debug_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/debug_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/debug_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/debug_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/debug_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/debug_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/debug_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/debug_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/debug_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/debug_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/debug_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/debug_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/debug_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/debug_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/debug_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/debug_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/debug_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/debug_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/debug_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/debug_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/debug_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/debug_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/debug_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/debug_wall.json b/src/test/resources/assets/strata/blockstates/debug_wall.json deleted file mode 100644 index 92d2115d..00000000 --- a/src/test/resources/assets/strata/blockstates/debug_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/aa_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/aa_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/aa_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/aa_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/aa_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/test/resources/assets/strata/blockstates/diabase.json b/src/test/resources/assets/strata/blockstates/diabase.json deleted file mode 100644 index 87627950..00000000 --- a/src/test/resources/assets/strata/blockstates/diabase.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/diabase" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/diamictite.json b/src/test/resources/assets/strata/blockstates/diamictite.json deleted file mode 100644 index 0ab77bd0..00000000 --- a/src/test/resources/assets/strata/blockstates/diamictite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/diamictite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/diatomite.json b/src/test/resources/assets/strata/blockstates/diatomite.json deleted file mode 100644 index 273976ca..00000000 --- a/src/test/resources/assets/strata/blockstates/diatomite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/diatomite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/dolomite.json b/src/test/resources/assets/strata/blockstates/dolomite.json deleted file mode 100644 index 44ae9806..00000000 --- a/src/test/resources/assets/strata/blockstates/dolomite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/dolomite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/dunite.json b/src/test/resources/assets/strata/blockstates/dunite.json deleted file mode 100644 index a7348031..00000000 --- a/src/test/resources/assets/strata/blockstates/dunite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/dunite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/eclogite.json b/src/test/resources/assets/strata/blockstates/eclogite.json deleted file mode 100644 index ea7be382..00000000 --- a/src/test/resources/assets/strata/blockstates/eclogite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/eclogite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/eclogite_brick_slab.json b/src/test/resources/assets/strata/blockstates/eclogite_brick_slab.json deleted file mode 100644 index f39d6757..00000000 --- a/src/test/resources/assets/strata/blockstates/eclogite_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/eclogite_brick_slab" }, - "type=top": { "model": "strata:block/eclogite_brick_slab_top" }, - "type=double": { "model": "strata:block/eclogite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/eclogite_brick_stairs.json b/src/test/resources/assets/strata/blockstates/eclogite_brick_stairs.json deleted file mode 100644 index 8529cb85..00000000 --- a/src/test/resources/assets/strata/blockstates/eclogite_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/eclogite_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/eclogite_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/eclogite_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/eclogite_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/eclogite_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/eclogite_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/eclogite_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/eclogite_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/eclogite_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/eclogite_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/eclogite_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/eclogite_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/eclogite_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/eclogite_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/eclogite_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/eclogite_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/eclogite_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/eclogite_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/eclogite_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/eclogite_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/eclogite_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/eclogite_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/eclogite_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/eclogite_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/eclogite_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/eclogite_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/eclogite_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/eclogite_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/eclogite_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/eclogite_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/eclogite_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/eclogite_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/eclogite_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/eclogite_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/eclogite_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/eclogite_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/eclogite_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/eclogite_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/eclogite_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/eclogite_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/eclogite_brick_wall.json b/src/test/resources/assets/strata/blockstates/eclogite_brick_wall.json deleted file mode 100644 index 7183227c..00000000 --- a/src/test/resources/assets/strata/blockstates/eclogite_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/eclogite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/eclogite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/eclogite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/eclogite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/eclogite_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/eclogite_bricks.json b/src/test/resources/assets/strata/blockstates/eclogite_bricks.json deleted file mode 100644 index 369f8933..00000000 --- a/src/test/resources/assets/strata/blockstates/eclogite_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/eclogite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/eclogite_button.json b/src/test/resources/assets/strata/blockstates/eclogite_button.json deleted file mode 100644 index 289d7942..00000000 --- a/src/test/resources/assets/strata/blockstates/eclogite_button.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "variants": { - "face=floor,facing=east,powered=false": { "model": "strata:block/eclogite_button", "y": 90 }, - "face=floor,facing=west,powered=false": { "model": "strata:block/eclogite_button", "y": 270 }, - "face=floor,facing=south,powered=false": { "model": "strata:block/eclogite_button", "y": 180 }, - "face=floor,facing=north,powered=false": { "model": "strata:block/eclogite_button" }, - "face=wall,facing=east,powered=false": { "model": "strata:block/eclogite_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=false": { "model": "strata:block/eclogite_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=false": { "model": "strata:block/eclogite_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=false": { "model": "strata:block/eclogite_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=false": { "model": "strata:block/eclogite_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=false": { "model": "strata:block/eclogite_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=false": { "model": "strata:block/eclogite_button", "x": 180 }, - "face=ceiling,facing=north,powered=false": { "model": "strata:block/eclogite_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/eclogite_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/eclogite_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/eclogite_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/eclogite_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/eclogite_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/eclogite_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/eclogite_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/eclogite_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/eclogite_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/eclogite_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/eclogite_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/eclogite_button", "x": 180, "y": 180 } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/eclogite_cobblestone.json b/src/test/resources/assets/strata/blockstates/eclogite_cobblestone.json deleted file mode 100644 index c9b1c4c0..00000000 --- a/src/test/resources/assets/strata/blockstates/eclogite_cobblestone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/eclogite_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/eclogite_cobblestone_slab.json b/src/test/resources/assets/strata/blockstates/eclogite_cobblestone_slab.json deleted file mode 100644 index d6bf67ee..00000000 --- a/src/test/resources/assets/strata/blockstates/eclogite_cobblestone_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/eclogite_cobblestone_slab" }, - "type=top": { "model": "strata:block/eclogite_cobblestone_slab_top" }, - "type=double": { "model": "strata:block/eclogite_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/eclogite_cobblestone_stairs.json b/src/test/resources/assets/strata/blockstates/eclogite_cobblestone_stairs.json deleted file mode 100644 index a4a1c7fc..00000000 --- a/src/test/resources/assets/strata/blockstates/eclogite_cobblestone_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/eclogite_cobblestone_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/eclogite_cobblestone_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/eclogite_cobblestone_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/eclogite_cobblestone_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/eclogite_cobblestone_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/eclogite_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/eclogite_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/eclogite_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/eclogite_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/eclogite_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/eclogite_cobblestone_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/eclogite_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/eclogite_cobblestone_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/eclogite_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/eclogite_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/eclogite_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/eclogite_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/eclogite_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/eclogite_cobblestone_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/eclogite_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/eclogite_cobblestone_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/eclogite_cobblestone_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/eclogite_cobblestone_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/eclogite_cobblestone_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/eclogite_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/eclogite_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/eclogite_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/eclogite_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/eclogite_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/eclogite_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/eclogite_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/eclogite_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/eclogite_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/eclogite_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/eclogite_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/eclogite_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/eclogite_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/eclogite_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/eclogite_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/eclogite_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/eclogite_cobblestone_wall.json b/src/test/resources/assets/strata/blockstates/eclogite_cobblestone_wall.json deleted file mode 100644 index 2589ec62..00000000 --- a/src/test/resources/assets/strata/blockstates/eclogite_cobblestone_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/eclogite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/eclogite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/eclogite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/eclogite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/eclogite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/eclogite_slab.json b/src/test/resources/assets/strata/blockstates/eclogite_slab.json deleted file mode 100644 index 78ed228c..00000000 --- a/src/test/resources/assets/strata/blockstates/eclogite_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/eclogite_slab" }, - "type=top": { "model": "strata:block/eclogite_slab_top" }, - "type=double": { "model": "strata:block/eclogite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/eclogite_stairs.json b/src/test/resources/assets/strata/blockstates/eclogite_stairs.json deleted file mode 100644 index 01d940f7..00000000 --- a/src/test/resources/assets/strata/blockstates/eclogite_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/eclogite_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/eclogite_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/eclogite_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/eclogite_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/eclogite_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/eclogite_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/eclogite_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/eclogite_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/eclogite_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/eclogite_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/eclogite_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/eclogite_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/eclogite_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/eclogite_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/eclogite_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/eclogite_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/eclogite_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/eclogite_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/eclogite_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/eclogite_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/eclogite_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/eclogite_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/eclogite_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/eclogite_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/eclogite_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/eclogite_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/eclogite_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/eclogite_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/eclogite_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/eclogite_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/eclogite_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/eclogite_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/eclogite_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/eclogite_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/eclogite_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/eclogite_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/eclogite_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/eclogite_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/eclogite_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/eclogite_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/eclogite_wall.json b/src/test/resources/assets/strata/blockstates/eclogite_wall.json deleted file mode 100644 index 5296b5ad..00000000 --- a/src/test/resources/assets/strata/blockstates/eclogite_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/eclogite_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/eclogite_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/eclogite_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/eclogite_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/eclogite_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/enderbite.json b/src/test/resources/assets/strata/blockstates/enderbite.json deleted file mode 100644 index 29162e3a..00000000 --- a/src/test/resources/assets/strata/blockstates/enderbite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/enderbite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/epidosite.json b/src/test/resources/assets/strata/blockstates/epidosite.json deleted file mode 100644 index cd0929e9..00000000 --- a/src/test/resources/assets/strata/blockstates/epidosite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/epidosite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/essexite.json b/src/test/resources/assets/strata/blockstates/essexite.json deleted file mode 100644 index 135bb605..00000000 --- a/src/test/resources/assets/strata/blockstates/essexite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/essexite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/evaporite.json b/src/test/resources/assets/strata/blockstates/evaporite.json deleted file mode 100644 index cf5070ee..00000000 --- a/src/test/resources/assets/strata/blockstates/evaporite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/evaporite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/felsite.json b/src/test/resources/assets/strata/blockstates/felsite.json deleted file mode 100644 index 04e7769a..00000000 --- a/src/test/resources/assets/strata/blockstates/felsite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/felsite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/foidolite.json b/src/test/resources/assets/strata/blockstates/foidolite.json deleted file mode 100644 index e07bebb0..00000000 --- a/src/test/resources/assets/strata/blockstates/foidolite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/foidolite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/gabbro.json b/src/test/resources/assets/strata/blockstates/gabbro.json deleted file mode 100644 index 3c19753f..00000000 --- a/src/test/resources/assets/strata/blockstates/gabbro.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/gabbro" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/gabbro_brick_slab.json b/src/test/resources/assets/strata/blockstates/gabbro_brick_slab.json deleted file mode 100644 index b6928089..00000000 --- a/src/test/resources/assets/strata/blockstates/gabbro_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/gabbro_brick_slab" }, - "type=top": { "model": "strata:block/gabbro_brick_slab_top" }, - "type=double": { "model": "strata:block/gabbro_brick" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/gabbro_brick_stairs.json b/src/test/resources/assets/strata/blockstates/gabbro_brick_stairs.json deleted file mode 100644 index a03d1516..00000000 --- a/src/test/resources/assets/strata/blockstates/gabbro_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/gabbro_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/gabbro_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/gabbro_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/gabbro_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/gabbro_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/gabbro_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/gabbro_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/gabbro_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/gabbro_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/gabbro_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/gabbro_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/gabbro_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/gabbro_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/gabbro_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/gabbro_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/gabbro_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/gabbro_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/gabbro_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/gabbro_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/gabbro_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/gabbro_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/gabbro_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/gabbro_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/gabbro_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/gabbro_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/gabbro_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/gabbro_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/gabbro_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/gabbro_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/gabbro_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/gabbro_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/gabbro_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/gabbro_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/gabbro_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/gabbro_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/gabbro_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/gabbro_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/gabbro_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/gabbro_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/gabbro_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/gabbro_brick_wall.json b/src/test/resources/assets/strata/blockstates/gabbro_brick_wall.json deleted file mode 100644 index cab558f8..00000000 --- a/src/test/resources/assets/strata/blockstates/gabbro_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/gabbro_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/gabbro_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/gabbro_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/gabbro_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/gabbro_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/test/resources/assets/strata/blockstates/gabbro_bricks.json b/src/test/resources/assets/strata/blockstates/gabbro_bricks.json deleted file mode 100644 index 4bfcbb1a..00000000 --- a/src/test/resources/assets/strata/blockstates/gabbro_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/gabbro_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/gabbro_button.json b/src/test/resources/assets/strata/blockstates/gabbro_button.json deleted file mode 100644 index c9af72d0..00000000 --- a/src/test/resources/assets/strata/blockstates/gabbro_button.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "variants": { - "face=floor,facing=east,powered=false": { "model": "strata:block/gabbro_button", "y": 90 }, - "face=floor,facing=west,powered=false": { "model": "strata:block/gabbro_button", "y": 270 }, - "face=floor,facing=south,powered=false": { "model": "strata:block/gabbro_button", "y": 180 }, - "face=floor,facing=north,powered=false": { "model": "strata:block/gabbro_button" }, - "face=wall,facing=east,powered=false": { "model": "strata:block/gabbro_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=false": { "model": "strata:block/gabbro_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=false": { "model": "strata:block/gabbro_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=false": { "model": "strata:block/gabbro_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=false": { "model": "strata:block/gabbro_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=false": { "model": "strata:block/gabbro_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=false": { "model": "strata:block/gabbro_button", "x": 180 }, - "face=ceiling,facing=north,powered=false": { "model": "strata:block/gabbro_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/gabbro_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/gabbro_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/gabbro_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/gabbro_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/gabbro_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/gabbro_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/gabbro_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/gabbro_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/gabbro_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/gabbro_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/gabbro_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/gabbro_button", "x": 180, "y": 180 } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/gabbro_pressure_plate.json b/src/test/resources/assets/strata/blockstates/gabbro_pressure_plate.json deleted file mode 100644 index ccfdfd3f..00000000 --- a/src/test/resources/assets/strata/blockstates/gabbro_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "variants": { - "powered=false": { "model": "strata:block/gabbro_pressure_plate" }, - "powered=true": { "model": "strata:block/gabbro_pressure_plate_down" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/gabbro_slab.json b/src/test/resources/assets/strata/blockstates/gabbro_slab.json deleted file mode 100644 index 7f1f76c7..00000000 --- a/src/test/resources/assets/strata/blockstates/gabbro_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/gabbro_slab" }, - "type=top": { "model": "strata:block/gabbro_slab_top" }, - "type=double": { "model": "strata:block/gabbro" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/gabbro_stairs.json b/src/test/resources/assets/strata/blockstates/gabbro_stairs.json deleted file mode 100644 index efbf54d4..00000000 --- a/src/test/resources/assets/strata/blockstates/gabbro_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/gabbro_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/gabbro_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/gabbro_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/gabbro_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/gabbro_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/gabbro_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/gabbro_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/gabbro_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/gabbro_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/gabbro_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/gabbro_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/gabbro_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/gabbro_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/gabbro_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/gabbro_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/gabbro_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/gabbro_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/gabbro_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/gabbro_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/gabbro_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/gabbro_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/gabbro_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/gabbro_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/gabbro_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/gabbro_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/gabbro_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/gabbro_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/gabbro_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/gabbro_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/gabbro_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/gabbro_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/gabbro_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/gabbro_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/gabbro_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/gabbro_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/gabbro_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/gabbro_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/gabbro_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/gabbro_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/gabbro_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/gabbro_wall.json b/src/test/resources/assets/strata/blockstates/gabbro_wall.json deleted file mode 100644 index cc486115..00000000 --- a/src/test/resources/assets/strata/blockstates/gabbro_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/gabbro_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/gabbro_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/gabbro_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/gabbro_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/gabbro_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/test/resources/assets/strata/blockstates/ganister.json b/src/test/resources/assets/strata/blockstates/ganister.json deleted file mode 100644 index b8daddfe..00000000 --- a/src/test/resources/assets/strata/blockstates/ganister.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/ganister" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/geyserite.json b/src/test/resources/assets/strata/blockstates/geyserite.json deleted file mode 100644 index db9c3245..00000000 --- a/src/test/resources/assets/strata/blockstates/geyserite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/geyserite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/gneiss.json b/src/test/resources/assets/strata/blockstates/gneiss.json deleted file mode 100644 index cbf6d605..00000000 --- a/src/test/resources/assets/strata/blockstates/gneiss.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/gneiss" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/gneiss_brick_slab.json b/src/test/resources/assets/strata/blockstates/gneiss_brick_slab.json deleted file mode 100644 index 4db075ea..00000000 --- a/src/test/resources/assets/strata/blockstates/gneiss_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/gneiss_brick_slab" }, - "type=top": { "model": "strata:block/gneiss_brick_slab_top" }, - "type=double": { "model": "strata:block/gneiss_brick" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/gneiss_brick_stairs.json b/src/test/resources/assets/strata/blockstates/gneiss_brick_stairs.json deleted file mode 100644 index aaa6cc10..00000000 --- a/src/test/resources/assets/strata/blockstates/gneiss_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/gneiss_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/gneiss_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/gneiss_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/gneiss_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/gneiss_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/gneiss_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/gneiss_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/gneiss_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/gneiss_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/gneiss_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/gneiss_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/gneiss_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/gneiss_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/gneiss_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/gneiss_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/gneiss_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/gneiss_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/gneiss_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/gneiss_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/gneiss_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/gneiss_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/gneiss_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/gneiss_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/gneiss_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/gneiss_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/gneiss_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/gneiss_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/gneiss_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/gneiss_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/gneiss_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/gneiss_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/gneiss_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/gneiss_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/gneiss_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/gneiss_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/gneiss_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/gneiss_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/gneiss_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/gneiss_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/gneiss_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/gneiss_brick_wall.json b/src/test/resources/assets/strata/blockstates/gneiss_brick_wall.json deleted file mode 100644 index 2a3ca669..00000000 --- a/src/test/resources/assets/strata/blockstates/gneiss_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/gneiss_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/gneiss_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/gneiss_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/gneiss_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/gneiss_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/test/resources/assets/strata/blockstates/gneiss_bricks.json b/src/test/resources/assets/strata/blockstates/gneiss_bricks.json deleted file mode 100644 index abf74813..00000000 --- a/src/test/resources/assets/strata/blockstates/gneiss_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/gneiss_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/gneiss_button.json b/src/test/resources/assets/strata/blockstates/gneiss_button.json deleted file mode 100644 index bbe874dc..00000000 --- a/src/test/resources/assets/strata/blockstates/gneiss_button.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "variants": { - "face=floor,facing=east,powered=false": { "model": "strata:block/gneiss_button", "y": 90 }, - "face=floor,facing=west,powered=false": { "model": "strata:block/gneiss_button", "y": 270 }, - "face=floor,facing=south,powered=false": { "model": "strata:block/gneiss_button", "y": 180 }, - "face=floor,facing=north,powered=false": { "model": "strata:block/gneiss_button" }, - "face=wall,facing=east,powered=false": { "model": "strata:block/gneiss_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=false": { "model": "strata:block/gneiss_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=false": { "model": "strata:block/gneiss_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=false": { "model": "strata:block/gneiss_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=false": { "model": "strata:block/gneiss_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=false": { "model": "strata:block/gneiss_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=false": { "model": "strata:block/gneiss_button", "x": 180 }, - "face=ceiling,facing=north,powered=false": { "model": "strata:block/gneiss_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/gneiss_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/gneiss_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/gneiss_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/gneiss_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/gneiss_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/gneiss_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/gneiss_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/gneiss_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/gneiss_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/gneiss_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/gneiss_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/gneiss_button", "x": 180, "y": 180 } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/gneiss_pressure_plate.json b/src/test/resources/assets/strata/blockstates/gneiss_pressure_plate.json deleted file mode 100644 index 88f0095d..00000000 --- a/src/test/resources/assets/strata/blockstates/gneiss_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "variants": { - "powered=false": { "model": "strata:block/gneiss_pressure_plate" }, - "powered=true": { "model": "strata:block/gneiss_pressure_plate_down" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/gneiss_slab.json b/src/test/resources/assets/strata/blockstates/gneiss_slab.json deleted file mode 100644 index 25e7684a..00000000 --- a/src/test/resources/assets/strata/blockstates/gneiss_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/gneiss_slab" }, - "type=top": { "model": "strata:block/gneiss_slab_top" }, - "type=double": { "model": "strata:block/gneiss" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/gneiss_stairs.json b/src/test/resources/assets/strata/blockstates/gneiss_stairs.json deleted file mode 100644 index eb02d4d1..00000000 --- a/src/test/resources/assets/strata/blockstates/gneiss_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/gneiss_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/gneiss_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/gneiss_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/gneiss_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/gneiss_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/gneiss_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/gneiss_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/gneiss_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/gneiss_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/gneiss_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/gneiss_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/gneiss_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/gneiss_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/gneiss_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/gneiss_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/gneiss_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/gneiss_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/gneiss_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/gneiss_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/gneiss_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/gneiss_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/gneiss_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/gneiss_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/gneiss_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/gneiss_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/gneiss_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/gneiss_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/gneiss_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/gneiss_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/gneiss_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/gneiss_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/gneiss_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/gneiss_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/gneiss_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/gneiss_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/gneiss_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/gneiss_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/gneiss_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/gneiss_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/gneiss_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/gneiss_wall.json b/src/test/resources/assets/strata/blockstates/gneiss_wall.json deleted file mode 100644 index 891bc462..00000000 --- a/src/test/resources/assets/strata/blockstates/gneiss_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/gneiss_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/gneiss_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/gneiss_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/gneiss_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/gneiss_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/test/resources/assets/strata/blockstates/gossan.json b/src/test/resources/assets/strata/blockstates/gossan.json deleted file mode 100644 index 44799e5c..00000000 --- a/src/test/resources/assets/strata/blockstates/gossan.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/gossan" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/grabbo.json b/src/test/resources/assets/strata/blockstates/grabbo.json deleted file mode 100644 index 3c19753f..00000000 --- a/src/test/resources/assets/strata/blockstates/grabbo.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/gabbro" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/granodiorite.json b/src/test/resources/assets/strata/blockstates/granodiorite.json deleted file mode 100644 index 175f74a5..00000000 --- a/src/test/resources/assets/strata/blockstates/granodiorite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/granodiorite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/granophyre.json b/src/test/resources/assets/strata/blockstates/granophyre.json deleted file mode 100644 index fee23674..00000000 --- a/src/test/resources/assets/strata/blockstates/granophyre.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/granophyre" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/granulite.json b/src/test/resources/assets/strata/blockstates/granulite.json deleted file mode 100644 index 228a5af5..00000000 --- a/src/test/resources/assets/strata/blockstates/granulite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/granulite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/greenschist.json b/src/test/resources/assets/strata/blockstates/greenschist.json deleted file mode 100644 index 5ee3929f..00000000 --- a/src/test/resources/assets/strata/blockstates/greenschist.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/greenschist" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/greywacke.json b/src/test/resources/assets/strata/blockstates/greywacke.json deleted file mode 100644 index 27a7252d..00000000 --- a/src/test/resources/assets/strata/blockstates/greywacke.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/greywacke" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/gritstone.json b/src/test/resources/assets/strata/blockstates/gritstone.json deleted file mode 100644 index 5e998eea..00000000 --- a/src/test/resources/assets/strata/blockstates/gritstone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/gritstone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/hawaiite.json b/src/test/resources/assets/strata/blockstates/hawaiite.json deleted file mode 100644 index 67dfaaa0..00000000 --- a/src/test/resources/assets/strata/blockstates/hawaiite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/hawaiite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/hazburgite.json b/src/test/resources/assets/strata/blockstates/hazburgite.json deleted file mode 100644 index e8a225b8..00000000 --- a/src/test/resources/assets/strata/blockstates/hazburgite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/hazburgite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/hornblendite.json b/src/test/resources/assets/strata/blockstates/hornblendite.json deleted file mode 100644 index 1a19c140..00000000 --- a/src/test/resources/assets/strata/blockstates/hornblendite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/hornblendite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/hornfels.json b/src/test/resources/assets/strata/blockstates/hornfels.json deleted file mode 100644 index 474d2013..00000000 --- a/src/test/resources/assets/strata/blockstates/hornfels.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/hornfels" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/hyaloclastit.json b/src/test/resources/assets/strata/blockstates/hyaloclastit.json deleted file mode 100644 index 450c0bf9..00000000 --- a/src/test/resources/assets/strata/blockstates/hyaloclastit.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/hyaloclastit" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/hyaloclastite.json b/src/test/resources/assets/strata/blockstates/hyaloclastite.json deleted file mode 100644 index 806edab4..00000000 --- a/src/test/resources/assets/strata/blockstates/hyaloclastite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/hyaloclastite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/icelandite.json b/src/test/resources/assets/strata/blockstates/icelandite.json deleted file mode 100644 index 87411150..00000000 --- a/src/test/resources/assets/strata/blockstates/icelandite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/icelandite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/ijolite.json b/src/test/resources/assets/strata/blockstates/ijolite.json deleted file mode 100644 index 83aa2ee1..00000000 --- a/src/test/resources/assets/strata/blockstates/ijolite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/ijolite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/itacolumite.json b/src/test/resources/assets/strata/blockstates/itacolumite.json deleted file mode 100644 index 472bda3b..00000000 --- a/src/test/resources/assets/strata/blockstates/itacolumite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/itacolumite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/jadeitite.json b/src/test/resources/assets/strata/blockstates/jadeitite.json deleted file mode 100644 index 0b8dc188..00000000 --- a/src/test/resources/assets/strata/blockstates/jadeitite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/jadeitite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/jasperoid.json b/src/test/resources/assets/strata/blockstates/jasperoid.json deleted file mode 100644 index 4d9fe5b5..00000000 --- a/src/test/resources/assets/strata/blockstates/jasperoid.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/jasperoid" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/jaspillite.json b/src/test/resources/assets/strata/blockstates/jaspillite.json deleted file mode 100644 index b4ef29d1..00000000 --- a/src/test/resources/assets/strata/blockstates/jaspillite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/jaspillite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/jaspillite_brick_slab.json b/src/test/resources/assets/strata/blockstates/jaspillite_brick_slab.json deleted file mode 100644 index 503bf2fa..00000000 --- a/src/test/resources/assets/strata/blockstates/jaspillite_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/jaspillite_brick_slab" }, - "type=top": { "model": "strata:block/jaspillite_brick_slab_top" }, - "type=double": { "model": "strata:block/jaspillite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/jaspillite_brick_stairs.json b/src/test/resources/assets/strata/blockstates/jaspillite_brick_stairs.json deleted file mode 100644 index 5deaa52d..00000000 --- a/src/test/resources/assets/strata/blockstates/jaspillite_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/jaspillite_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/jaspillite_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/jaspillite_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/jaspillite_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/jaspillite_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/jaspillite_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/jaspillite_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/jaspillite_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/jaspillite_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/jaspillite_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/jaspillite_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/jaspillite_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/jaspillite_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/jaspillite_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/jaspillite_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/jaspillite_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/jaspillite_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/jaspillite_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/jaspillite_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/jaspillite_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/jaspillite_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/jaspillite_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/jaspillite_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/jaspillite_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/jaspillite_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/jaspillite_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/jaspillite_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/jaspillite_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/jaspillite_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/jaspillite_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/jaspillite_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/jaspillite_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/jaspillite_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/jaspillite_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/jaspillite_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/jaspillite_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/jaspillite_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/jaspillite_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/jaspillite_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/jaspillite_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/jaspillite_brick_wall.json b/src/test/resources/assets/strata/blockstates/jaspillite_brick_wall.json deleted file mode 100644 index e790a8c4..00000000 --- a/src/test/resources/assets/strata/blockstates/jaspillite_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/jaspillite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/jaspillite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/jaspillite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/jaspillite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/jaspillite_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/jaspillite_bricks.json b/src/test/resources/assets/strata/blockstates/jaspillite_bricks.json deleted file mode 100644 index 76c529da..00000000 --- a/src/test/resources/assets/strata/blockstates/jaspillite_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/jaspillite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/jaspillite_button.json b/src/test/resources/assets/strata/blockstates/jaspillite_button.json deleted file mode 100644 index b27c5ab2..00000000 --- a/src/test/resources/assets/strata/blockstates/jaspillite_button.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "variants": { - "face=floor,facing=east,powered=false": { "model": "strata:block/jaspillite_button", "y": 90 }, - "face=floor,facing=west,powered=false": { "model": "strata:block/jaspillite_button", "y": 270 }, - "face=floor,facing=south,powered=false": { "model": "strata:block/jaspillite_button", "y": 180 }, - "face=floor,facing=north,powered=false": { "model": "strata:block/jaspillite_button" }, - "face=wall,facing=east,powered=false": { "model": "strata:block/jaspillite_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=false": { "model": "strata:block/jaspillite_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=false": { "model": "strata:block/jaspillite_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=false": { "model": "strata:block/jaspillite_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=false": { "model": "strata:block/jaspillite_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=false": { "model": "strata:block/jaspillite_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=false": { "model": "strata:block/jaspillite_button", "x": 180 }, - "face=ceiling,facing=north,powered=false": { "model": "strata:block/jaspillite_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/jaspillite_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/jaspillite_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/jaspillite_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/jaspillite_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/jaspillite_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/jaspillite_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/jaspillite_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/jaspillite_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/jaspillite_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/jaspillite_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/jaspillite_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/jaspillite_button", "x": 180, "y": 180 } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/jaspillite_cobblestone.json b/src/test/resources/assets/strata/blockstates/jaspillite_cobblestone.json deleted file mode 100644 index 79cc05da..00000000 --- a/src/test/resources/assets/strata/blockstates/jaspillite_cobblestone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/jaspillite_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/jaspillite_cobblestone_slab.json b/src/test/resources/assets/strata/blockstates/jaspillite_cobblestone_slab.json deleted file mode 100644 index 768bf353..00000000 --- a/src/test/resources/assets/strata/blockstates/jaspillite_cobblestone_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/jaspillite_cobblestone_slab" }, - "type=top": { "model": "strata:block/jaspillite_cobblestone_slab_top" }, - "type=double": { "model": "strata:block/jaspillite_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/jaspillite_cobblestone_stairs.json b/src/test/resources/assets/strata/blockstates/jaspillite_cobblestone_stairs.json deleted file mode 100644 index 437ac3b6..00000000 --- a/src/test/resources/assets/strata/blockstates/jaspillite_cobblestone_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/jaspillite_cobblestone_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/jaspillite_cobblestone_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/jaspillite_cobblestone_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/jaspillite_cobblestone_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/jaspillite_cobblestone_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/jaspillite_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/jaspillite_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/jaspillite_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/jaspillite_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/jaspillite_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/jaspillite_cobblestone_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/jaspillite_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/jaspillite_cobblestone_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/jaspillite_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/jaspillite_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/jaspillite_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/jaspillite_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/jaspillite_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/jaspillite_cobblestone_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/jaspillite_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/jaspillite_cobblestone_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/jaspillite_cobblestone_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/jaspillite_cobblestone_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/jaspillite_cobblestone_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/jaspillite_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/jaspillite_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/jaspillite_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/jaspillite_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/jaspillite_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/jaspillite_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/jaspillite_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/jaspillite_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/jaspillite_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/jaspillite_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/jaspillite_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/jaspillite_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/jaspillite_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/jaspillite_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/jaspillite_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/jaspillite_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/jaspillite_cobblestone_wall.json b/src/test/resources/assets/strata/blockstates/jaspillite_cobblestone_wall.json deleted file mode 100644 index 6c785b3a..00000000 --- a/src/test/resources/assets/strata/blockstates/jaspillite_cobblestone_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/jaspillite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/jaspillite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/jaspillite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/jaspillite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/jaspillite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/jaspillite_slab.json b/src/test/resources/assets/strata/blockstates/jaspillite_slab.json deleted file mode 100644 index aeeae1e1..00000000 --- a/src/test/resources/assets/strata/blockstates/jaspillite_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/jaspillite_slab" }, - "type=top": { "model": "strata:block/jaspillite_slab_top" }, - "type=double": { "model": "strata:block/jaspillite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/jaspillite_stairs.json b/src/test/resources/assets/strata/blockstates/jaspillite_stairs.json deleted file mode 100644 index 570a5e1c..00000000 --- a/src/test/resources/assets/strata/blockstates/jaspillite_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/jaspillite_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/jaspillite_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/jaspillite_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/jaspillite_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/jaspillite_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/jaspillite_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/jaspillite_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/jaspillite_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/jaspillite_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/jaspillite_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/jaspillite_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/jaspillite_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/jaspillite_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/jaspillite_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/jaspillite_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/jaspillite_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/jaspillite_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/jaspillite_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/jaspillite_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/jaspillite_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/jaspillite_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/jaspillite_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/jaspillite_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/jaspillite_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/jaspillite_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/jaspillite_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/jaspillite_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/jaspillite_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/jaspillite_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/jaspillite_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/jaspillite_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/jaspillite_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/jaspillite_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/jaspillite_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/jaspillite_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/jaspillite_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/jaspillite_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/jaspillite_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/jaspillite_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/jaspillite_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/jaspillite_wall.json b/src/test/resources/assets/strata/blockstates/jaspillite_wall.json deleted file mode 100644 index 13b6fc64..00000000 --- a/src/test/resources/assets/strata/blockstates/jaspillite_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/jaspillite_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/jaspillite_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/jaspillite_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/jaspillite_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/jaspillite_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/kenyte.json b/src/test/resources/assets/strata/blockstates/kenyte.json deleted file mode 100644 index 632c134a..00000000 --- a/src/test/resources/assets/strata/blockstates/kenyte.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/kenyte" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/kimberlite.json b/src/test/resources/assets/strata/blockstates/kimberlite.json deleted file mode 100644 index 1093cb11..00000000 --- a/src/test/resources/assets/strata/blockstates/kimberlite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/kimberlite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/komatiite.json b/src/test/resources/assets/strata/blockstates/komatiite.json deleted file mode 100644 index 221b1a33..00000000 --- a/src/test/resources/assets/strata/blockstates/komatiite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/komatiite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/lamprophyre.json b/src/test/resources/assets/strata/blockstates/lamprophyre.json deleted file mode 100644 index 97d775b1..00000000 --- a/src/test/resources/assets/strata/blockstates/lamprophyre.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/lamprophyre" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/larvikite.json b/src/test/resources/assets/strata/blockstates/larvikite.json deleted file mode 100644 index e870dc14..00000000 --- a/src/test/resources/assets/strata/blockstates/larvikite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/larvikite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/laterite.json b/src/test/resources/assets/strata/blockstates/laterite.json deleted file mode 100644 index 77687015..00000000 --- a/src/test/resources/assets/strata/blockstates/laterite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/laterite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/latite.json b/src/test/resources/assets/strata/blockstates/latite.json deleted file mode 100644 index e0e786e3..00000000 --- a/src/test/resources/assets/strata/blockstates/latite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/latite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/lherzolite.json b/src/test/resources/assets/strata/blockstates/lherzolite.json deleted file mode 100644 index b579e907..00000000 --- a/src/test/resources/assets/strata/blockstates/lherzolite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/lherzolite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/limestone.json b/src/test/resources/assets/strata/blockstates/limestone.json deleted file mode 100644 index 953617f8..00000000 --- a/src/test/resources/assets/strata/blockstates/limestone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/limestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/limestone_brick_slab.json b/src/test/resources/assets/strata/blockstates/limestone_brick_slab.json deleted file mode 100644 index 3b96134f..00000000 --- a/src/test/resources/assets/strata/blockstates/limestone_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/limestone_brick_slab" }, - "type=top": { "model": "strata:block/limestone_brick_slab_top" }, - "type=double": { "model": "strata:block/limestone_brick" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/limestone_brick_stairs.json b/src/test/resources/assets/strata/blockstates/limestone_brick_stairs.json deleted file mode 100644 index 534ae0e4..00000000 --- a/src/test/resources/assets/strata/blockstates/limestone_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/limestone_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/limestone_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/limestone_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/limestone_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/limestone_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/limestone_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/limestone_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/limestone_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/limestone_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/limestone_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/limestone_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/limestone_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/limestone_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/limestone_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/limestone_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/limestone_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/limestone_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/limestone_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/limestone_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/limestone_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/limestone_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/limestone_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/limestone_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/limestone_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/limestone_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/limestone_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/limestone_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/limestone_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/limestone_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/limestone_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/limestone_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/limestone_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/limestone_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/limestone_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/limestone_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/limestone_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/limestone_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/limestone_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/limestone_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/limestone_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/limestone_brick_wall.json b/src/test/resources/assets/strata/blockstates/limestone_brick_wall.json deleted file mode 100644 index 0f0d8699..00000000 --- a/src/test/resources/assets/strata/blockstates/limestone_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/limestone_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/limestone_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/limestone_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/limestone_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/limestone_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/test/resources/assets/strata/blockstates/limestone_bricks.json b/src/test/resources/assets/strata/blockstates/limestone_bricks.json deleted file mode 100644 index d2e484f7..00000000 --- a/src/test/resources/assets/strata/blockstates/limestone_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/limestone_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/limestone_button.json b/src/test/resources/assets/strata/blockstates/limestone_button.json deleted file mode 100644 index 76e58b79..00000000 --- a/src/test/resources/assets/strata/blockstates/limestone_button.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "variants": { - "face=floor,facing=east,powered=false": { "model": "strata:block/limestone_button", "y": 90 }, - "face=floor,facing=west,powered=false": { "model": "strata:block/limestone_button", "y": 270 }, - "face=floor,facing=south,powered=false": { "model": "strata:block/limestone_button", "y": 180 }, - "face=floor,facing=north,powered=false": { "model": "strata:block/limestone_button" }, - "face=wall,facing=east,powered=false": { "model": "strata:block/limestone_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=false": { "model": "strata:block/limestone_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=false": { "model": "strata:block/limestone_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=false": { "model": "strata:block/limestone_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=false": { "model": "strata:block/limestone_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=false": { "model": "strata:block/limestone_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=false": { "model": "strata:block/limestone_button", "x": 180 }, - "face=ceiling,facing=north,powered=false": { "model": "strata:block/limestone_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/limestone_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/limestone_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/limestone_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/limestone_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/limestone_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/limestone_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/limestone_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/limestone_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/limestone_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/limestone_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/limestone_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/limestone_button", "x": 180, "y": 180 } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/limestone_pressure_plate.json b/src/test/resources/assets/strata/blockstates/limestone_pressure_plate.json deleted file mode 100644 index ae37be84..00000000 --- a/src/test/resources/assets/strata/blockstates/limestone_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "variants": { - "powered=false": { "model": "strata:block/limestone_pressure_plate" }, - "powered=true": { "model": "strata:block/limestone_pressure_plate_down" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/limestone_slab.json b/src/test/resources/assets/strata/blockstates/limestone_slab.json deleted file mode 100644 index 78ecae2d..00000000 --- a/src/test/resources/assets/strata/blockstates/limestone_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/limestone_slab" }, - "type=top": { "model": "strata:block/limestone_slab_top" }, - "type=double": { "model": "strata:block/limestone" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/limestone_stairs.json b/src/test/resources/assets/strata/blockstates/limestone_stairs.json deleted file mode 100644 index 17e7a84d..00000000 --- a/src/test/resources/assets/strata/blockstates/limestone_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/limestone_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/limestone_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/limestone_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/limestone_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/limestone_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/limestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/limestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/limestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/limestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/limestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/limestone_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/limestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/limestone_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/limestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/limestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/limestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/limestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/limestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/limestone_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/limestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/limestone_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/limestone_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/limestone_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/limestone_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/limestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/limestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/limestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/limestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/limestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/limestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/limestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/limestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/limestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/limestone_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/limestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/limestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/limestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/limestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/limestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/limestone_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/limestone_wall.json b/src/test/resources/assets/strata/blockstates/limestone_wall.json deleted file mode 100644 index ee9c7a07..00000000 --- a/src/test/resources/assets/strata/blockstates/limestone_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/limestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/limestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/limestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/limestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/limestone_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/test/resources/assets/strata/blockstates/litchfieldite.json b/src/test/resources/assets/strata/blockstates/litchfieldite.json deleted file mode 100644 index 91a59e5d..00000000 --- a/src/test/resources/assets/strata/blockstates/litchfieldite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/litchfieldite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/llanite.json b/src/test/resources/assets/strata/blockstates/llanite.json deleted file mode 100644 index 99065c07..00000000 --- a/src/test/resources/assets/strata/blockstates/llanite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/llanite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/luxullianite.json b/src/test/resources/assets/strata/blockstates/luxullianite.json deleted file mode 100644 index 9472c9dc..00000000 --- a/src/test/resources/assets/strata/blockstates/luxullianite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/luxullianite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mangerite.json b/src/test/resources/assets/strata/blockstates/mangerite.json deleted file mode 100644 index ee222075..00000000 --- a/src/test/resources/assets/strata/blockstates/mangerite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mangerite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/marble.json b/src/test/resources/assets/strata/blockstates/marble.json deleted file mode 100644 index 11aaed4a..00000000 --- a/src/test/resources/assets/strata/blockstates/marble.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/marble" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/marble_brick_slab.json b/src/test/resources/assets/strata/blockstates/marble_brick_slab.json deleted file mode 100644 index d5637182..00000000 --- a/src/test/resources/assets/strata/blockstates/marble_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/marble_brick_slab" }, - "type=top": { "model": "strata:block/marble_brick_slab_top" }, - "type=double": { "model": "strata:block/marble_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/marble_brick_stairs.json b/src/test/resources/assets/strata/blockstates/marble_brick_stairs.json deleted file mode 100644 index 854f4674..00000000 --- a/src/test/resources/assets/strata/blockstates/marble_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/marble_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/marble_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/marble_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/marble_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/marble_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/marble_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/marble_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/marble_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/marble_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/marble_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/marble_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/marble_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/marble_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/marble_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/marble_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/marble_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/marble_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/marble_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/marble_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/marble_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/marble_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/marble_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/marble_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/marble_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/marble_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/marble_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/marble_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/marble_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/marble_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/marble_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/marble_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/marble_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/marble_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/marble_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/marble_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/marble_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/marble_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/marble_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/marble_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/marble_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/marble_brick_wall.json b/src/test/resources/assets/strata/blockstates/marble_brick_wall.json deleted file mode 100644 index e9737be8..00000000 --- a/src/test/resources/assets/strata/blockstates/marble_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/marble_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/marble_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/marble_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/marble_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/marble_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/marble_bricks.json b/src/test/resources/assets/strata/blockstates/marble_bricks.json deleted file mode 100644 index 834e984d..00000000 --- a/src/test/resources/assets/strata/blockstates/marble_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/marble_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/marble_button.json b/src/test/resources/assets/strata/blockstates/marble_button.json deleted file mode 100644 index 5a716eeb..00000000 --- a/src/test/resources/assets/strata/blockstates/marble_button.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "variants": { - "face=floor,facing=east,powered=false": { "model": "strata:block/marble_button", "y": 90 }, - "face=floor,facing=west,powered=false": { "model": "strata:block/marble_button", "y": 270 }, - "face=floor,facing=south,powered=false": { "model": "strata:block/marble_button", "y": 180 }, - "face=floor,facing=north,powered=false": { "model": "strata:block/marble_button" }, - "face=wall,facing=east,powered=false": { "model": "strata:block/marble_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=false": { "model": "strata:block/marble_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=false": { "model": "strata:block/marble_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=false": { "model": "strata:block/marble_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=false": { "model": "strata:block/marble_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=false": { "model": "strata:block/marble_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=false": { "model": "strata:block/marble_button", "x": 180 }, - "face=ceiling,facing=north,powered=false": { "model": "strata:block/marble_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/marble_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/marble_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/marble_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/marble_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/marble_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/marble_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/marble_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/marble_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/marble_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/marble_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/marble_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/marble_button", "x": 180, "y": 180 } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/marble_cobblestone.json b/src/test/resources/assets/strata/blockstates/marble_cobblestone.json deleted file mode 100644 index fadf80f5..00000000 --- a/src/test/resources/assets/strata/blockstates/marble_cobblestone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/marble_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/marble_cobblestone_slab.json b/src/test/resources/assets/strata/blockstates/marble_cobblestone_slab.json deleted file mode 100644 index 909155e0..00000000 --- a/src/test/resources/assets/strata/blockstates/marble_cobblestone_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/marble_cobblestone_slab" }, - "type=top": { "model": "strata:block/marble_cobblestone_slab_top" }, - "type=double": { "model": "strata:block/marble_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/marble_cobblestone_stairs.json b/src/test/resources/assets/strata/blockstates/marble_cobblestone_stairs.json deleted file mode 100644 index 64f53e20..00000000 --- a/src/test/resources/assets/strata/blockstates/marble_cobblestone_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/marble_cobblestone_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/marble_cobblestone_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/marble_cobblestone_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/marble_cobblestone_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/marble_cobblestone_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/marble_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/marble_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/marble_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/marble_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/marble_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/marble_cobblestone_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/marble_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/marble_cobblestone_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/marble_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/marble_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/marble_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/marble_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/marble_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/marble_cobblestone_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/marble_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/marble_cobblestone_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/marble_cobblestone_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/marble_cobblestone_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/marble_cobblestone_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/marble_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/marble_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/marble_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/marble_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/marble_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/marble_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/marble_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/marble_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/marble_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/marble_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/marble_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/marble_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/marble_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/marble_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/marble_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/marble_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/marble_cobblestone_wall.json b/src/test/resources/assets/strata/blockstates/marble_cobblestone_wall.json deleted file mode 100644 index 0c29a55b..00000000 --- a/src/test/resources/assets/strata/blockstates/marble_cobblestone_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/marble_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/marble_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/marble_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/marble_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/marble_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/marble_slab.json b/src/test/resources/assets/strata/blockstates/marble_slab.json deleted file mode 100644 index 6bc8cfdb..00000000 --- a/src/test/resources/assets/strata/blockstates/marble_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/marble_slab" }, - "type=top": { "model": "strata:block/marble_slab_top" }, - "type=double": { "model": "strata:block/marble" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/marble_stairs.json b/src/test/resources/assets/strata/blockstates/marble_stairs.json deleted file mode 100644 index 7c2113eb..00000000 --- a/src/test/resources/assets/strata/blockstates/marble_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/marble_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/marble_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/marble_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/marble_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/marble_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/marble_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/marble_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/marble_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/marble_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/marble_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/marble_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/marble_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/marble_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/marble_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/marble_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/marble_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/marble_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/marble_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/marble_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/marble_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/marble_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/marble_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/marble_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/marble_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/marble_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/marble_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/marble_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/marble_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/marble_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/marble_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/marble_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/marble_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/marble_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/marble_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/marble_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/marble_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/marble_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/marble_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/marble_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/marble_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/marble_wall.json b/src/test/resources/assets/strata/blockstates/marble_wall.json deleted file mode 100644 index 27b3650b..00000000 --- a/src/test/resources/assets/strata/blockstates/marble_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/marble_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/marble_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/marble_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/marble_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/marble_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/marl.json b/src/test/resources/assets/strata/blockstates/marl.json deleted file mode 100644 index c34264af..00000000 --- a/src/test/resources/assets/strata/blockstates/marl.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/marl" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/metapelite.json b/src/test/resources/assets/strata/blockstates/metapelite.json deleted file mode 100644 index 4b4526ec..00000000 --- a/src/test/resources/assets/strata/blockstates/metapelite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/metapelite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/metapsammite.json b/src/test/resources/assets/strata/blockstates/metapsammite.json deleted file mode 100644 index 2474cbb3..00000000 --- a/src/test/resources/assets/strata/blockstates/metapsammite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/metapsammite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/migmatite.json b/src/test/resources/assets/strata/blockstates/migmatite.json deleted file mode 100644 index 5127ff08..00000000 --- a/src/test/resources/assets/strata/blockstates/migmatite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/migmatite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/minette.json b/src/test/resources/assets/strata/blockstates/minette.json deleted file mode 100644 index b1b91797..00000000 --- a/src/test/resources/assets/strata/blockstates/minette.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/minette" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/monzogranite.json b/src/test/resources/assets/strata/blockstates/monzogranite.json deleted file mode 100644 index ee549d5e..00000000 --- a/src/test/resources/assets/strata/blockstates/monzogranite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/monzogranite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/monzonite.json b/src/test/resources/assets/strata/blockstates/monzonite.json deleted file mode 100644 index 07b7a580..00000000 --- a/src/test/resources/assets/strata/blockstates/monzonite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/monzonite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_aa_brick_slab.json b/src/test/resources/assets/strata/blockstates/mossy_aa_brick_slab.json deleted file mode 100644 index 26ae35f6..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_aa_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/mossy_aa_brick_slab" }, - "type=top": { "model": "strata:block/mossy_aa_brick_slab_top" }, - "type=double": { "model": "strata:block/mossy_aa_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_aa_brick_stairs.json b/src/test/resources/assets/strata/blockstates/mossy_aa_brick_stairs.json deleted file mode 100644 index 4d2444e5..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_aa_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/mossy_aa_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/mossy_aa_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/mossy_aa_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/mossy_aa_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/mossy_aa_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/mossy_aa_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/mossy_aa_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/mossy_aa_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/mossy_aa_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/mossy_aa_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/mossy_aa_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/mossy_aa_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/mossy_aa_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/mossy_aa_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/mossy_aa_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/mossy_aa_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/mossy_aa_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/mossy_aa_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/mossy_aa_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/mossy_aa_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/mossy_aa_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/mossy_aa_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/mossy_aa_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/mossy_aa_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/mossy_aa_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/mossy_aa_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/mossy_aa_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/mossy_aa_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/mossy_aa_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/mossy_aa_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/mossy_aa_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/mossy_aa_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/mossy_aa_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/mossy_aa_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/mossy_aa_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/mossy_aa_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/mossy_aa_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/mossy_aa_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/mossy_aa_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/mossy_aa_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_aa_brick_wall.json b/src/test/resources/assets/strata/blockstates/mossy_aa_brick_wall.json deleted file mode 100644 index 311224f9..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_aa_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_aa_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_aa_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_aa_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_aa_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_aa_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_aa_bricks.json b/src/test/resources/assets/strata/blockstates/mossy_aa_bricks.json deleted file mode 100644 index 25b07a6b..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_aa_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mossy_aa_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_aa_cobblestone.json b/src/test/resources/assets/strata/blockstates/mossy_aa_cobblestone.json deleted file mode 100644 index 1c0eb1ce..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_aa_cobblestone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mossy_aa_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_aa_cobblestone_slab.json b/src/test/resources/assets/strata/blockstates/mossy_aa_cobblestone_slab.json deleted file mode 100644 index e4efb7f7..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_aa_cobblestone_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/mossy_aa_cobblestone_slab" }, - "type=top": { "model": "strata:block/mossy_aa_cobblestone_slab_top" }, - "type=double": { "model": "strata:block/mossy_aa_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_aa_cobblestone_stairs.json b/src/test/resources/assets/strata/blockstates/mossy_aa_cobblestone_stairs.json deleted file mode 100644 index 8076ca78..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_aa_cobblestone_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/mossy_aa_cobblestone_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/mossy_aa_cobblestone_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/mossy_aa_cobblestone_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/mossy_aa_cobblestone_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/mossy_aa_cobblestone_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/mossy_aa_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/mossy_aa_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/mossy_aa_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/mossy_aa_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/mossy_aa_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/mossy_aa_cobblestone_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/mossy_aa_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/mossy_aa_cobblestone_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/mossy_aa_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/mossy_aa_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/mossy_aa_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/mossy_aa_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/mossy_aa_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/mossy_aa_cobblestone_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/mossy_aa_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/mossy_aa_cobblestone_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/mossy_aa_cobblestone_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/mossy_aa_cobblestone_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/mossy_aa_cobblestone_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/mossy_aa_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/mossy_aa_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/mossy_aa_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/mossy_aa_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/mossy_aa_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/mossy_aa_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/mossy_aa_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/mossy_aa_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/mossy_aa_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/mossy_aa_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/mossy_aa_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/mossy_aa_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/mossy_aa_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/mossy_aa_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/mossy_aa_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/mossy_aa_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_aa_cobblestone_wall.json b/src/test/resources/assets/strata/blockstates/mossy_aa_cobblestone_wall.json deleted file mode 100644 index 27dbcd96..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_aa_cobblestone_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_aa_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_aa_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_aa_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_aa_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_aa_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_adakite_brick_slab.json b/src/test/resources/assets/strata/blockstates/mossy_adakite_brick_slab.json deleted file mode 100644 index c70ee6d8..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_adakite_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/mossy_adakite_brick_slab" }, - "type=top": { "model": "strata:block/mossy_adakite_brick_slab_top" }, - "type=double": { "model": "strata:block/mossy_adakite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_adakite_brick_stairs.json b/src/test/resources/assets/strata/blockstates/mossy_adakite_brick_stairs.json deleted file mode 100644 index 90caf2dd..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_adakite_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/mossy_adakite_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/mossy_adakite_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/mossy_adakite_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/mossy_adakite_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/mossy_adakite_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/mossy_adakite_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/mossy_adakite_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/mossy_adakite_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/mossy_adakite_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/mossy_adakite_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/mossy_adakite_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/mossy_adakite_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/mossy_adakite_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/mossy_adakite_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/mossy_adakite_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/mossy_adakite_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/mossy_adakite_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/mossy_adakite_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/mossy_adakite_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/mossy_adakite_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/mossy_adakite_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/mossy_adakite_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/mossy_adakite_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/mossy_adakite_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/mossy_adakite_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/mossy_adakite_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/mossy_adakite_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/mossy_adakite_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/mossy_adakite_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/mossy_adakite_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/mossy_adakite_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/mossy_adakite_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/mossy_adakite_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/mossy_adakite_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/mossy_adakite_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/mossy_adakite_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/mossy_adakite_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/mossy_adakite_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/mossy_adakite_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/mossy_adakite_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_adakite_brick_wall.json b/src/test/resources/assets/strata/blockstates/mossy_adakite_brick_wall.json deleted file mode 100644 index 5b16b8a3..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_adakite_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_adakite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_adakite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_adakite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_adakite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_adakite_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_adakite_bricks.json b/src/test/resources/assets/strata/blockstates/mossy_adakite_bricks.json deleted file mode 100644 index 660a2ee8..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_adakite_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mossy_adakite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_adakite_cobblestone.json b/src/test/resources/assets/strata/blockstates/mossy_adakite_cobblestone.json deleted file mode 100644 index c7fe7e34..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_adakite_cobblestone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mossy_adakite_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_adakite_cobblestone_slab.json b/src/test/resources/assets/strata/blockstates/mossy_adakite_cobblestone_slab.json deleted file mode 100644 index fadf19ff..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_adakite_cobblestone_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/mossy_adakite_cobblestone_slab" }, - "type=top": { "model": "strata:block/mossy_adakite_cobblestone_slab_top" }, - "type=double": { "model": "strata:block/mossy_adakite_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_adakite_cobblestone_stairs.json b/src/test/resources/assets/strata/blockstates/mossy_adakite_cobblestone_stairs.json deleted file mode 100644 index b7644b95..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_adakite_cobblestone_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/mossy_adakite_cobblestone_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/mossy_adakite_cobblestone_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/mossy_adakite_cobblestone_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/mossy_adakite_cobblestone_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/mossy_adakite_cobblestone_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/mossy_adakite_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/mossy_adakite_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/mossy_adakite_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/mossy_adakite_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/mossy_adakite_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/mossy_adakite_cobblestone_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/mossy_adakite_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/mossy_adakite_cobblestone_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/mossy_adakite_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/mossy_adakite_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/mossy_adakite_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/mossy_adakite_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/mossy_adakite_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/mossy_adakite_cobblestone_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/mossy_adakite_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/mossy_adakite_cobblestone_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/mossy_adakite_cobblestone_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/mossy_adakite_cobblestone_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/mossy_adakite_cobblestone_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/mossy_adakite_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/mossy_adakite_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/mossy_adakite_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/mossy_adakite_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/mossy_adakite_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/mossy_adakite_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/mossy_adakite_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/mossy_adakite_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/mossy_adakite_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/mossy_adakite_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/mossy_adakite_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/mossy_adakite_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/mossy_adakite_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/mossy_adakite_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/mossy_adakite_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/mossy_adakite_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_adakite_cobblestone_wall.json b/src/test/resources/assets/strata/blockstates/mossy_adakite_cobblestone_wall.json deleted file mode 100644 index b4ecec79..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_adakite_cobblestone_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_adakite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_adakite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_adakite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_adakite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_adakite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_amphibolite_brick_slab.json b/src/test/resources/assets/strata/blockstates/mossy_amphibolite_brick_slab.json deleted file mode 100644 index 40f5be3b..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_amphibolite_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/mossy_amphibolite_brick_slab" }, - "type=top": { "model": "strata:block/mossy_amphibolite_brick_slab_top" }, - "type=double": { "model": "strata:block/mossy_amphibolite_brick" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/mossy_amphibolite_brick_stairs.json b/src/test/resources/assets/strata/blockstates/mossy_amphibolite_brick_stairs.json deleted file mode 100644 index da425ef1..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_amphibolite_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/mossy_amphibolite_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/mossy_amphibolite_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/mossy_amphibolite_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/mossy_amphibolite_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/mossy_amphibolite_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/mossy_amphibolite_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/mossy_amphibolite_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/mossy_amphibolite_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/mossy_amphibolite_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/mossy_amphibolite_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/mossy_amphibolite_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/mossy_amphibolite_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/mossy_amphibolite_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/mossy_amphibolite_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/mossy_amphibolite_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/mossy_amphibolite_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/mossy_amphibolite_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/mossy_amphibolite_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/mossy_amphibolite_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/mossy_amphibolite_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/mossy_amphibolite_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/mossy_amphibolite_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/mossy_amphibolite_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/mossy_amphibolite_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/mossy_amphibolite_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/mossy_amphibolite_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/mossy_amphibolite_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/mossy_amphibolite_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/mossy_amphibolite_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/mossy_amphibolite_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/mossy_amphibolite_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/mossy_amphibolite_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/mossy_amphibolite_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/mossy_amphibolite_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/mossy_amphibolite_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/mossy_amphibolite_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/mossy_amphibolite_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/mossy_amphibolite_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/mossy_amphibolite_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/mossy_amphibolite_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/mossy_amphibolite_brick_wall.json b/src/test/resources/assets/strata/blockstates/mossy_amphibolite_brick_wall.json deleted file mode 100644 index 2398d655..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_amphibolite_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_amphibolite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_amphibolite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_amphibolite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_amphibolite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_amphibolite_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/test/resources/assets/strata/blockstates/mossy_amphibolite_bricks.json b/src/test/resources/assets/strata/blockstates/mossy_amphibolite_bricks.json deleted file mode 100644 index d7a57fae..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_amphibolite_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mossy_amphibolite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_argillite_brick_slab.json b/src/test/resources/assets/strata/blockstates/mossy_argillite_brick_slab.json deleted file mode 100644 index 6662fb08..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_argillite_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/mossy_argillite_brick_slab" }, - "type=top": { "model": "strata:block/mossy_argillite_brick_slab_top" }, - "type=double": { "model": "strata:block/mossy_argillite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_argillite_brick_stairs.json b/src/test/resources/assets/strata/blockstates/mossy_argillite_brick_stairs.json deleted file mode 100644 index f129a5cd..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_argillite_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/mossy_argillite_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/mossy_argillite_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/mossy_argillite_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/mossy_argillite_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/mossy_argillite_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/mossy_argillite_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/mossy_argillite_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/mossy_argillite_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/mossy_argillite_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/mossy_argillite_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/mossy_argillite_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/mossy_argillite_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/mossy_argillite_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/mossy_argillite_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/mossy_argillite_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/mossy_argillite_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/mossy_argillite_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/mossy_argillite_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/mossy_argillite_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/mossy_argillite_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/mossy_argillite_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/mossy_argillite_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/mossy_argillite_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/mossy_argillite_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/mossy_argillite_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/mossy_argillite_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/mossy_argillite_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/mossy_argillite_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/mossy_argillite_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/mossy_argillite_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/mossy_argillite_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/mossy_argillite_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/mossy_argillite_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/mossy_argillite_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/mossy_argillite_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/mossy_argillite_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/mossy_argillite_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/mossy_argillite_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/mossy_argillite_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/mossy_argillite_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_argillite_brick_wall.json b/src/test/resources/assets/strata/blockstates/mossy_argillite_brick_wall.json deleted file mode 100644 index e310fa0e..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_argillite_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_argillite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_argillite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_argillite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_argillite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_argillite_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_argillite_bricks.json b/src/test/resources/assets/strata/blockstates/mossy_argillite_bricks.json deleted file mode 100644 index 1be3e8a2..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_argillite_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mossy_argillite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_argillite_cobblestone.json b/src/test/resources/assets/strata/blockstates/mossy_argillite_cobblestone.json deleted file mode 100644 index 1b6668fb..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_argillite_cobblestone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mossy_argillite_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_argillite_cobblestone_slab.json b/src/test/resources/assets/strata/blockstates/mossy_argillite_cobblestone_slab.json deleted file mode 100644 index 065d8ce3..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_argillite_cobblestone_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/mossy_argillite_cobblestone_slab" }, - "type=top": { "model": "strata:block/mossy_argillite_cobblestone_slab_top" }, - "type=double": { "model": "strata:block/mossy_argillite_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_argillite_cobblestone_stairs.json b/src/test/resources/assets/strata/blockstates/mossy_argillite_cobblestone_stairs.json deleted file mode 100644 index 676f86c0..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_argillite_cobblestone_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/mossy_argillite_cobblestone_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/mossy_argillite_cobblestone_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/mossy_argillite_cobblestone_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/mossy_argillite_cobblestone_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/mossy_argillite_cobblestone_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/mossy_argillite_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/mossy_argillite_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/mossy_argillite_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/mossy_argillite_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/mossy_argillite_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/mossy_argillite_cobblestone_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/mossy_argillite_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/mossy_argillite_cobblestone_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/mossy_argillite_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/mossy_argillite_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/mossy_argillite_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/mossy_argillite_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/mossy_argillite_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/mossy_argillite_cobblestone_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/mossy_argillite_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/mossy_argillite_cobblestone_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/mossy_argillite_cobblestone_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/mossy_argillite_cobblestone_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/mossy_argillite_cobblestone_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/mossy_argillite_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/mossy_argillite_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/mossy_argillite_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/mossy_argillite_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/mossy_argillite_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/mossy_argillite_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/mossy_argillite_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/mossy_argillite_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/mossy_argillite_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/mossy_argillite_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/mossy_argillite_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/mossy_argillite_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/mossy_argillite_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/mossy_argillite_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/mossy_argillite_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/mossy_argillite_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_argillite_cobblestone_wall.json b/src/test/resources/assets/strata/blockstates/mossy_argillite_cobblestone_wall.json deleted file mode 100644 index 37d9ece3..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_argillite_cobblestone_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_argillite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_argillite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_argillite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_argillite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_argillite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_basalt_brick_slab.json b/src/test/resources/assets/strata/blockstates/mossy_basalt_brick_slab.json deleted file mode 100644 index f922c83f..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_basalt_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/mossy_basalt_brick_slab" }, - "type=top": { "model": "strata:block/mossy_basalt_brick_slab_top" }, - "type=double": { "model": "strata:block/mossy_basalt_brick" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/mossy_basalt_brick_stairs.json b/src/test/resources/assets/strata/blockstates/mossy_basalt_brick_stairs.json deleted file mode 100644 index 986f7ec3..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_basalt_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/mossy_basalt_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/mossy_basalt_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/mossy_basalt_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/mossy_basalt_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/mossy_basalt_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/mossy_basalt_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/mossy_basalt_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/mossy_basalt_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/mossy_basalt_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/mossy_basalt_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/mossy_basalt_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/mossy_basalt_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/mossy_basalt_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/mossy_basalt_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/mossy_basalt_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/mossy_basalt_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/mossy_basalt_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/mossy_basalt_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/mossy_basalt_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/mossy_basalt_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/mossy_basalt_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/mossy_basalt_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/mossy_basalt_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/mossy_basalt_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/mossy_basalt_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/mossy_basalt_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/mossy_basalt_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/mossy_basalt_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/mossy_basalt_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/mossy_basalt_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/mossy_basalt_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/mossy_basalt_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/mossy_basalt_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/mossy_basalt_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/mossy_basalt_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/mossy_basalt_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/mossy_basalt_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/mossy_basalt_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/mossy_basalt_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/mossy_basalt_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/mossy_basalt_brick_wall.json b/src/test/resources/assets/strata/blockstates/mossy_basalt_brick_wall.json deleted file mode 100644 index 70a07a52..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_basalt_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_basalt_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_basalt_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_basalt_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_basalt_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_basalt_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/test/resources/assets/strata/blockstates/mossy_basalt_bricks.json b/src/test/resources/assets/strata/blockstates/mossy_basalt_bricks.json deleted file mode 100644 index 40fa1f40..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_basalt_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mossy_basalt_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_chalk_brick_slab.json b/src/test/resources/assets/strata/blockstates/mossy_chalk_brick_slab.json deleted file mode 100644 index 7cc50d84..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_chalk_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/mossy_chalk_brick_slab" }, - "type=top": { "model": "strata:block/mossy_chalk_brick_slab_top" }, - "type=double": { "model": "strata:block/mossy_chalk_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_chalk_brick_stairs.json b/src/test/resources/assets/strata/blockstates/mossy_chalk_brick_stairs.json deleted file mode 100644 index 5d788dee..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_chalk_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/mossy_chalk_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/mossy_chalk_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/mossy_chalk_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/mossy_chalk_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/mossy_chalk_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/mossy_chalk_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/mossy_chalk_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/mossy_chalk_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/mossy_chalk_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/mossy_chalk_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/mossy_chalk_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/mossy_chalk_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/mossy_chalk_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/mossy_chalk_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/mossy_chalk_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/mossy_chalk_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/mossy_chalk_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/mossy_chalk_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/mossy_chalk_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/mossy_chalk_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/mossy_chalk_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/mossy_chalk_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/mossy_chalk_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/mossy_chalk_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/mossy_chalk_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/mossy_chalk_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/mossy_chalk_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/mossy_chalk_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/mossy_chalk_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/mossy_chalk_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/mossy_chalk_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/mossy_chalk_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/mossy_chalk_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/mossy_chalk_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/mossy_chalk_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/mossy_chalk_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/mossy_chalk_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/mossy_chalk_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/mossy_chalk_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/mossy_chalk_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_chalk_brick_wall.json b/src/test/resources/assets/strata/blockstates/mossy_chalk_brick_wall.json deleted file mode 100644 index 33a20151..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_chalk_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_chalk_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_chalk_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_chalk_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_chalk_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_chalk_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_chalk_bricks.json b/src/test/resources/assets/strata/blockstates/mossy_chalk_bricks.json deleted file mode 100644 index 404166e4..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_chalk_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mossy_chalk_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_chalk_cobblestone.json b/src/test/resources/assets/strata/blockstates/mossy_chalk_cobblestone.json deleted file mode 100644 index acc3fa0d..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_chalk_cobblestone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mossy_chalk_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_chalk_cobblestone_slab.json b/src/test/resources/assets/strata/blockstates/mossy_chalk_cobblestone_slab.json deleted file mode 100644 index 23a21cc8..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_chalk_cobblestone_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/mossy_chalk_cobblestone_slab" }, - "type=top": { "model": "strata:block/mossy_chalk_cobblestone_slab_top" }, - "type=double": { "model": "strata:block/mossy_chalk_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_chalk_cobblestone_stairs.json b/src/test/resources/assets/strata/blockstates/mossy_chalk_cobblestone_stairs.json deleted file mode 100644 index 9da18759..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_chalk_cobblestone_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/mossy_chalk_cobblestone_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/mossy_chalk_cobblestone_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/mossy_chalk_cobblestone_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/mossy_chalk_cobblestone_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/mossy_chalk_cobblestone_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/mossy_chalk_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/mossy_chalk_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/mossy_chalk_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/mossy_chalk_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/mossy_chalk_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/mossy_chalk_cobblestone_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/mossy_chalk_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/mossy_chalk_cobblestone_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/mossy_chalk_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/mossy_chalk_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/mossy_chalk_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/mossy_chalk_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/mossy_chalk_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/mossy_chalk_cobblestone_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/mossy_chalk_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/mossy_chalk_cobblestone_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/mossy_chalk_cobblestone_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/mossy_chalk_cobblestone_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/mossy_chalk_cobblestone_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/mossy_chalk_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/mossy_chalk_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/mossy_chalk_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/mossy_chalk_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/mossy_chalk_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/mossy_chalk_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/mossy_chalk_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/mossy_chalk_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/mossy_chalk_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/mossy_chalk_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/mossy_chalk_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/mossy_chalk_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/mossy_chalk_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/mossy_chalk_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/mossy_chalk_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/mossy_chalk_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_chalk_cobblestone_wall.json b/src/test/resources/assets/strata/blockstates/mossy_chalk_cobblestone_wall.json deleted file mode 100644 index fa0d81f2..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_chalk_cobblestone_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_chalk_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_chalk_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_chalk_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_chalk_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_chalk_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_eclogite_brick_slab.json b/src/test/resources/assets/strata/blockstates/mossy_eclogite_brick_slab.json deleted file mode 100644 index 08f2c233..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_eclogite_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/mossy_eclogite_brick_slab" }, - "type=top": { "model": "strata:block/mossy_eclogite_brick_slab_top" }, - "type=double": { "model": "strata:block/mossy_eclogite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_eclogite_brick_stairs.json b/src/test/resources/assets/strata/blockstates/mossy_eclogite_brick_stairs.json deleted file mode 100644 index 16ff268f..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_eclogite_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/mossy_eclogite_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/mossy_eclogite_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/mossy_eclogite_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/mossy_eclogite_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/mossy_eclogite_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/mossy_eclogite_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/mossy_eclogite_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/mossy_eclogite_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/mossy_eclogite_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/mossy_eclogite_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/mossy_eclogite_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/mossy_eclogite_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/mossy_eclogite_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/mossy_eclogite_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/mossy_eclogite_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/mossy_eclogite_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/mossy_eclogite_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/mossy_eclogite_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/mossy_eclogite_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/mossy_eclogite_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/mossy_eclogite_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/mossy_eclogite_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/mossy_eclogite_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/mossy_eclogite_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/mossy_eclogite_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/mossy_eclogite_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/mossy_eclogite_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/mossy_eclogite_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/mossy_eclogite_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/mossy_eclogite_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/mossy_eclogite_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/mossy_eclogite_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/mossy_eclogite_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/mossy_eclogite_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/mossy_eclogite_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/mossy_eclogite_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/mossy_eclogite_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/mossy_eclogite_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/mossy_eclogite_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/mossy_eclogite_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_eclogite_brick_wall.json b/src/test/resources/assets/strata/blockstates/mossy_eclogite_brick_wall.json deleted file mode 100644 index 85dc14e7..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_eclogite_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_eclogite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_eclogite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_eclogite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_eclogite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_eclogite_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_eclogite_bricks.json b/src/test/resources/assets/strata/blockstates/mossy_eclogite_bricks.json deleted file mode 100644 index a15f5257..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_eclogite_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mossy_eclogite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_eclogite_cobblestone.json b/src/test/resources/assets/strata/blockstates/mossy_eclogite_cobblestone.json deleted file mode 100644 index 263b9f14..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_eclogite_cobblestone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mossy_eclogite_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_eclogite_cobblestone_slab.json b/src/test/resources/assets/strata/blockstates/mossy_eclogite_cobblestone_slab.json deleted file mode 100644 index c7778b47..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_eclogite_cobblestone_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/mossy_eclogite_cobblestone_slab" }, - "type=top": { "model": "strata:block/mossy_eclogite_cobblestone_slab_top" }, - "type=double": { "model": "strata:block/mossy_eclogite_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_eclogite_cobblestone_stairs.json b/src/test/resources/assets/strata/blockstates/mossy_eclogite_cobblestone_stairs.json deleted file mode 100644 index b08364da..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_eclogite_cobblestone_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/mossy_eclogite_cobblestone_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/mossy_eclogite_cobblestone_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/mossy_eclogite_cobblestone_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/mossy_eclogite_cobblestone_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/mossy_eclogite_cobblestone_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/mossy_eclogite_cobblestone_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/mossy_eclogite_cobblestone_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/mossy_eclogite_cobblestone_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/mossy_eclogite_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_eclogite_cobblestone_wall.json b/src/test/resources/assets/strata/blockstates/mossy_eclogite_cobblestone_wall.json deleted file mode 100644 index 67bef0b9..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_eclogite_cobblestone_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_eclogite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_eclogite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_eclogite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_eclogite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_eclogite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_gabbro_brick_slab.json b/src/test/resources/assets/strata/blockstates/mossy_gabbro_brick_slab.json deleted file mode 100644 index 4eb0a148..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_gabbro_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/mossy_gabbro_brick_slab" }, - "type=top": { "model": "strata:block/mossy_gabbro_brick_slab_top" }, - "type=double": { "model": "strata:block/mossy_gabbro_brick" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/mossy_gabbro_brick_stairs.json b/src/test/resources/assets/strata/blockstates/mossy_gabbro_brick_stairs.json deleted file mode 100644 index 40a335c3..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_gabbro_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/mossy_gabbro_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/mossy_gabbro_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/mossy_gabbro_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/mossy_gabbro_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/mossy_gabbro_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/mossy_gabbro_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/mossy_gabbro_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/mossy_gabbro_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/mossy_gabbro_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/mossy_gabbro_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/mossy_gabbro_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/mossy_gabbro_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/mossy_gabbro_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/mossy_gabbro_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/mossy_gabbro_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/mossy_gabbro_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/mossy_gabbro_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/mossy_gabbro_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/mossy_gabbro_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/mossy_gabbro_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/mossy_gabbro_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/mossy_gabbro_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/mossy_gabbro_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/mossy_gabbro_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/mossy_gabbro_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/mossy_gabbro_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/mossy_gabbro_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/mossy_gabbro_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/mossy_gabbro_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/mossy_gabbro_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/mossy_gabbro_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/mossy_gabbro_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/mossy_gabbro_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/mossy_gabbro_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/mossy_gabbro_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/mossy_gabbro_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/mossy_gabbro_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/mossy_gabbro_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/mossy_gabbro_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/mossy_gabbro_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/mossy_gabbro_brick_wall.json b/src/test/resources/assets/strata/blockstates/mossy_gabbro_brick_wall.json deleted file mode 100644 index 3d7dad68..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_gabbro_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_gabbro_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_gabbro_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_gabbro_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_gabbro_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_gabbro_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/test/resources/assets/strata/blockstates/mossy_gabbro_bricks.json b/src/test/resources/assets/strata/blockstates/mossy_gabbro_bricks.json deleted file mode 100644 index d4f25eaa..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_gabbro_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mossy_gabbro_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_gneiss_brick_slab.json b/src/test/resources/assets/strata/blockstates/mossy_gneiss_brick_slab.json deleted file mode 100644 index 900a726e..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_gneiss_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/mossy_gneiss_brick_slab" }, - "type=top": { "model": "strata:block/mossy_gneiss_brick_slab_top" }, - "type=double": { "model": "strata:block/mossy_gneiss_brick" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/mossy_gneiss_brick_stairs.json b/src/test/resources/assets/strata/blockstates/mossy_gneiss_brick_stairs.json deleted file mode 100644 index 929a5244..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_gneiss_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/mossy_gneiss_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/mossy_gneiss_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/mossy_gneiss_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/mossy_gneiss_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/mossy_gneiss_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/mossy_gneiss_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/mossy_gneiss_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/mossy_gneiss_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/mossy_gneiss_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/mossy_gneiss_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/mossy_gneiss_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/mossy_gneiss_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/mossy_gneiss_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/mossy_gneiss_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/mossy_gneiss_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/mossy_gneiss_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/mossy_gneiss_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/mossy_gneiss_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/mossy_gneiss_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/mossy_gneiss_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/mossy_gneiss_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/mossy_gneiss_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/mossy_gneiss_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/mossy_gneiss_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/mossy_gneiss_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/mossy_gneiss_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/mossy_gneiss_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/mossy_gneiss_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/mossy_gneiss_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/mossy_gneiss_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/mossy_gneiss_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/mossy_gneiss_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/mossy_gneiss_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/mossy_gneiss_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/mossy_gneiss_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/mossy_gneiss_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/mossy_gneiss_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/mossy_gneiss_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/mossy_gneiss_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/mossy_gneiss_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/mossy_gneiss_brick_wall.json b/src/test/resources/assets/strata/blockstates/mossy_gneiss_brick_wall.json deleted file mode 100644 index f041b417..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_gneiss_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_gneiss_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_gneiss_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_gneiss_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_gneiss_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_gneiss_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/test/resources/assets/strata/blockstates/mossy_gneiss_bricks.json b/src/test/resources/assets/strata/blockstates/mossy_gneiss_bricks.json deleted file mode 100644 index 71e625bc..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_gneiss_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mossy_gneiss_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_jaspillite_brick_slab.json b/src/test/resources/assets/strata/blockstates/mossy_jaspillite_brick_slab.json deleted file mode 100644 index eb14b588..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_jaspillite_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/mossy_jaspillite_brick_slab" }, - "type=top": { "model": "strata:block/mossy_jaspillite_brick_slab_top" }, - "type=double": { "model": "strata:block/mossy_jaspillite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_jaspillite_brick_stairs.json b/src/test/resources/assets/strata/blockstates/mossy_jaspillite_brick_stairs.json deleted file mode 100644 index 49588f71..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_jaspillite_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/mossy_jaspillite_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/mossy_jaspillite_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/mossy_jaspillite_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/mossy_jaspillite_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/mossy_jaspillite_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/mossy_jaspillite_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/mossy_jaspillite_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/mossy_jaspillite_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/mossy_jaspillite_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/mossy_jaspillite_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/mossy_jaspillite_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/mossy_jaspillite_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/mossy_jaspillite_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/mossy_jaspillite_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/mossy_jaspillite_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/mossy_jaspillite_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/mossy_jaspillite_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/mossy_jaspillite_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/mossy_jaspillite_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/mossy_jaspillite_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/mossy_jaspillite_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/mossy_jaspillite_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/mossy_jaspillite_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/mossy_jaspillite_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/mossy_jaspillite_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/mossy_jaspillite_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/mossy_jaspillite_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/mossy_jaspillite_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/mossy_jaspillite_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/mossy_jaspillite_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/mossy_jaspillite_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/mossy_jaspillite_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/mossy_jaspillite_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/mossy_jaspillite_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/mossy_jaspillite_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/mossy_jaspillite_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/mossy_jaspillite_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/mossy_jaspillite_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/mossy_jaspillite_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/mossy_jaspillite_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_jaspillite_brick_wall.json b/src/test/resources/assets/strata/blockstates/mossy_jaspillite_brick_wall.json deleted file mode 100644 index b10f9fe4..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_jaspillite_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_jaspillite_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_jaspillite_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_jaspillite_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_jaspillite_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_jaspillite_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_jaspillite_bricks.json b/src/test/resources/assets/strata/blockstates/mossy_jaspillite_bricks.json deleted file mode 100644 index c1ac94a0..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_jaspillite_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mossy_jaspillite_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_jaspillite_cobblestone.json b/src/test/resources/assets/strata/blockstates/mossy_jaspillite_cobblestone.json deleted file mode 100644 index a20c13ce..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_jaspillite_cobblestone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mossy_jaspillite_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_jaspillite_cobblestone_slab.json b/src/test/resources/assets/strata/blockstates/mossy_jaspillite_cobblestone_slab.json deleted file mode 100644 index 950207a6..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_jaspillite_cobblestone_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/mossy_jaspillite_cobblestone_slab" }, - "type=top": { "model": "strata:block/mossy_jaspillite_cobblestone_slab_top" }, - "type=double": { "model": "strata:block/mossy_jaspillite_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_jaspillite_cobblestone_stairs.json b/src/test/resources/assets/strata/blockstates/mossy_jaspillite_cobblestone_stairs.json deleted file mode 100644 index b05bafc5..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_jaspillite_cobblestone_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/mossy_jaspillite_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_jaspillite_cobblestone_wall.json b/src/test/resources/assets/strata/blockstates/mossy_jaspillite_cobblestone_wall.json deleted file mode 100644 index 42a1df1e..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_jaspillite_cobblestone_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_jaspillite_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_jaspillite_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_jaspillite_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_jaspillite_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_jaspillite_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_limestone_brick_slab.json b/src/test/resources/assets/strata/blockstates/mossy_limestone_brick_slab.json deleted file mode 100644 index 7c921326..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_limestone_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/mossy_limestone_brick_slab" }, - "type=top": { "model": "strata:block/mossy_limestone_brick_slab_top" }, - "type=double": { "model": "strata:block/mossy_limestone_brick" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/mossy_limestone_brick_stairs.json b/src/test/resources/assets/strata/blockstates/mossy_limestone_brick_stairs.json deleted file mode 100644 index 775780ac..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_limestone_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/mossy_limestone_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/mossy_limestone_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/mossy_limestone_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/mossy_limestone_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/mossy_limestone_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/mossy_limestone_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/mossy_limestone_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/mossy_limestone_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/mossy_limestone_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/mossy_limestone_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/mossy_limestone_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/mossy_limestone_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/mossy_limestone_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/mossy_limestone_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/mossy_limestone_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/mossy_limestone_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/mossy_limestone_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/mossy_limestone_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/mossy_limestone_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/mossy_limestone_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/mossy_limestone_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/mossy_limestone_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/mossy_limestone_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/mossy_limestone_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/mossy_limestone_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/mossy_limestone_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/mossy_limestone_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/mossy_limestone_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/mossy_limestone_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/mossy_limestone_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/mossy_limestone_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/mossy_limestone_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/mossy_limestone_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/mossy_limestone_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/mossy_limestone_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/mossy_limestone_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/mossy_limestone_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/mossy_limestone_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/mossy_limestone_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/mossy_limestone_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/mossy_limestone_brick_wall.json b/src/test/resources/assets/strata/blockstates/mossy_limestone_brick_wall.json deleted file mode 100644 index b3817933..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_limestone_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_limestone_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_limestone_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_limestone_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_limestone_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_limestone_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/test/resources/assets/strata/blockstates/mossy_limestone_bricks.json b/src/test/resources/assets/strata/blockstates/mossy_limestone_bricks.json deleted file mode 100644 index 147570e2..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_limestone_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mossy_limestone_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_marble_brick_slab.json b/src/test/resources/assets/strata/blockstates/mossy_marble_brick_slab.json deleted file mode 100644 index 57df852f..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_marble_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/mossy_marble_brick_slab" }, - "type=top": { "model": "strata:block/mossy_marble_brick_slab_top" }, - "type=double": { "model": "strata:block/mossy_marble_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_marble_brick_stairs.json b/src/test/resources/assets/strata/blockstates/mossy_marble_brick_stairs.json deleted file mode 100644 index 8fec6469..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_marble_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/mossy_marble_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/mossy_marble_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/mossy_marble_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/mossy_marble_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/mossy_marble_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/mossy_marble_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/mossy_marble_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/mossy_marble_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/mossy_marble_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/mossy_marble_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/mossy_marble_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/mossy_marble_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/mossy_marble_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/mossy_marble_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/mossy_marble_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/mossy_marble_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/mossy_marble_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/mossy_marble_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/mossy_marble_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/mossy_marble_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/mossy_marble_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/mossy_marble_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/mossy_marble_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/mossy_marble_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/mossy_marble_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/mossy_marble_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/mossy_marble_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/mossy_marble_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/mossy_marble_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/mossy_marble_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/mossy_marble_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/mossy_marble_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/mossy_marble_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/mossy_marble_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/mossy_marble_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/mossy_marble_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/mossy_marble_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/mossy_marble_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/mossy_marble_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/mossy_marble_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_marble_brick_wall.json b/src/test/resources/assets/strata/blockstates/mossy_marble_brick_wall.json deleted file mode 100644 index 2c516f7f..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_marble_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_marble_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_marble_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_marble_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_marble_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_marble_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_marble_bricks.json b/src/test/resources/assets/strata/blockstates/mossy_marble_bricks.json deleted file mode 100644 index ed31cb20..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_marble_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mossy_marble_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_marble_cobblestone.json b/src/test/resources/assets/strata/blockstates/mossy_marble_cobblestone.json deleted file mode 100644 index e7c3f288..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_marble_cobblestone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mossy_marble_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_marble_cobblestone_slab.json b/src/test/resources/assets/strata/blockstates/mossy_marble_cobblestone_slab.json deleted file mode 100644 index 4d9caf81..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_marble_cobblestone_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/mossy_marble_cobblestone_slab" }, - "type=top": { "model": "strata:block/mossy_marble_cobblestone_slab_top" }, - "type=double": { "model": "strata:block/mossy_marble_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_marble_cobblestone_stairs.json b/src/test/resources/assets/strata/blockstates/mossy_marble_cobblestone_stairs.json deleted file mode 100644 index 657b3dc7..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_marble_cobblestone_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/mossy_marble_cobblestone_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/mossy_marble_cobblestone_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/mossy_marble_cobblestone_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/mossy_marble_cobblestone_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/mossy_marble_cobblestone_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/mossy_marble_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/mossy_marble_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/mossy_marble_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/mossy_marble_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/mossy_marble_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/mossy_marble_cobblestone_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/mossy_marble_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/mossy_marble_cobblestone_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/mossy_marble_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/mossy_marble_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/mossy_marble_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/mossy_marble_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/mossy_marble_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/mossy_marble_cobblestone_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/mossy_marble_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/mossy_marble_cobblestone_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/mossy_marble_cobblestone_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/mossy_marble_cobblestone_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/mossy_marble_cobblestone_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/mossy_marble_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/mossy_marble_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/mossy_marble_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/mossy_marble_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/mossy_marble_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/mossy_marble_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/mossy_marble_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/mossy_marble_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/mossy_marble_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/mossy_marble_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/mossy_marble_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/mossy_marble_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/mossy_marble_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/mossy_marble_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/mossy_marble_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/mossy_marble_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_marble_cobblestone_wall.json b/src/test/resources/assets/strata/blockstates/mossy_marble_cobblestone_wall.json deleted file mode 100644 index 92623c38..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_marble_cobblestone_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_marble_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_marble_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_marble_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_marble_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_marble_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_pahoehoe_brick_slab.json b/src/test/resources/assets/strata/blockstates/mossy_pahoehoe_brick_slab.json deleted file mode 100644 index c943130a..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_pahoehoe_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/mossy_pahoehoe_brick_slab" }, - "type=top": { "model": "strata:block/mossy_pahoehoe_brick_slab_top" }, - "type=double": { "model": "strata:block/mossy_pahoehoe_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_pahoehoe_brick_stairs.json b/src/test/resources/assets/strata/blockstates/mossy_pahoehoe_brick_stairs.json deleted file mode 100644 index 9e6e7acf..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_pahoehoe_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/mossy_pahoehoe_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/mossy_pahoehoe_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/mossy_pahoehoe_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/mossy_pahoehoe_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/mossy_pahoehoe_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/mossy_pahoehoe_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/mossy_pahoehoe_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/mossy_pahoehoe_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/mossy_pahoehoe_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/mossy_pahoehoe_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/mossy_pahoehoe_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/mossy_pahoehoe_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/mossy_pahoehoe_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/mossy_pahoehoe_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/mossy_pahoehoe_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/mossy_pahoehoe_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/mossy_pahoehoe_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/mossy_pahoehoe_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/mossy_pahoehoe_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/mossy_pahoehoe_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/mossy_pahoehoe_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/mossy_pahoehoe_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/mossy_pahoehoe_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/mossy_pahoehoe_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/mossy_pahoehoe_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/mossy_pahoehoe_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/mossy_pahoehoe_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/mossy_pahoehoe_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/mossy_pahoehoe_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/mossy_pahoehoe_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/mossy_pahoehoe_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/mossy_pahoehoe_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/mossy_pahoehoe_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/mossy_pahoehoe_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/mossy_pahoehoe_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/mossy_pahoehoe_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/mossy_pahoehoe_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/mossy_pahoehoe_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/mossy_pahoehoe_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/mossy_pahoehoe_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_pahoehoe_brick_wall.json b/src/test/resources/assets/strata/blockstates/mossy_pahoehoe_brick_wall.json deleted file mode 100644 index b8a7ea40..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_pahoehoe_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_pahoehoe_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_pahoehoe_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_pahoehoe_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_pahoehoe_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_pahoehoe_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_pahoehoe_bricks.json b/src/test/resources/assets/strata/blockstates/mossy_pahoehoe_bricks.json deleted file mode 100644 index 77a87c70..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_pahoehoe_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mossy_pahoehoe_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_pahoehoe_cobblestone.json b/src/test/resources/assets/strata/blockstates/mossy_pahoehoe_cobblestone.json deleted file mode 100644 index c6f25ff0..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_pahoehoe_cobblestone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mossy_pahoehoe_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_pahoehoe_cobblestone_slab.json b/src/test/resources/assets/strata/blockstates/mossy_pahoehoe_cobblestone_slab.json deleted file mode 100644 index 66db2aaf..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_pahoehoe_cobblestone_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/mossy_pahoehoe_cobblestone_slab" }, - "type=top": { "model": "strata:block/mossy_pahoehoe_cobblestone_slab_top" }, - "type=double": { "model": "strata:block/mossy_pahoehoe_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_pahoehoe_cobblestone_stairs.json b/src/test/resources/assets/strata/blockstates/mossy_pahoehoe_cobblestone_stairs.json deleted file mode 100644 index dafdcefc..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_pahoehoe_cobblestone_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/mossy_pahoehoe_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_pahoehoe_cobblestone_wall.json b/src/test/resources/assets/strata/blockstates/mossy_pahoehoe_cobblestone_wall.json deleted file mode 100644 index be39a1d1..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_pahoehoe_cobblestone_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_pahoehoe_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_pahoehoe_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_pahoehoe_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_pahoehoe_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_pahoehoe_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_schist_brick_slab.json b/src/test/resources/assets/strata/blockstates/mossy_schist_brick_slab.json deleted file mode 100644 index 05239fed..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_schist_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/mossy_schist_brick_slab" }, - "type=top": { "model": "strata:block/mossy_schist_brick_slab_top" }, - "type=double": { "model": "strata:block/mossy_schist_brick" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/mossy_schist_brick_stairs.json b/src/test/resources/assets/strata/blockstates/mossy_schist_brick_stairs.json deleted file mode 100644 index c67ede70..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_schist_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/mossy_schist_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/mossy_schist_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/mossy_schist_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/mossy_schist_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/mossy_schist_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/mossy_schist_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/mossy_schist_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/mossy_schist_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/mossy_schist_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/mossy_schist_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/mossy_schist_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/mossy_schist_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/mossy_schist_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/mossy_schist_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/mossy_schist_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/mossy_schist_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/mossy_schist_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/mossy_schist_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/mossy_schist_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/mossy_schist_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/mossy_schist_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/mossy_schist_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/mossy_schist_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/mossy_schist_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/mossy_schist_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/mossy_schist_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/mossy_schist_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/mossy_schist_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/mossy_schist_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/mossy_schist_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/mossy_schist_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/mossy_schist_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/mossy_schist_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/mossy_schist_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/mossy_schist_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/mossy_schist_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/mossy_schist_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/mossy_schist_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/mossy_schist_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/mossy_schist_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/mossy_schist_brick_wall.json b/src/test/resources/assets/strata/blockstates/mossy_schist_brick_wall.json deleted file mode 100644 index f90e133c..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_schist_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_schist_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_schist_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_schist_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_schist_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_schist_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/test/resources/assets/strata/blockstates/mossy_schist_bricks.json b/src/test/resources/assets/strata/blockstates/mossy_schist_bricks.json deleted file mode 100644 index b358219e..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_schist_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mossy_schist_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mossy_shale_brick_slab.json b/src/test/resources/assets/strata/blockstates/mossy_shale_brick_slab.json deleted file mode 100644 index dbb515f4..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_shale_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/mossy_shale_brick_slab" }, - "type=top": { "model": "strata:block/mossy_shale_brick_slab_top" }, - "type=double": { "model": "strata:block/mossy_shale_brick" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/mossy_shale_brick_stairs.json b/src/test/resources/assets/strata/blockstates/mossy_shale_brick_stairs.json deleted file mode 100644 index 01a0524e..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_shale_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/mossy_shale_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/mossy_shale_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/mossy_shale_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/mossy_shale_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/mossy_shale_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/mossy_shale_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/mossy_shale_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/mossy_shale_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/mossy_shale_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/mossy_shale_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/mossy_shale_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/mossy_shale_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/mossy_shale_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/mossy_shale_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/mossy_shale_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/mossy_shale_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/mossy_shale_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/mossy_shale_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/mossy_shale_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/mossy_shale_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/mossy_shale_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/mossy_shale_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/mossy_shale_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/mossy_shale_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/mossy_shale_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/mossy_shale_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/mossy_shale_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/mossy_shale_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/mossy_shale_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/mossy_shale_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/mossy_shale_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/mossy_shale_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/mossy_shale_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/mossy_shale_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/mossy_shale_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/mossy_shale_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/mossy_shale_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/mossy_shale_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/mossy_shale_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/mossy_shale_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/mossy_shale_brick_wall.json b/src/test/resources/assets/strata/blockstates/mossy_shale_brick_wall.json deleted file mode 100644 index 9b2e0392..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_shale_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/mossy_shale_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/mossy_shale_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/mossy_shale_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/mossy_shale_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/mossy_shale_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/test/resources/assets/strata/blockstates/mossy_shale_bricks.json b/src/test/resources/assets/strata/blockstates/mossy_shale_bricks.json deleted file mode 100644 index 60f88739..00000000 --- a/src/test/resources/assets/strata/blockstates/mossy_shale_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mossy_shale_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mudstone.json b/src/test/resources/assets/strata/blockstates/mudstone.json deleted file mode 100644 index 7a360602..00000000 --- a/src/test/resources/assets/strata/blockstates/mudstone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mudstone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mugearite.json b/src/test/resources/assets/strata/blockstates/mugearite.json deleted file mode 100644 index bb33d378..00000000 --- a/src/test/resources/assets/strata/blockstates/mugearite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mugearite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/mylonite.json b/src/test/resources/assets/strata/blockstates/mylonite.json deleted file mode 100644 index d7c05d8c..00000000 --- a/src/test/resources/assets/strata/blockstates/mylonite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/mylonite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/napoleonite.json b/src/test/resources/assets/strata/blockstates/napoleonite.json deleted file mode 100644 index 6a667973..00000000 --- a/src/test/resources/assets/strata/blockstates/napoleonite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/napoleonite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/nephelinite.json b/src/test/resources/assets/strata/blockstates/nephelinite.json deleted file mode 100644 index 8133a7cb..00000000 --- a/src/test/resources/assets/strata/blockstates/nephelinite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/nephelinite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/norite.json b/src/test/resources/assets/strata/blockstates/norite.json deleted file mode 100644 index 12aa0c76..00000000 --- a/src/test/resources/assets/strata/blockstates/norite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/norite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/novaculite.json b/src/test/resources/assets/strata/blockstates/novaculite.json deleted file mode 100644 index a8c06f31..00000000 --- a/src/test/resources/assets/strata/blockstates/novaculite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/novaculite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/oil_shale.json b/src/test/resources/assets/strata/blockstates/oil_shale.json deleted file mode 100644 index ad99c606..00000000 --- a/src/test/resources/assets/strata/blockstates/oil_shale.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/oil_shale" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/oolite.json b/src/test/resources/assets/strata/blockstates/oolite.json deleted file mode 100644 index b8fe6815..00000000 --- a/src/test/resources/assets/strata/blockstates/oolite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/oolite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/pahoehoe.json b/src/test/resources/assets/strata/blockstates/pahoehoe.json deleted file mode 100644 index f092302e..00000000 --- a/src/test/resources/assets/strata/blockstates/pahoehoe.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/pahoehoe" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/pahoehoe_brick_slab.json b/src/test/resources/assets/strata/blockstates/pahoehoe_brick_slab.json deleted file mode 100644 index be919186..00000000 --- a/src/test/resources/assets/strata/blockstates/pahoehoe_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/pahoehoe_brick_slab" }, - "type=top": { "model": "strata:block/pahoehoe_brick_slab_top" }, - "type=double": { "model": "strata:block/pahoehoe_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/pahoehoe_brick_stairs.json b/src/test/resources/assets/strata/blockstates/pahoehoe_brick_stairs.json deleted file mode 100644 index 5bf31434..00000000 --- a/src/test/resources/assets/strata/blockstates/pahoehoe_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/pahoehoe_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/pahoehoe_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/pahoehoe_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/pahoehoe_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/pahoehoe_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/pahoehoe_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/pahoehoe_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/pahoehoe_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/pahoehoe_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/pahoehoe_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/pahoehoe_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/pahoehoe_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/pahoehoe_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/pahoehoe_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/pahoehoe_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/pahoehoe_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/pahoehoe_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/pahoehoe_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/pahoehoe_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/pahoehoe_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/pahoehoe_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/pahoehoe_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/pahoehoe_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/pahoehoe_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/pahoehoe_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/pahoehoe_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/pahoehoe_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/pahoehoe_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/pahoehoe_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/pahoehoe_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/pahoehoe_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/pahoehoe_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/pahoehoe_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/pahoehoe_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/pahoehoe_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/pahoehoe_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/pahoehoe_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/pahoehoe_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/pahoehoe_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/pahoehoe_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/pahoehoe_brick_wall.json b/src/test/resources/assets/strata/blockstates/pahoehoe_brick_wall.json deleted file mode 100644 index 384e0058..00000000 --- a/src/test/resources/assets/strata/blockstates/pahoehoe_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/pahoehoe_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/pahoehoe_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/pahoehoe_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/pahoehoe_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/pahoehoe_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/pahoehoe_bricks.json b/src/test/resources/assets/strata/blockstates/pahoehoe_bricks.json deleted file mode 100644 index 526e8602..00000000 --- a/src/test/resources/assets/strata/blockstates/pahoehoe_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/pahoehoe_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/pahoehoe_button.json b/src/test/resources/assets/strata/blockstates/pahoehoe_button.json deleted file mode 100644 index ec97777e..00000000 --- a/src/test/resources/assets/strata/blockstates/pahoehoe_button.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "variants": { - "face=floor,facing=east,powered=false": { "model": "strata:block/pahoehoe_button", "y": 90 }, - "face=floor,facing=west,powered=false": { "model": "strata:block/pahoehoe_button", "y": 270 }, - "face=floor,facing=south,powered=false": { "model": "strata:block/pahoehoe_button", "y": 180 }, - "face=floor,facing=north,powered=false": { "model": "strata:block/pahoehoe_button" }, - "face=wall,facing=east,powered=false": { "model": "strata:block/pahoehoe_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=false": { "model": "strata:block/pahoehoe_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=false": { "model": "strata:block/pahoehoe_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=false": { "model": "strata:block/pahoehoe_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=false": { "model": "strata:block/pahoehoe_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=false": { "model": "strata:block/pahoehoe_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=false": { "model": "strata:block/pahoehoe_button", "x": 180 }, - "face=ceiling,facing=north,powered=false": { "model": "strata:block/pahoehoe_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/pahoehoe_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/pahoehoe_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/pahoehoe_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/pahoehoe_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/pahoehoe_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/pahoehoe_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/pahoehoe_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/pahoehoe_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/pahoehoe_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/pahoehoe_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/pahoehoe_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/pahoehoe_button", "x": 180, "y": 180 } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/pahoehoe_cobblestone.json b/src/test/resources/assets/strata/blockstates/pahoehoe_cobblestone.json deleted file mode 100644 index 2316219f..00000000 --- a/src/test/resources/assets/strata/blockstates/pahoehoe_cobblestone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/pahoehoe_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/pahoehoe_cobblestone_slab.json b/src/test/resources/assets/strata/blockstates/pahoehoe_cobblestone_slab.json deleted file mode 100644 index 12e3147d..00000000 --- a/src/test/resources/assets/strata/blockstates/pahoehoe_cobblestone_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/pahoehoe_cobblestone_slab" }, - "type=top": { "model": "strata:block/pahoehoe_cobblestone_slab_top" }, - "type=double": { "model": "strata:block/pahoehoe_cobblestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/pahoehoe_cobblestone_stairs.json b/src/test/resources/assets/strata/blockstates/pahoehoe_cobblestone_stairs.json deleted file mode 100644 index 003c776f..00000000 --- a/src/test/resources/assets/strata/blockstates/pahoehoe_cobblestone_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/pahoehoe_cobblestone_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/pahoehoe_cobblestone_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/pahoehoe_cobblestone_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/pahoehoe_cobblestone_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/pahoehoe_cobblestone_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/pahoehoe_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/pahoehoe_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/pahoehoe_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/pahoehoe_cobblestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/pahoehoe_cobblestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/pahoehoe_cobblestone_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/pahoehoe_cobblestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/pahoehoe_cobblestone_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/pahoehoe_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/pahoehoe_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/pahoehoe_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/pahoehoe_cobblestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/pahoehoe_cobblestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/pahoehoe_cobblestone_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/pahoehoe_cobblestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/pahoehoe_cobblestone_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/pahoehoe_cobblestone_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/pahoehoe_cobblestone_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/pahoehoe_cobblestone_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/pahoehoe_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/pahoehoe_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/pahoehoe_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/pahoehoe_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/pahoehoe_cobblestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/pahoehoe_cobblestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/pahoehoe_cobblestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/pahoehoe_cobblestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/pahoehoe_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/pahoehoe_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/pahoehoe_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/pahoehoe_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/pahoehoe_cobblestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/pahoehoe_cobblestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/pahoehoe_cobblestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/pahoehoe_cobblestone_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/pahoehoe_cobblestone_wall.json b/src/test/resources/assets/strata/blockstates/pahoehoe_cobblestone_wall.json deleted file mode 100644 index 304e2c0c..00000000 --- a/src/test/resources/assets/strata/blockstates/pahoehoe_cobblestone_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/pahoehoe_cobblestone_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/pahoehoe_cobblestone_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/pahoehoe_cobblestone_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/pahoehoe_cobblestone_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/pahoehoe_cobblestone_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/pahoehoe_slab.json b/src/test/resources/assets/strata/blockstates/pahoehoe_slab.json deleted file mode 100644 index 1115af4b..00000000 --- a/src/test/resources/assets/strata/blockstates/pahoehoe_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/pahoehoe_slab" }, - "type=top": { "model": "strata:block/pahoehoe_slab_top" }, - "type=double": { "model": "strata:block/pahoehoe" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/pahoehoe_stairs.json b/src/test/resources/assets/strata/blockstates/pahoehoe_stairs.json deleted file mode 100644 index 70549f69..00000000 --- a/src/test/resources/assets/strata/blockstates/pahoehoe_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/pahoehoe_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/pahoehoe_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/pahoehoe_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/pahoehoe_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/pahoehoe_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/pahoehoe_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/pahoehoe_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/pahoehoe_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/pahoehoe_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/pahoehoe_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/pahoehoe_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/pahoehoe_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/pahoehoe_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/pahoehoe_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/pahoehoe_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/pahoehoe_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/pahoehoe_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/pahoehoe_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/pahoehoe_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/pahoehoe_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/pahoehoe_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/pahoehoe_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/pahoehoe_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/pahoehoe_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/pahoehoe_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/pahoehoe_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/pahoehoe_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/pahoehoe_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/pahoehoe_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/pahoehoe_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/pahoehoe_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/pahoehoe_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/pahoehoe_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/pahoehoe_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/pahoehoe_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/pahoehoe_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/pahoehoe_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/pahoehoe_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/pahoehoe_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/pahoehoe_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/pahoehoe_wall.json b/src/test/resources/assets/strata/blockstates/pahoehoe_wall.json deleted file mode 100644 index 98733d6c..00000000 --- a/src/test/resources/assets/strata/blockstates/pahoehoe_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/pahoehoe_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/pahoehoe_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/pahoehoe_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/pahoehoe_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/pahoehoe_wall_side", "y": 270, "uvlock": true } - } - ] -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/pantellerite.json b/src/test/resources/assets/strata/blockstates/pantellerite.json deleted file mode 100644 index 6c284df7..00000000 --- a/src/test/resources/assets/strata/blockstates/pantellerite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/pantellerite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/pegmatite.json b/src/test/resources/assets/strata/blockstates/pegmatite.json deleted file mode 100644 index bcd48613..00000000 --- a/src/test/resources/assets/strata/blockstates/pegmatite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/pegmatite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/peridotite.json b/src/test/resources/assets/strata/blockstates/peridotite.json deleted file mode 100644 index 3bdce0c6..00000000 --- a/src/test/resources/assets/strata/blockstates/peridotite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/peridotite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/phonolite.json b/src/test/resources/assets/strata/blockstates/phonolite.json deleted file mode 100644 index 877bd81f..00000000 --- a/src/test/resources/assets/strata/blockstates/phonolite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/phonolite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/phonotephrite.json b/src/test/resources/assets/strata/blockstates/phonotephrite.json deleted file mode 100644 index 68af7955..00000000 --- a/src/test/resources/assets/strata/blockstates/phonotephrite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/phonotephrite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/phosphorite.json b/src/test/resources/assets/strata/blockstates/phosphorite.json deleted file mode 100644 index 971b887b..00000000 --- a/src/test/resources/assets/strata/blockstates/phosphorite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/phosphorite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/phyllite.json b/src/test/resources/assets/strata/blockstates/phyllite.json deleted file mode 100644 index 042a453d..00000000 --- a/src/test/resources/assets/strata/blockstates/phyllite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/phyllite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/picrite.json b/src/test/resources/assets/strata/blockstates/picrite.json deleted file mode 100644 index b1976f0e..00000000 --- a/src/test/resources/assets/strata/blockstates/picrite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/picrite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/pietersite.json b/src/test/resources/assets/strata/blockstates/pietersite.json deleted file mode 100644 index 99333c23..00000000 --- a/src/test/resources/assets/strata/blockstates/pietersite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/pietersite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_aa.json b/src/test/resources/assets/strata/blockstates/polished_aa.json deleted file mode 100644 index 8b6a868d..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_aa.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/polished_aa" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_aa_slab.json b/src/test/resources/assets/strata/blockstates/polished_aa_slab.json deleted file mode 100644 index e3a67561..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_aa_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/polished_aa_slab" }, - "type=top": { "model": "strata:block/polished_aa_slab_top" }, - "type=double": { "model": "strata:block/polished_aa" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_aa_stairs.json b/src/test/resources/assets/strata/blockstates/polished_aa_stairs.json deleted file mode 100644 index bc5ffbd5..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_aa_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/polished_aa_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/polished_aa_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/polished_aa_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/polished_aa_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/polished_aa_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/polished_aa_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/polished_aa_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/polished_aa_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/polished_aa_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/polished_aa_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/polished_aa_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/polished_aa_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/polished_aa_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/polished_aa_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/polished_aa_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/polished_aa_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/polished_aa_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/polished_aa_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/polished_aa_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/polished_aa_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/polished_aa_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/polished_aa_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/polished_aa_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/polished_aa_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/polished_aa_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/polished_aa_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/polished_aa_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/polished_aa_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/polished_aa_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/polished_aa_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/polished_aa_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/polished_aa_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/polished_aa_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/polished_aa_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/polished_aa_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/polished_aa_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/polished_aa_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/polished_aa_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/polished_aa_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/polished_aa_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_adakite.json b/src/test/resources/assets/strata/blockstates/polished_adakite.json deleted file mode 100644 index 2581eea3..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_adakite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/polished_adakite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_adakite_slab.json b/src/test/resources/assets/strata/blockstates/polished_adakite_slab.json deleted file mode 100644 index 194e2475..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_adakite_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/polished_adakite_slab" }, - "type=top": { "model": "strata:block/polished_adakite_slab_top" }, - "type=double": { "model": "strata:block/polished_adakite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_adakite_stairs.json b/src/test/resources/assets/strata/blockstates/polished_adakite_stairs.json deleted file mode 100644 index 3650fa2a..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_adakite_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/polished_adakite_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/polished_adakite_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/polished_adakite_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/polished_adakite_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/polished_adakite_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/polished_adakite_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/polished_adakite_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/polished_adakite_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/polished_adakite_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/polished_adakite_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/polished_adakite_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/polished_adakite_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/polished_adakite_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/polished_adakite_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/polished_adakite_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/polished_adakite_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/polished_adakite_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/polished_adakite_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/polished_adakite_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/polished_adakite_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/polished_adakite_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/polished_adakite_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/polished_adakite_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/polished_adakite_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/polished_adakite_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/polished_adakite_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/polished_adakite_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/polished_adakite_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/polished_adakite_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/polished_adakite_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/polished_adakite_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/polished_adakite_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/polished_adakite_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/polished_adakite_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/polished_adakite_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/polished_adakite_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/polished_adakite_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/polished_adakite_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/polished_adakite_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/polished_adakite_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_amphibolite.json b/src/test/resources/assets/strata/blockstates/polished_amphibolite.json deleted file mode 100644 index c103538a..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_amphibolite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/polished_amphibolite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_amphibolite_slab.json b/src/test/resources/assets/strata/blockstates/polished_amphibolite_slab.json deleted file mode 100644 index d4cf68d6..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_amphibolite_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/polished_amphibolite_slab" }, - "type=top": { "model": "strata:block/polished_amphibolite_slab_top" }, - "type=double": { "model": "strata:block/polished_amphibolite" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/polished_amphibolite_stairs.json b/src/test/resources/assets/strata/blockstates/polished_amphibolite_stairs.json deleted file mode 100644 index a52cbe50..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_amphibolite_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/polished_amphibolite_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/polished_amphibolite_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/polished_amphibolite_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/polished_amphibolite_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/polished_amphibolite_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/polished_amphibolite_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/polished_amphibolite_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/polished_amphibolite_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/polished_amphibolite_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/polished_amphibolite_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/polished_amphibolite_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/polished_amphibolite_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/polished_amphibolite_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/polished_amphibolite_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/polished_amphibolite_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/polished_amphibolite_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/polished_amphibolite_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/polished_amphibolite_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/polished_amphibolite_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/polished_amphibolite_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/polished_amphibolite_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/polished_amphibolite_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/polished_amphibolite_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/polished_amphibolite_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/polished_amphibolite_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/polished_amphibolite_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/polished_amphibolite_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/polished_amphibolite_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/polished_amphibolite_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/polished_amphibolite_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/polished_amphibolite_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/polished_amphibolite_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/polished_amphibolite_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/polished_amphibolite_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/polished_amphibolite_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/polished_amphibolite_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/polished_amphibolite_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/polished_amphibolite_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/polished_amphibolite_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/polished_amphibolite_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/polished_argillite.json b/src/test/resources/assets/strata/blockstates/polished_argillite.json deleted file mode 100644 index 5b53c914..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_argillite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/polished_argillite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_argillite_slab.json b/src/test/resources/assets/strata/blockstates/polished_argillite_slab.json deleted file mode 100644 index c4f97668..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_argillite_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/polished_argillite_slab" }, - "type=top": { "model": "strata:block/polished_argillite_slab_top" }, - "type=double": { "model": "strata:block/polished_argillite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_argillite_stairs.json b/src/test/resources/assets/strata/blockstates/polished_argillite_stairs.json deleted file mode 100644 index 5070dca9..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_argillite_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/polished_argillite_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/polished_argillite_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/polished_argillite_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/polished_argillite_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/polished_argillite_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/polished_argillite_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/polished_argillite_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/polished_argillite_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/polished_argillite_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/polished_argillite_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/polished_argillite_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/polished_argillite_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/polished_argillite_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/polished_argillite_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/polished_argillite_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/polished_argillite_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/polished_argillite_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/polished_argillite_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/polished_argillite_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/polished_argillite_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/polished_argillite_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/polished_argillite_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/polished_argillite_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/polished_argillite_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/polished_argillite_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/polished_argillite_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/polished_argillite_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/polished_argillite_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/polished_argillite_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/polished_argillite_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/polished_argillite_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/polished_argillite_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/polished_argillite_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/polished_argillite_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/polished_argillite_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/polished_argillite_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/polished_argillite_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/polished_argillite_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/polished_argillite_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/polished_argillite_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_basalt.json b/src/test/resources/assets/strata/blockstates/polished_basalt.json deleted file mode 100644 index 09facd2d..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_basalt.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/polished_basalt" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_basalt_slab.json b/src/test/resources/assets/strata/blockstates/polished_basalt_slab.json deleted file mode 100644 index eca4fa9f..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_basalt_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/polished_basalt_slab" }, - "type=top": { "model": "strata:block/polished_basalt_slab_top" }, - "type=double": { "model": "strata:block/polished_basalt" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/polished_basalt_stairs.json b/src/test/resources/assets/strata/blockstates/polished_basalt_stairs.json deleted file mode 100644 index 7b8ba590..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_basalt_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/polished_basalt_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/polished_basalt_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/polished_basalt_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/polished_basalt_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/polished_basalt_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/polished_basalt_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/polished_basalt_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/polished_basalt_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/polished_basalt_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/polished_basalt_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/polished_basalt_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/polished_basalt_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/polished_basalt_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/polished_basalt_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/polished_basalt_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/polished_basalt_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/polished_basalt_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/polished_basalt_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/polished_basalt_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/polished_basalt_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/polished_basalt_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/polished_basalt_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/polished_basalt_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/polished_basalt_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/polished_basalt_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/polished_basalt_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/polished_basalt_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/polished_basalt_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/polished_basalt_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/polished_basalt_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/polished_basalt_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/polished_basalt_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/polished_basalt_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/polished_basalt_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/polished_basalt_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/polished_basalt_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/polished_basalt_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/polished_basalt_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/polished_basalt_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/polished_basalt_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/polished_chalk.json b/src/test/resources/assets/strata/blockstates/polished_chalk.json deleted file mode 100644 index 9d56d9a5..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_chalk.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/polished_chalk" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_chalk_slab.json b/src/test/resources/assets/strata/blockstates/polished_chalk_slab.json deleted file mode 100644 index 6ba08d63..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_chalk_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/polished_chalk_slab" }, - "type=top": { "model": "strata:block/polished_chalk_slab_top" }, - "type=double": { "model": "strata:block/polished_chalk" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_chalk_stairs.json b/src/test/resources/assets/strata/blockstates/polished_chalk_stairs.json deleted file mode 100644 index 1cda67b1..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_chalk_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/polished_chalk_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/polished_chalk_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/polished_chalk_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/polished_chalk_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/polished_chalk_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/polished_chalk_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/polished_chalk_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/polished_chalk_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/polished_chalk_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/polished_chalk_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/polished_chalk_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/polished_chalk_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/polished_chalk_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/polished_chalk_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/polished_chalk_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/polished_chalk_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/polished_chalk_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/polished_chalk_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/polished_chalk_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/polished_chalk_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/polished_chalk_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/polished_chalk_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/polished_chalk_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/polished_chalk_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/polished_chalk_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/polished_chalk_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/polished_chalk_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/polished_chalk_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/polished_chalk_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/polished_chalk_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/polished_chalk_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/polished_chalk_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/polished_chalk_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/polished_chalk_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/polished_chalk_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/polished_chalk_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/polished_chalk_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/polished_chalk_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/polished_chalk_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/polished_chalk_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_eclogite.json b/src/test/resources/assets/strata/blockstates/polished_eclogite.json deleted file mode 100644 index a289cc2d..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_eclogite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/polished_eclogite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_eclogite_slab.json b/src/test/resources/assets/strata/blockstates/polished_eclogite_slab.json deleted file mode 100644 index fac48007..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_eclogite_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/polished_eclogite_slab" }, - "type=top": { "model": "strata:block/polished_eclogite_slab_top" }, - "type=double": { "model": "strata:block/polished_eclogite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_eclogite_stairs.json b/src/test/resources/assets/strata/blockstates/polished_eclogite_stairs.json deleted file mode 100644 index 0f97eb62..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_eclogite_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/polished_eclogite_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/polished_eclogite_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/polished_eclogite_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/polished_eclogite_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/polished_eclogite_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/polished_eclogite_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/polished_eclogite_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/polished_eclogite_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/polished_eclogite_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/polished_eclogite_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/polished_eclogite_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/polished_eclogite_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/polished_eclogite_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/polished_eclogite_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/polished_eclogite_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/polished_eclogite_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/polished_eclogite_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/polished_eclogite_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/polished_eclogite_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/polished_eclogite_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/polished_eclogite_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/polished_eclogite_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/polished_eclogite_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/polished_eclogite_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/polished_eclogite_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/polished_eclogite_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/polished_eclogite_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/polished_eclogite_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/polished_eclogite_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/polished_eclogite_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/polished_eclogite_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/polished_eclogite_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/polished_eclogite_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/polished_eclogite_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/polished_eclogite_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/polished_eclogite_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/polished_eclogite_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/polished_eclogite_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/polished_eclogite_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/polished_eclogite_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_gabbro.json b/src/test/resources/assets/strata/blockstates/polished_gabbro.json deleted file mode 100644 index ac3ca36f..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_gabbro.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/polished_gabbro" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_gabbro_slab.json b/src/test/resources/assets/strata/blockstates/polished_gabbro_slab.json deleted file mode 100644 index 043c038a..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_gabbro_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/polished_gabbro_slab" }, - "type=top": { "model": "strata:block/polished_gabbro_slab_top" }, - "type=double": { "model": "strata:block/polished_gabbro" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/polished_gabbro_stairs.json b/src/test/resources/assets/strata/blockstates/polished_gabbro_stairs.json deleted file mode 100644 index 651405cd..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_gabbro_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/polished_gabbro_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/polished_gabbro_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/polished_gabbro_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/polished_gabbro_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/polished_gabbro_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/polished_gabbro_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/polished_gabbro_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/polished_gabbro_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/polished_gabbro_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/polished_gabbro_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/polished_gabbro_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/polished_gabbro_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/polished_gabbro_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/polished_gabbro_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/polished_gabbro_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/polished_gabbro_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/polished_gabbro_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/polished_gabbro_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/polished_gabbro_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/polished_gabbro_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/polished_gabbro_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/polished_gabbro_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/polished_gabbro_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/polished_gabbro_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/polished_gabbro_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/polished_gabbro_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/polished_gabbro_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/polished_gabbro_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/polished_gabbro_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/polished_gabbro_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/polished_gabbro_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/polished_gabbro_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/polished_gabbro_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/polished_gabbro_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/polished_gabbro_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/polished_gabbro_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/polished_gabbro_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/polished_gabbro_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/polished_gabbro_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/polished_gabbro_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/polished_gneiss.json b/src/test/resources/assets/strata/blockstates/polished_gneiss.json deleted file mode 100644 index 4104b305..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_gneiss.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/polished_gneiss" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_gneiss_slab.json b/src/test/resources/assets/strata/blockstates/polished_gneiss_slab.json deleted file mode 100644 index 1bbed761..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_gneiss_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/polished_gneiss_slab" }, - "type=top": { "model": "strata:block/polished_gneiss_slab_top" }, - "type=double": { "model": "strata:block/polished_gneiss" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/polished_gneiss_stairs.json b/src/test/resources/assets/strata/blockstates/polished_gneiss_stairs.json deleted file mode 100644 index 85b41154..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_gneiss_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/polished_gneiss_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/polished_gneiss_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/polished_gneiss_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/polished_gneiss_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/polished_gneiss_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/polished_gneiss_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/polished_gneiss_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/polished_gneiss_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/polished_gneiss_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/polished_gneiss_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/polished_gneiss_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/polished_gneiss_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/polished_gneiss_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/polished_gneiss_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/polished_gneiss_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/polished_gneiss_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/polished_gneiss_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/polished_gneiss_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/polished_gneiss_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/polished_gneiss_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/polished_gneiss_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/polished_gneiss_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/polished_gneiss_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/polished_gneiss_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/polished_gneiss_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/polished_gneiss_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/polished_gneiss_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/polished_gneiss_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/polished_gneiss_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/polished_gneiss_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/polished_gneiss_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/polished_gneiss_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/polished_gneiss_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/polished_gneiss_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/polished_gneiss_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/polished_gneiss_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/polished_gneiss_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/polished_gneiss_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/polished_gneiss_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/polished_gneiss_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/polished_jaspillite.json b/src/test/resources/assets/strata/blockstates/polished_jaspillite.json deleted file mode 100644 index 6a43c623..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_jaspillite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/polished_jaspillite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_jaspillite_slab.json b/src/test/resources/assets/strata/blockstates/polished_jaspillite_slab.json deleted file mode 100644 index 4bd53a65..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_jaspillite_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/polished_jaspillite_slab" }, - "type=top": { "model": "strata:block/polished_jaspillite_slab_top" }, - "type=double": { "model": "strata:block/polished_jaspillite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_jaspillite_stairs.json b/src/test/resources/assets/strata/blockstates/polished_jaspillite_stairs.json deleted file mode 100644 index 415676db..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_jaspillite_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/polished_jaspillite_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/polished_jaspillite_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/polished_jaspillite_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/polished_jaspillite_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/polished_jaspillite_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/polished_jaspillite_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/polished_jaspillite_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/polished_jaspillite_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/polished_jaspillite_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/polished_jaspillite_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/polished_jaspillite_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/polished_jaspillite_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/polished_jaspillite_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/polished_jaspillite_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/polished_jaspillite_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/polished_jaspillite_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/polished_jaspillite_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/polished_jaspillite_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/polished_jaspillite_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/polished_jaspillite_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/polished_jaspillite_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/polished_jaspillite_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/polished_jaspillite_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/polished_jaspillite_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/polished_jaspillite_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/polished_jaspillite_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/polished_jaspillite_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/polished_jaspillite_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/polished_jaspillite_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/polished_jaspillite_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/polished_jaspillite_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/polished_jaspillite_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/polished_jaspillite_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/polished_jaspillite_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/polished_jaspillite_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/polished_jaspillite_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/polished_jaspillite_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/polished_jaspillite_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/polished_jaspillite_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/polished_jaspillite_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_limestone.json b/src/test/resources/assets/strata/blockstates/polished_limestone.json deleted file mode 100644 index c0cfc694..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_limestone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/polished_limestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_limestone_slab.json b/src/test/resources/assets/strata/blockstates/polished_limestone_slab.json deleted file mode 100644 index f21dbf60..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_limestone_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/polished_limestone_slab" }, - "type=top": { "model": "strata:block/polished_limestone_slab_top" }, - "type=double": { "model": "strata:block/polished_limestone" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/polished_limestone_stairs.json b/src/test/resources/assets/strata/blockstates/polished_limestone_stairs.json deleted file mode 100644 index 1250becd..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_limestone_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/polished_limestone_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/polished_limestone_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/polished_limestone_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/polished_limestone_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/polished_limestone_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/polished_limestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/polished_limestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/polished_limestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/polished_limestone_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/polished_limestone_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/polished_limestone_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/polished_limestone_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/polished_limestone_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/polished_limestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/polished_limestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/polished_limestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/polished_limestone_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/polished_limestone_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/polished_limestone_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/polished_limestone_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/polished_limestone_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/polished_limestone_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/polished_limestone_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/polished_limestone_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/polished_limestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/polished_limestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/polished_limestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/polished_limestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/polished_limestone_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/polished_limestone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/polished_limestone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/polished_limestone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/polished_limestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/polished_limestone_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/polished_limestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/polished_limestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/polished_limestone_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/polished_limestone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/polished_limestone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/polished_limestone_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/polished_marble.json b/src/test/resources/assets/strata/blockstates/polished_marble.json deleted file mode 100644 index 6a84b320..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_marble.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/polished_marble" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_marble_slab.json b/src/test/resources/assets/strata/blockstates/polished_marble_slab.json deleted file mode 100644 index e629710d..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_marble_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/polished_marble_slab" }, - "type=top": { "model": "strata:block/polished_marble_slab_top" }, - "type=double": { "model": "strata:block/polished_marble" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_marble_stairs.json b/src/test/resources/assets/strata/blockstates/polished_marble_stairs.json deleted file mode 100644 index 39acb4f5..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_marble_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/polished_marble_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/polished_marble_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/polished_marble_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/polished_marble_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/polished_marble_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/polished_marble_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/polished_marble_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/polished_marble_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/polished_marble_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/polished_marble_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/polished_marble_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/polished_marble_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/polished_marble_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/polished_marble_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/polished_marble_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/polished_marble_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/polished_marble_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/polished_marble_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/polished_marble_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/polished_marble_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/polished_marble_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/polished_marble_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/polished_marble_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/polished_marble_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/polished_marble_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/polished_marble_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/polished_marble_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/polished_marble_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/polished_marble_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/polished_marble_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/polished_marble_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/polished_marble_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/polished_marble_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/polished_marble_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/polished_marble_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/polished_marble_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/polished_marble_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/polished_marble_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/polished_marble_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/polished_marble_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_pahoehoe.json b/src/test/resources/assets/strata/blockstates/polished_pahoehoe.json deleted file mode 100644 index a9b5dc78..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_pahoehoe.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/polished_pahoehoe" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_pahoehoe_slab.json b/src/test/resources/assets/strata/blockstates/polished_pahoehoe_slab.json deleted file mode 100644 index afd87ae7..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_pahoehoe_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/polished_pahoehoe_slab" }, - "type=top": { "model": "strata:block/polished_pahoehoe_slab_top" }, - "type=double": { "model": "strata:block/polished_pahoehoe" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_pahoehoe_stairs.json b/src/test/resources/assets/strata/blockstates/polished_pahoehoe_stairs.json deleted file mode 100644 index 3874b074..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_pahoehoe_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/polished_pahoehoe_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/polished_pahoehoe_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/polished_pahoehoe_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/polished_pahoehoe_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/polished_pahoehoe_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/polished_pahoehoe_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/polished_pahoehoe_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/polished_pahoehoe_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/polished_pahoehoe_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/polished_pahoehoe_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/polished_pahoehoe_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/polished_pahoehoe_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/polished_pahoehoe_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/polished_pahoehoe_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/polished_pahoehoe_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/polished_pahoehoe_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/polished_pahoehoe_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/polished_pahoehoe_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/polished_pahoehoe_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/polished_pahoehoe_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/polished_pahoehoe_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/polished_pahoehoe_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/polished_pahoehoe_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/polished_pahoehoe_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/polished_pahoehoe_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/polished_pahoehoe_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/polished_pahoehoe_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/polished_pahoehoe_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/polished_pahoehoe_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/polished_pahoehoe_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/polished_pahoehoe_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/polished_pahoehoe_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/polished_pahoehoe_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/polished_pahoehoe_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/polished_pahoehoe_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/polished_pahoehoe_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/polished_pahoehoe_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/polished_pahoehoe_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/polished_pahoehoe_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/polished_pahoehoe_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_schist.json b/src/test/resources/assets/strata/blockstates/polished_schist.json deleted file mode 100644 index 02c3b01f..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_schist.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/polished_schist" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_schist_slab.json b/src/test/resources/assets/strata/blockstates/polished_schist_slab.json deleted file mode 100644 index f38e227a..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_schist_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/polished_schist_slab" }, - "type=top": { "model": "strata:block/polished_schist_slab_top" }, - "type=double": { "model": "strata:block/polished_schist" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/polished_schist_stairs.json b/src/test/resources/assets/strata/blockstates/polished_schist_stairs.json deleted file mode 100644 index 78cb56c8..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_schist_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/polished_schist_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/polished_schist_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/polished_schist_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/polished_schist_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/polished_schist_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/polished_schist_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/polished_schist_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/polished_schist_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/polished_schist_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/polished_schist_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/polished_schist_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/polished_schist_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/polished_schist_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/polished_schist_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/polished_schist_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/polished_schist_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/polished_schist_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/polished_schist_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/polished_schist_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/polished_schist_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/polished_schist_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/polished_schist_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/polished_schist_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/polished_schist_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/polished_schist_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/polished_schist_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/polished_schist_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/polished_schist_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/polished_schist_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/polished_schist_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/polished_schist_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/polished_schist_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/polished_schist_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/polished_schist_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/polished_schist_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/polished_schist_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/polished_schist_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/polished_schist_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/polished_schist_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/polished_schist_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/polished_shale.json b/src/test/resources/assets/strata/blockstates/polished_shale.json deleted file mode 100644 index 499cf06e..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_shale.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/polished_shale" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/polished_shale_slab.json b/src/test/resources/assets/strata/blockstates/polished_shale_slab.json deleted file mode 100644 index 04d05fa9..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_shale_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/polished_shale_slab" }, - "type=top": { "model": "strata:block/polished_shale_slab_top" }, - "type=double": { "model": "strata:block/polished_shale" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/polished_shale_stairs.json b/src/test/resources/assets/strata/blockstates/polished_shale_stairs.json deleted file mode 100644 index 6513922e..00000000 --- a/src/test/resources/assets/strata/blockstates/polished_shale_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/polished_shale_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/polished_shale_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/polished_shale_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/polished_shale_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/polished_shale_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/polished_shale_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/polished_shale_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/polished_shale_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/polished_shale_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/polished_shale_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/polished_shale_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/polished_shale_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/polished_shale_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/polished_shale_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/polished_shale_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/polished_shale_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/polished_shale_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/polished_shale_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/polished_shale_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/polished_shale_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/polished_shale_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/polished_shale_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/polished_shale_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/polished_shale_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/polished_shale_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/polished_shale_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/polished_shale_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/polished_shale_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/polished_shale_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/polished_shale_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/polished_shale_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/polished_shale_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/polished_shale_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/polished_shale_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/polished_shale_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/polished_shale_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/polished_shale_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/polished_shale_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/polished_shale_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/polished_shale_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/porphyry.json b/src/test/resources/assets/strata/blockstates/porphyry.json deleted file mode 100644 index 61f64589..00000000 --- a/src/test/resources/assets/strata/blockstates/porphyry.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/porphyry" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/pumice.json b/src/test/resources/assets/strata/blockstates/pumice.json deleted file mode 100644 index ee1d0a36..00000000 --- a/src/test/resources/assets/strata/blockstates/pumice.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/pumice" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/pyrolite.json b/src/test/resources/assets/strata/blockstates/pyrolite.json deleted file mode 100644 index 024b9d94..00000000 --- a/src/test/resources/assets/strata/blockstates/pyrolite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/pyrolite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/pyroxenite.json b/src/test/resources/assets/strata/blockstates/pyroxenite.json deleted file mode 100644 index 6265030a..00000000 --- a/src/test/resources/assets/strata/blockstates/pyroxenite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/pyroxenite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/quartz_diorite.json b/src/test/resources/assets/strata/blockstates/quartz_diorite.json deleted file mode 100644 index 9ee37fd4..00000000 --- a/src/test/resources/assets/strata/blockstates/quartz_diorite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/quartz_diorite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/quartz_monzonite.json b/src/test/resources/assets/strata/blockstates/quartz_monzonite.json deleted file mode 100644 index 91969381..00000000 --- a/src/test/resources/assets/strata/blockstates/quartz_monzonite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/quartz_monzonite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/quartzite.json b/src/test/resources/assets/strata/blockstates/quartzite.json deleted file mode 100644 index 8aaa02d8..00000000 --- a/src/test/resources/assets/strata/blockstates/quartzite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/quartzite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/quartzolite.json b/src/test/resources/assets/strata/blockstates/quartzolite.json deleted file mode 100644 index 20489d8d..00000000 --- a/src/test/resources/assets/strata/blockstates/quartzolite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/quartzolite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/rapakivi_granite.json b/src/test/resources/assets/strata/blockstates/rapakivi_granite.json deleted file mode 100644 index c8db8aca..00000000 --- a/src/test/resources/assets/strata/blockstates/rapakivi_granite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/rapakivi_granite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/rhomb_porphyry.json b/src/test/resources/assets/strata/blockstates/rhomb_porphyry.json deleted file mode 100644 index 7650c1ef..00000000 --- a/src/test/resources/assets/strata/blockstates/rhomb_porphyry.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/rhomb_porphyry" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/rhyodacite.json b/src/test/resources/assets/strata/blockstates/rhyodacite.json deleted file mode 100644 index 7fbd7989..00000000 --- a/src/test/resources/assets/strata/blockstates/rhyodacite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/rhyodacite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/rhyolite.json b/src/test/resources/assets/strata/blockstates/rhyolite.json deleted file mode 100644 index 61f3aed5..00000000 --- a/src/test/resources/assets/strata/blockstates/rhyolite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/rhyolite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/rodingite.json b/src/test/resources/assets/strata/blockstates/rodingite.json deleted file mode 100644 index 8a1ae70d..00000000 --- a/src/test/resources/assets/strata/blockstates/rodingite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/rodingite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/schist.json b/src/test/resources/assets/strata/blockstates/schist.json deleted file mode 100644 index 0248a768..00000000 --- a/src/test/resources/assets/strata/blockstates/schist.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/schist" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/schist_brick_slab.json b/src/test/resources/assets/strata/blockstates/schist_brick_slab.json deleted file mode 100644 index b4593ad2..00000000 --- a/src/test/resources/assets/strata/blockstates/schist_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/schist_brick_slab" }, - "type=top": { "model": "strata:block/schist_brick_slab_top" }, - "type=double": { "model": "strata:block/schist_brick" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/schist_brick_stairs.json b/src/test/resources/assets/strata/blockstates/schist_brick_stairs.json deleted file mode 100644 index fc26fe56..00000000 --- a/src/test/resources/assets/strata/blockstates/schist_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/schist_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/schist_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/schist_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/schist_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/schist_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/schist_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/schist_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/schist_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/schist_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/schist_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/schist_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/schist_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/schist_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/schist_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/schist_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/schist_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/schist_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/schist_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/schist_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/schist_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/schist_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/schist_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/schist_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/schist_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/schist_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/schist_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/schist_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/schist_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/schist_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/schist_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/schist_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/schist_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/schist_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/schist_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/schist_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/schist_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/schist_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/schist_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/schist_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/schist_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/schist_brick_wall.json b/src/test/resources/assets/strata/blockstates/schist_brick_wall.json deleted file mode 100644 index 4f0a4544..00000000 --- a/src/test/resources/assets/strata/blockstates/schist_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/schist_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/schist_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/schist_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/schist_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/schist_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/test/resources/assets/strata/blockstates/schist_bricks.json b/src/test/resources/assets/strata/blockstates/schist_bricks.json deleted file mode 100644 index 749f9657..00000000 --- a/src/test/resources/assets/strata/blockstates/schist_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/schist_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/schist_button.json b/src/test/resources/assets/strata/blockstates/schist_button.json deleted file mode 100644 index c1073f8b..00000000 --- a/src/test/resources/assets/strata/blockstates/schist_button.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "variants": { - "face=floor,facing=east,powered=false": { "model": "strata:block/schist_button", "y": 90 }, - "face=floor,facing=west,powered=false": { "model": "strata:block/schist_button", "y": 270 }, - "face=floor,facing=south,powered=false": { "model": "strata:block/schist_button", "y": 180 }, - "face=floor,facing=north,powered=false": { "model": "strata:block/schist_button" }, - "face=wall,facing=east,powered=false": { "model": "strata:block/schist_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=false": { "model": "strata:block/schist_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=false": { "model": "strata:block/schist_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=false": { "model": "strata:block/schist_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=false": { "model": "strata:block/schist_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=false": { "model": "strata:block/schist_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=false": { "model": "strata:block/schist_button", "x": 180 }, - "face=ceiling,facing=north,powered=false": { "model": "strata:block/schist_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/schist_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/schist_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/schist_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/schist_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/schist_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/schist_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/schist_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/schist_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/schist_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/schist_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/schist_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/schist_button", "x": 180, "y": 180 } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/schist_pressure_plate.json b/src/test/resources/assets/strata/blockstates/schist_pressure_plate.json deleted file mode 100644 index 930fd092..00000000 --- a/src/test/resources/assets/strata/blockstates/schist_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "variants": { - "powered=false": { "model": "strata:block/schist_pressure_plate" }, - "powered=true": { "model": "strata:block/schist_pressure_plate_down" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/schist_slab.json b/src/test/resources/assets/strata/blockstates/schist_slab.json deleted file mode 100644 index aec91ccd..00000000 --- a/src/test/resources/assets/strata/blockstates/schist_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/schist_slab" }, - "type=top": { "model": "strata:block/schist_slab_top" }, - "type=double": { "model": "strata:block/schist" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/schist_stairs.json b/src/test/resources/assets/strata/blockstates/schist_stairs.json deleted file mode 100644 index 4c2bf0e8..00000000 --- a/src/test/resources/assets/strata/blockstates/schist_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/schist_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/schist_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/schist_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/schist_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/schist_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/schist_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/schist_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/schist_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/schist_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/schist_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/schist_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/schist_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/schist_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/schist_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/schist_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/schist_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/schist_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/schist_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/schist_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/schist_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/schist_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/schist_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/schist_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/schist_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/schist_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/schist_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/schist_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/schist_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/schist_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/schist_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/schist_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/schist_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/schist_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/schist_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/schist_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/schist_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/schist_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/schist_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/schist_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/schist_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/schist_wall.json b/src/test/resources/assets/strata/blockstates/schist_wall.json deleted file mode 100644 index 98f71690..00000000 --- a/src/test/resources/assets/strata/blockstates/schist_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/schist_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/schist_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/schist_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/schist_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/schist_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/test/resources/assets/strata/blockstates/scoria.json b/src/test/resources/assets/strata/blockstates/scoria.json deleted file mode 100644 index c29366b1..00000000 --- a/src/test/resources/assets/strata/blockstates/scoria.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/scoria" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/serpentinite.json b/src/test/resources/assets/strata/blockstates/serpentinite.json deleted file mode 100644 index 7f29ebab..00000000 --- a/src/test/resources/assets/strata/blockstates/serpentinite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/serpentinite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/shale.json b/src/test/resources/assets/strata/blockstates/shale.json deleted file mode 100644 index bea6df01..00000000 --- a/src/test/resources/assets/strata/blockstates/shale.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/shale" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/shale_brick_slab.json b/src/test/resources/assets/strata/blockstates/shale_brick_slab.json deleted file mode 100644 index 2e63c5bc..00000000 --- a/src/test/resources/assets/strata/blockstates/shale_brick_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/shale_brick_slab" }, - "type=top": { "model": "strata:block/shale_brick_slab_top" }, - "type=double": { "model": "strata:block/shale_brick" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/shale_brick_stairs.json b/src/test/resources/assets/strata/blockstates/shale_brick_stairs.json deleted file mode 100644 index 67e21463..00000000 --- a/src/test/resources/assets/strata/blockstates/shale_brick_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/shale_brick_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/shale_brick_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/shale_brick_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/shale_brick_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/shale_brick_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/shale_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/shale_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/shale_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/shale_brick_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/shale_brick_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/shale_brick_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/shale_brick_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/shale_brick_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/shale_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/shale_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/shale_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/shale_brick_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/shale_brick_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/shale_brick_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/shale_brick_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/shale_brick_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/shale_brick_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/shale_brick_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/shale_brick_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/shale_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/shale_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/shale_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/shale_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/shale_brick_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/shale_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/shale_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/shale_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/shale_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/shale_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/shale_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/shale_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/shale_brick_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/shale_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/shale_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/shale_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/shale_brick_wall.json b/src/test/resources/assets/strata/blockstates/shale_brick_wall.json deleted file mode 100644 index 6813d4a6..00000000 --- a/src/test/resources/assets/strata/blockstates/shale_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/shale_brick_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/shale_brick_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/shale_brick_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/shale_brick_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/shale_brick_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/test/resources/assets/strata/blockstates/shale_bricks.json b/src/test/resources/assets/strata/blockstates/shale_bricks.json deleted file mode 100644 index 12e0782d..00000000 --- a/src/test/resources/assets/strata/blockstates/shale_bricks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/shale_bricks" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/shale_button.json b/src/test/resources/assets/strata/blockstates/shale_button.json deleted file mode 100644 index ea4a873b..00000000 --- a/src/test/resources/assets/strata/blockstates/shale_button.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "variants": { - "face=floor,facing=east,powered=false": { "model": "strata:block/shale_button", "y": 90 }, - "face=floor,facing=west,powered=false": { "model": "strata:block/shale_button", "y": 270 }, - "face=floor,facing=south,powered=false": { "model": "strata:block/shale_button", "y": 180 }, - "face=floor,facing=north,powered=false": { "model": "strata:block/shale_button" }, - "face=wall,facing=east,powered=false": { "model": "strata:block/shale_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=false": { "model": "strata:block/shale_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=false": { "model": "strata:block/shale_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=false": { "model": "strata:block/shale_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=false": { "model": "strata:block/shale_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=false": { "model": "strata:block/shale_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=false": { "model": "strata:block/shale_button", "x": 180 }, - "face=ceiling,facing=north,powered=false": { "model": "strata:block/shale_button", "x": 180, "y": 180 }, - "face=floor,facing=east,powered=true": { "model": "strata:block/shale_button", "y": 90 }, - "face=floor,facing=west,powered=true": { "model": "strata:block/shale_button", "y": 270 }, - "face=floor,facing=south,powered=true": { "model": "strata:block/shale_button", "y": 180 }, - "face=floor,facing=north,powered=true": { "model": "strata:block/shale_button" }, - "face=wall,facing=east,powered=true": { "model": "strata:block/shale_button", "uvlock": true, "x": 90, "y": 90 }, - "face=wall,facing=west,powered=true": { "model": "strata:block/shale_button", "uvlock": true, "x": 90, "y": 270 }, - "face=wall,facing=south,powered=true": { "model": "strata:block/shale_button", "uvlock": true, "x": 90, "y": 180 }, - "face=wall,facing=north,powered=true": { "model": "strata:block/shale_button", "uvlock": true, "x": 90 }, - "face=ceiling,facing=east,powered=true": { "model": "strata:block/shale_button", "x": 180, "y": 270 }, - "face=ceiling,facing=west,powered=true": { "model": "strata:block/shale_button", "x": 180, "y": 90 }, - "face=ceiling,facing=south,powered=true": { "model": "strata:block/shale_button", "x": 180 }, - "face=ceiling,facing=north,powered=true": { "model": "strata:block/shale_button", "x": 180, "y": 180 } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/shale_pressure_plate.json b/src/test/resources/assets/strata/blockstates/shale_pressure_plate.json deleted file mode 100644 index 6fdaa956..00000000 --- a/src/test/resources/assets/strata/blockstates/shale_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "variants": { - "powered=false": { "model": "strata:block/shale_pressure_plate" }, - "powered=true": { "model": "strata:block/shale_pressure_plate_down" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/shale_slab.json b/src/test/resources/assets/strata/blockstates/shale_slab.json deleted file mode 100644 index a1c3119e..00000000 --- a/src/test/resources/assets/strata/blockstates/shale_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "type=bottom": { "model": "strata:block/shale_slab" }, - "type=top": { "model": "strata:block/shale_slab_top" }, - "type=double": { "model": "strata:block/shale" } - } -} diff --git a/src/test/resources/assets/strata/blockstates/shale_stairs.json b/src/test/resources/assets/strata/blockstates/shale_stairs.json deleted file mode 100644 index 6a20f768..00000000 --- a/src/test/resources/assets/strata/blockstates/shale_stairs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { "model": "strata:block/shale_stairs" }, - "facing=west,half=bottom,shape=straight": { "model": "strata:block/shale_stairs", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=straight": { "model": "strata:block/shale_stairs", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=straight": { "model": "strata:block/shale_stairs", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_right": { "model": "strata:block/shale_stairs_outer" }, - "facing=west,half=bottom,shape=outer_right": { "model": "strata:block/shale_stairs_outer", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=outer_right": { "model": "strata:block/shale_stairs_outer", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=outer_right": { "model": "strata:block/shale_stairs_outer", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=outer_left": { "model": "strata:block/shale_stairs_outer", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=outer_left": { "model": "strata:block/shale_stairs_outer", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=outer_left": { "model": "strata:block/shale_stairs_outer" }, - "facing=north,half=bottom,shape=outer_left": { "model": "strata:block/shale_stairs_outer", "y": 180, "uvlock": true }, - "facing=east,half=bottom,shape=inner_right": { "model": "strata:block/shale_stairs_inner" }, - "facing=west,half=bottom,shape=inner_right": { "model": "strata:block/shale_stairs_inner", "y": 180, "uvlock": true }, - "facing=south,half=bottom,shape=inner_right": { "model": "strata:block/shale_stairs_inner", "y": 90, "uvlock": true }, - "facing=north,half=bottom,shape=inner_right": { "model": "strata:block/shale_stairs_inner", "y": 270, "uvlock": true }, - "facing=east,half=bottom,shape=inner_left": { "model": "strata:block/shale_stairs_inner", "y": 270, "uvlock": true }, - "facing=west,half=bottom,shape=inner_left": { "model": "strata:block/shale_stairs_inner", "y": 90, "uvlock": true }, - "facing=south,half=bottom,shape=inner_left": { "model": "strata:block/shale_stairs_inner" }, - "facing=north,half=bottom,shape=inner_left": { "model": "strata:block/shale_stairs_inner", "y": 180, "uvlock": true }, - "facing=east,half=top,shape=straight": { "model": "strata:block/shale_stairs", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=straight": { "model": "strata:block/shale_stairs", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=straight": { "model": "strata:block/shale_stairs", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=straight": { "model": "strata:block/shale_stairs", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=outer_right": { "model": "strata:block/shale_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=outer_right": { "model": "strata:block/shale_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=outer_right": { "model": "strata:block/shale_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=outer_right": { "model": "strata:block/shale_stairs_outer", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=outer_left": { "model": "strata:block/shale_stairs_outer", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=outer_left": { "model": "strata:block/shale_stairs_outer", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=outer_left": { "model": "strata:block/shale_stairs_outer", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=outer_left": { "model": "strata:block/shale_stairs_outer", "x": 180, "y": 270, "uvlock": true }, - "facing=east,half=top,shape=inner_right": { "model": "strata:block/shale_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=west,half=top,shape=inner_right": { "model": "strata:block/shale_stairs_inner", "x": 180, "y": 270, "uvlock": true }, - "facing=south,half=top,shape=inner_right": { "model": "strata:block/shale_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=north,half=top,shape=inner_right": { "model": "strata:block/shale_stairs_inner", "x": 180, "uvlock": true }, - "facing=east,half=top,shape=inner_left": { "model": "strata:block/shale_stairs_inner", "x": 180, "uvlock": true }, - "facing=west,half=top,shape=inner_left": { "model": "strata:block/shale_stairs_inner", "x": 180, "y": 180, "uvlock": true }, - "facing=south,half=top,shape=inner_left": { "model": "strata:block/shale_stairs_inner", "x": 180, "y": 90, "uvlock": true }, - "facing=north,half=top,shape=inner_left": { "model": "strata:block/shale_stairs_inner", "x": 180, "y": 270, "uvlock": true } - } -} diff --git a/src/test/resources/assets/strata/blockstates/shale_wall.json b/src/test/resources/assets/strata/blockstates/shale_wall.json deleted file mode 100644 index 9da93d97..00000000 --- a/src/test/resources/assets/strata/blockstates/shale_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "multipart": [ - { "when": { "up": "true" }, - "apply": { "model": "strata:block/shale_wall_post" } - }, - { "when": { "north": "true" }, - "apply": { "model": "strata:block/shale_wall_side", "uvlock": true } - }, - { "when": { "east": "true" }, - "apply": { "model": "strata:block/shale_wall_side", "y": 90, "uvlock": true } - }, - { "when": { "south": "true" }, - "apply": { "model": "strata:block/shale_wall_side", "y": 180, "uvlock": true } - }, - { "when": { "west": "true" }, - "apply": { "model": "strata:block/shale_wall_side", "y": 270, "uvlock": true } - } - ] -} diff --git a/src/test/resources/assets/strata/blockstates/shonkinite.json b/src/test/resources/assets/strata/blockstates/shonkinite.json deleted file mode 100644 index 5807b117..00000000 --- a/src/test/resources/assets/strata/blockstates/shonkinite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/shonkinite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/shoshonite.json b/src/test/resources/assets/strata/blockstates/shoshonite.json deleted file mode 100644 index 21c3a0a1..00000000 --- a/src/test/resources/assets/strata/blockstates/shoshonite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/shoshonite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/siltstone.json b/src/test/resources/assets/strata/blockstates/siltstone.json deleted file mode 100644 index e3c529e8..00000000 --- a/src/test/resources/assets/strata/blockstates/siltstone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/siltstone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/skarn.json b/src/test/resources/assets/strata/blockstates/skarn.json deleted file mode 100644 index feb8d6ea..00000000 --- a/src/test/resources/assets/strata/blockstates/skarn.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/skarn" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/slate.json b/src/test/resources/assets/strata/blockstates/slate.json deleted file mode 100644 index 25cfce76..00000000 --- a/src/test/resources/assets/strata/blockstates/slate.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/slate" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/soapstone.json b/src/test/resources/assets/strata/blockstates/soapstone.json deleted file mode 100644 index 520999ab..00000000 --- a/src/test/resources/assets/strata/blockstates/soapstone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/soapstone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/sovite.json b/src/test/resources/assets/strata/blockstates/sovite.json deleted file mode 100644 index b0fcc724..00000000 --- a/src/test/resources/assets/strata/blockstates/sovite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/sovite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/suevite.json b/src/test/resources/assets/strata/blockstates/suevite.json deleted file mode 100644 index 41527984..00000000 --- a/src/test/resources/assets/strata/blockstates/suevite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/suevite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/syenite.json b/src/test/resources/assets/strata/blockstates/syenite.json deleted file mode 100644 index 135ca2a4..00000000 --- a/src/test/resources/assets/strata/blockstates/syenite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/syenite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/sylvinite.json b/src/test/resources/assets/strata/blockstates/sylvinite.json deleted file mode 100644 index 290e1818..00000000 --- a/src/test/resources/assets/strata/blockstates/sylvinite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/sylvinite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/tachylite.json b/src/test/resources/assets/strata/blockstates/tachylite.json deleted file mode 100644 index 05e75559..00000000 --- a/src/test/resources/assets/strata/blockstates/tachylite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/tachylite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/taconite.json b/src/test/resources/assets/strata/blockstates/taconite.json deleted file mode 100644 index fd492e7e..00000000 --- a/src/test/resources/assets/strata/blockstates/taconite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/taconite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/talc_carbonate.json b/src/test/resources/assets/strata/blockstates/talc_carbonate.json deleted file mode 100644 index 0f904afb..00000000 --- a/src/test/resources/assets/strata/blockstates/talc_carbonate.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/talc_carbonate" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/tectonite.json b/src/test/resources/assets/strata/blockstates/tectonite.json deleted file mode 100644 index 520999ab..00000000 --- a/src/test/resources/assets/strata/blockstates/tectonite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/soapstone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/tephriphonolite.json b/src/test/resources/assets/strata/blockstates/tephriphonolite.json deleted file mode 100644 index 34f3fb18..00000000 --- a/src/test/resources/assets/strata/blockstates/tephriphonolite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/tephriphonolite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/tephrite.json b/src/test/resources/assets/strata/blockstates/tephrite.json deleted file mode 100644 index e4e88041..00000000 --- a/src/test/resources/assets/strata/blockstates/tephrite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/tephrite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/teschenite.json b/src/test/resources/assets/strata/blockstates/teschenite.json deleted file mode 100644 index a6a06d65..00000000 --- a/src/test/resources/assets/strata/blockstates/teschenite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/teschenite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/theralite.json b/src/test/resources/assets/strata/blockstates/theralite.json deleted file mode 100644 index 723d4310..00000000 --- a/src/test/resources/assets/strata/blockstates/theralite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/theralite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/tillite.json b/src/test/resources/assets/strata/blockstates/tillite.json deleted file mode 100644 index 4d25e70e..00000000 --- a/src/test/resources/assets/strata/blockstates/tillite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/tillite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/tonalite.json b/src/test/resources/assets/strata/blockstates/tonalite.json deleted file mode 100644 index 4e9e39cc..00000000 --- a/src/test/resources/assets/strata/blockstates/tonalite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/tonalite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/trachyandesite.json b/src/test/resources/assets/strata/blockstates/trachyandesite.json deleted file mode 100644 index e32b40fa..00000000 --- a/src/test/resources/assets/strata/blockstates/trachyandesite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/trachyandesite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/trachybasalt.json b/src/test/resources/assets/strata/blockstates/trachybasalt.json deleted file mode 100644 index 9fd3ad86..00000000 --- a/src/test/resources/assets/strata/blockstates/trachybasalt.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/trachybasalt" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/trachyte.json b/src/test/resources/assets/strata/blockstates/trachyte.json deleted file mode 100644 index e2f40e4d..00000000 --- a/src/test/resources/assets/strata/blockstates/trachyte.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/trachyte" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/travertine.json b/src/test/resources/assets/strata/blockstates/travertine.json deleted file mode 100644 index 8b618963..00000000 --- a/src/test/resources/assets/strata/blockstates/travertine.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/travertine" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/troctolite.json b/src/test/resources/assets/strata/blockstates/troctolite.json deleted file mode 100644 index 526d7150..00000000 --- a/src/test/resources/assets/strata/blockstates/troctolite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/troctolite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/trondhjemite.json b/src/test/resources/assets/strata/blockstates/trondhjemite.json deleted file mode 100644 index d893aef2..00000000 --- a/src/test/resources/assets/strata/blockstates/trondhjemite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/trondhjemite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/tuff.json b/src/test/resources/assets/strata/blockstates/tuff.json deleted file mode 100644 index aee0a0b4..00000000 --- a/src/test/resources/assets/strata/blockstates/tuff.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/tuff" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/turbidite.json b/src/test/resources/assets/strata/blockstates/turbidite.json deleted file mode 100644 index 5933d8e2..00000000 --- a/src/test/resources/assets/strata/blockstates/turbidite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/turbidite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/unakite.json b/src/test/resources/assets/strata/blockstates/unakite.json deleted file mode 100644 index dc8643bc..00000000 --- a/src/test/resources/assets/strata/blockstates/unakite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/unakite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/variolite.json b/src/test/resources/assets/strata/blockstates/variolite.json deleted file mode 100644 index c0ba5e90..00000000 --- a/src/test/resources/assets/strata/blockstates/variolite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/variolite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/vogesite.json b/src/test/resources/assets/strata/blockstates/vogesite.json deleted file mode 100644 index f0fd8ea6..00000000 --- a/src/test/resources/assets/strata/blockstates/vogesite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/vogesite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/wackestone.json b/src/test/resources/assets/strata/blockstates/wackestone.json deleted file mode 100644 index 804c47d4..00000000 --- a/src/test/resources/assets/strata/blockstates/wackestone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/wackestone" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/websterite.json b/src/test/resources/assets/strata/blockstates/websterite.json deleted file mode 100644 index 86f613ca..00000000 --- a/src/test/resources/assets/strata/blockstates/websterite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/websterite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/wehrlite.json b/src/test/resources/assets/strata/blockstates/wehrlite.json deleted file mode 100644 index 4265a087..00000000 --- a/src/test/resources/assets/strata/blockstates/wehrlite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/wehrlite" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/blockstates/whiteschist.json b/src/test/resources/assets/strata/blockstates/whiteschist.json deleted file mode 100644 index 13479625..00000000 --- a/src/test/resources/assets/strata/blockstates/whiteschist.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "strata:block/whiteschist" } - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/lang/en_us.json b/src/test/resources/assets/strata/lang/en_us.json deleted file mode 100644 index d18e20a7..00000000 --- a/src/test/resources/assets/strata/lang/en_us.json +++ /dev/null @@ -1,950 +0,0 @@ -{ - "_comment": "Item Groups", - - "itemGroup.debug": "Debug Tab", - "itemGroup.igneous": "Igneous Rocks", - "itemGroup.sedimentary": "Sedimentary Rocks", - "itemGroup.metamorphic": "Metamorphic Rocks", - "itemGroup.miscellaneous": "Miscellaneous Rocks", - - "_comment": "Debug Blocks and Items", - - "item.strata.debug_item": "Debug Item", - "block.strata.debug_block": "Debug Block", - "block.strata.debug_slab": "Debug Slab", - "block.strata.debug_stairs": "Debug Stairs", - "block.strata.debug_wall": "Debug Wall", - "block.strata.debug_ore": "Debug Ore", - - "_comment": "Igneous Rocks", - - "block.strata.aa": "Aa", - "block.strata.aa_slab": "Aa Slab", - "block.strata.aa_stairs": "Aa Stairs", - "block.strata.aa_wall": "Aa Wall", - - "block.strata.adakite": "Adakite", - "block.strata.adakite_slab": "Adakite Slab", - "block.strata.adakite_stairs": "Adakite Stairs", - "block.strata.adakite_wall": "Adakite Wall", - - "block.strata.alkali_fieldspar_granite": "Alkali Fieldspar Granite", - "block.strata.akali_fieldspar_granite_slab": "Akali Fieldspar Granite Slab", - "block.strata.akali_fieldspar_granite_stairs": "Akali Fieldspar Granite Stairs", - "block.strata.akali_fieldspar_granite_wall": "Akali Fieldspar Granite Wall", - - "block.strata.anorthosite": "Anorthosite", - "block.strata.anorthosite_slab": "Anorthosite Slab", - "block.strata.anorthosite_stairs": "Anorthosite Stairs", - "block.strata.anorthosite_wall": "Anorthosite Wall", - - "block.strata.aplite": "Aplite", - "block.strata.aplite_slab": "Aplite Slab", - "block.strata.aplite_stairs": "Aplite Stairs", - "block.strata.aplite_wall": "Aplite Wall", - - "block.strata.basalt": "Basalt", - "block.strata.basalt_slab": "Basalt Slab", - "block.strata.basalt_stairs": "Basalt Stairs", - "block.strata.basalt_wall": "Basalt Wall", - "block.strata.basalt_button": "Basalt Button", - "block.strata.basalt_pressure_plate": "Basalt Pressure Plate", - - "block.strata.basalt_bricks": "Basalt Bricks", - "block.strata.basalt_brick_slab": "Basalt Brick Slab", - "block.strata.basalt_brick_stairs": "Basalt Brick Stairs", - "block.strata.basalt_brick_wall": "Basalt Brick Wall", - "block.strata.chiseled_basalt_bricks": "Chiseled Basalt Bricks", - "block.strata.cracked_basalt_bricks": "Cracked Basalt Bricks", - "block.strata.mossy_basalt_bricks": "Mossy Basalt Bricks", - "block.strata.mossy_basalt_brick_slab": "Mossy Basalt Brick Slab", - "block.strata.mossy_basalt_brick_stairs": "Mossy Basalt Brick Stairs", - "block.strata.mossy_basalt_brick_wall": "Mossy Basalt Brick Wall", - - "block.strata.polished_basalt": "Polished Basalt", - "block.strata.polished_basalt_slab": "Polished Basalt Slab", - "block.strata.polished_basalt_stairs": "Polished Basalt Stairs", - - "block.strata.basaltic_trachyandesite": "Basaltic Trachyandesite", - "block.strata.basaltic_trachyandesite_slab": "Basaltic Trachyandesite Slab", - "block.strata.basaltic_trachyandesite_stairs": "Basaltic Trachyandesite Stairs", - "block.strata.basaltic_trachyandesite_wall": "Basaltic Trachyandesite Wall", - - "block.strata.basanite": "Basanite", - "block.strata.basanite_slab": "Basanite Slab", - "block.strata.basanite_stairs": "Basanite Stairs", - "block.strata.basanite_wall": "Basanite Wall", - - "block.strata.benmoreite": "Benmoreite", - "block.strata.benmoreite_slab": "Benmoreite Slab", - "block.strata.benmoreite_stairs": "Benmoreite Stairs", - "block.strata.benmoreite_wall": "Benmoreite Wall", - - "block.strata.blairmorite": "Blairmorite", - "block.strata.blairmorite_slab": "Blairmorite Slab", - "block.strata.blairmorite_stairs": "Blairmorite Stairs", - "block.strata.blairmorite_wall": "Blairmorite Wall", - - "block.strata.boninite": "Boninite", - "block.strata.boninite_slab": "Boninite Slab", - "block.strata.boninite_stairs": "Boninite Stairs", - "block.strata.boninite_wall": "Boninite Wall", - - "block.strata.carbonatite": "Carbonatite", - "block.strata.carbonatite_slab": "Carbonatite Slab", - "block.strata.carbonatite_stairs": "Carbonatite Stairs", - "block.strata.carbonatite_wall": "Carbonatite Wall", - - "block.strata.charnockite": "Charnockite", - "block.strata.charnockite_slab": "Charnockite Slab", - "block.strata.charnockite_stairs": "Charnockite Stairs", - "block.strata.charnockite_wall": "Charnockite Wall", - - "block.strata.comendite": "Comendite", - "block.strata.comendite_slab": "Comendite Slab", - "block.strata.comendite_stairs": "Comendite Stairs", - "block.strata.comendite_wall": "Comendite Wall", - - "block.strata.dacite": "Dacite", - "block.strata.dacite_slab": "Dacite Slab", - "block.strata.dacite_stairs": "Dacite Stairs", - "block.strata.dacite_wall": "Dacite Wall", - - "block.strata.diabase": "Diabase", - "block.strata.diabase_slab": "Diabase Slab", - "block.strata.diabase_stairs": "Diabase Stairs", - "block.strata.diabase_wall": "Diabase Wall", - - "block.strata.dunite": "Dunite", - "block.strata.dunite_slab": "Dunite Slab", - "block.strata.dunite_stairs": "Dunite Stairs", - "block.strata.dunite_wall": "Dunite Wall", - - "block.strata.enderbite": "Enderbite", - "block.strata.enderbite_slab": "Enderbite Slab", - "block.strata.enderbite_stairs": "Enderbite Stairs", - "block.strata.enderbite_wall": "Enderbite Wall", - - "block.strata.essexite": "Essexite", - "block.strata.essexite_slab": "Essexite Slab", - "block.strata.essexite_stairs": "Essexite Stairs", - "block.strata.essexite_wall": "Essexite Wall", - - "block.strata.foidolite": "Foidolite", - "block.strata.foidolite_slab": "Foidolite Slab", - "block.strata.foidolite_stairs": "Foidolite Stairs", - "block.strata.foidolite_wall": "Foidolite Wall", - - "block.strata.gabbro": "Gabbro", - "block.strata.gabbro_slab": "Gabbro Slab", - "block.strata.gabbro_stairs": "Gabbro Stairs", - "block.strata.gabbro_wall": "Gabbro Wall", - "block.strata.gabbro_button": "Gabbro Button", - "block.strata.gabbro_pressure_plate": "Gabbro Pressure Plate", - - "block.strata.gabbro_bricks": "Gabbro Bricks", - "block.strata.gabbro_brick_slab": "Gabbro Brick Slab", - "block.strata.gabbro_brick_stairs": "Gabbro Brick Stairs", - "block.strata.gabbro_brick_wall": "Gabbro Brick Wall", - "block.strata.chiseled_gabbro_bricks": "Chiseled Gabbro Bricks", - "block.strata.cracked_gabbro_bricks": "Cracked Gabbro Bricks", - "block.strata.mossy_gabbro_bricks": "Mossy Gabbro Bricks", - "block.strata.mossy_gabbro_brick_slab": "Mossy Gabbro Brick Slab", - "block.strata.mossy_gabbro_brick_stairs": "Mossy Gabbro Brick Stairs", - "block.strata.mossy_gabbro_brick_wall": "Mossy Gabbro Brick Wall", - - "block.strata.polished_gabbro": "Polished Gabbro", - "block.strata.polished_gabbro_slab": "Polished Gabbro Slab", - "block.strata.polished_gabbro_stairs": "Polished Gabbro Stairs", - - "block.strata.granodiorite": "Granodiorite", - "block.strata.granodiorite_slab": "Granodiorite Slab", - "block.strata.granodiorite_stairs": "Granodiorite Stairs", - "block.strata.granodiorite_wall": "Granodiorite Wall", - - "block.strata.granophyre": "Granophyre", - "block.strata.granophyre_slab": "Granophyre Slab", - "block.strata.granophyre_stairs": "Granophyre Stairs", - "block.strata.granophyre_wall": "Granophyre Wall", - - "block.strata.hawaiite": "Hawaiite", - "block.strata.hawaiite_slab": "Hawaiite Slab", - "block.strata.hawaiite_stairs": "Hawaiite Stairs", - "block.strata.hawaiite_wall": "Hawaiite Wall", - - "block.strata.hazburgite": "Hazburgite", - "block.strata.hazburgite_slab": "Hazburgite Slab", - "block.strata.hazburgite_stairs": "Hazburgite Stairs", - "block.strata.hazburgite_wall": "Hazburgite Wall", - - "block.strata.hornblendite": "Hornblendite", - "block.strata.hornblendite_slab": "Hornblendite Slab", - "block.strata.hornblendite_stairs": "Hornblendite Stairs", - "block.strata.hornblendite_wall": "Hornblendite Wall", - - "block.strata.hyaloclastit": "Hyaloclastit", - "block.strata.hyaloclastit_slab": "Hyaloclastit Slab", - "block.strata.hyaloclastit_stairs": "Hyaloclastit Stairs", - "block.strata.hyaloclastit_wall": "Hyaloclastit Wall", - - "block.strata.icelandite": "Icelandite", - "block.strata.icelandite_slab": "Icelandite Slab", - "block.strata.icelandite_stairs": "Icelandite Stairs", - "block.strata.icelandite_wall": "Icelandite Wall", - - "block.strata.ijolite": "Ijolite", - "block.strata.ijolite_slab": "Ijolite Slab", - "block.strata.ijolite_stairs": "Ijolite Stairs", - "block.strata.ijolite_wall": "Ijolite Wall", - - "block.strata.kimberlite": "Kimberlite", - "block.strata.kimberlite_slab": "Kimberlite Slab", - "block.strata.kimberlite_stairs": "Kimberlite Stairs", - "block.strata.kimberlite_wall": "Kimberlite Wall", - - "block.strata.komatiite": "Komatiite", - "block.strata.komatiite_slab": "Komatiite Slab", - "block.strata.komatiite_stairs": "Komatiite Stairs", - "block.strata.komatiite_wall": "Komatiite Wall", - - "block.strata.lamprophyre": "Lamprophyre", - "block.strata.lamprophyre_slab": "Lamprophyre Slab", - "block.strata.lamprophyre_stairs": "Lamprophyre Stairs", - "block.strata.lamprophyre_wall": "Lamprophyre Wall", - - "block.strata.latite": "Latite", - "block.strata.latite_slab": "Latite Slab", - "block.strata.latite_stairs": "Latite Stairs", - "block.strata.latite_wall": "Latite Wall", - - "block.strata.lherzolite": "Lherzolite", - "block.strata.lherzolite_slab": "Lherzolite Slab", - "block.strata.lherzolite_stairs": "Lherzolite Stairs", - "block.strata.lherzolite_wall": "Lherzolite Wall", - - "block.strata.monzogranite": "Monzogranite", - "block.strata.monzogranite_slab": "Monzogranite Slab", - "block.strata.monzogranite_stairs": "Monzogranite Stairs", - "block.strata.monzogranite_wall": "Monzogranite Wall", - - "block.strata.monzonite": "Monzonite", - "block.strata.monzonite_slab": "Monzonite Slab", - "block.strata.monzonite_stairs": "Monzonite Stairs", - "block.strata.monzonite_wall": "Monzonite Wall", - - "block.strata.mugearite": "Mugearite", - "block.strata.mugearite_slab": "Mugearite Slab", - "block.strata.mugearite_stairs": "Mugearite Stairs", - "block.strata.mugearite_wall": "Mugearite Wall", - - "block.strata.napoleonite": "Napoleonite", - "block.strata.napoleonite_slab": "Napoleonite Slab", - "block.strata.napoleonite_stairs": "Napoleonite Stairs", - "block.strata.napoleonite_wall": "Napoleonite Wall", - - "block.strata.nephelinite": "Nephelinite", - "block.strata.nephelinite_slab": "Nephelinite Slab", - "block.strata.nephelinite_stairs": "Nephelinite Stairs", - "block.strata.nephelinite_wall": "Nephelinite Wall", - - "block.strata.norite": "Norite", - "block.strata.norite_slab": "Norite Slab", - "block.strata.norite_stairs": "Norite Stairs", - "block.strata.norite_wall": "Norite Wall", - - "block.strata.pahoehoe": "Pahoehoe", - "block.strata.pahoehoe_slab": "Pahoehoe Slab", - "block.strata.pahoehoe_stairs": "Pahoehoe Stairs", - "block.strata.pahoehoe_wall": "Pahoehoe Wall", - - "block.strata.pantellerite": "Pantellerite", - "block.strata.pantellerite_slab": "Pantellerite Slab", - "block.strata.pantellerite_stairs": "Pantellerite Stairs", - "block.strata.pantellerite_wall": "Pantellerite Wall", - - "block.strata.pegmatite": "Pegmatite", - "block.strata.pegmatite_slab": "Pegmatite Slab", - "block.strata.pegmatite_stairs": "Pegmatite Stairs", - "block.strata.pegmatite_wall": "Pegmatite Wall", - - "block.strata.peridotite":"Peridotite", - "block.strata.peridotite_slab": "Peridotite Slab", - "block.strata.peridotite_stairs": "Peridotite Stairs", - "block.strata.peridotite_wall": "Peridotite Wall", - - "block.strata.phonolite": "Phonolite", - "block.strata.phonolite_slab": "Phonolite Slab", - "block.strata.phonolite_stairs": "Phonolite Stairs", - "block.strata.phonolite_wall": "Phonolite Wall", - - "block.strata.phonotephrite": "Phonotephrite", - "block.strata.phonotephrite_slab": "Phonotephrite Slab", - "block.strata.phonotephrite_stairs": "Phonotephrite Stairs", - "block.strata.phonotephrite_wall": "Phonotephrite Wall", - - "block.strata.picrite": "Picrite", - "block.strata.picrite_slab": "Picrite Slab", - "block.strata.picrite_stairs": "Picrite Stairs", - "block.strata.picrite_wall": "Picrite Wall", - - "block.strata.porphyry": "Porphyry", - "block.strata.porphyry_slab": "Porphyry Slab", - "block.strata.porphyry_stairs": "Porphyry Stairs", - "block.strata.porphyry_wall": "Porphyry Wall", - - "block.strata.pumice": "Pumice", - "block.strata.pumice_slab": "Pumice Slab", - "block.strata.pumice_stairs": "Pumice Stairs", - "block.strata.pumice_wall": "Pumice Wall", - - "block.strata.pyroxenite": "Pyroxenite", - "block.strata.pyroxenite_slab": "Pyroxenite Slab", - "block.strata.pyroxenite_stairs": "Pyroxenite Stairs", - "block.strata.pyroxenite_wall": "Pyroxenite Wall", - - "block.strata.quartz_diorite": "Quartz Diorite", - "block.strata.quartz_diorite_slab": "Quartz Diorite Slab", - "block.strata.quartz_diorite_stairs": "Quartz Diorite Stairs", - "block.strata.quartz_diorite_wall": "Quartz Diorite Wall", - - "block.strata.quartz_monzonite": "Quartz Monzonite", - "block.strata.quartz_monzonite_slab": "Quartz Monzonite Slab", - "block.strata.quartz_monzonite_stairs": "Quartz Monzonite Stairs", - "block.strata.quartz_monzonite_wall": "Quartz Monzonite Wall", - - "block.strata.quartzolite": "Quartzolite", - "block.strata.quartzolite_slab": "Quartzolite Slab", - "block.strata.quartzolite_stairs": "Quartzolite Stairs", - "block.strata.quartzolite_wall": "Quartzolite Wall", - - "block.strata.rhyodacite": "Rhyodacite", - "block.strata.rhyodacite_slab": "Rhyodacite Slab", - "block.strata.rhyodacite_stairs": "Rhyodacite Stairs", - "block.strata.rhyodacite_wall": "Rhyodacite Wall", - - "block.strata.rhyolite": "Rhyolite", - "block.strata.rhyolite_slab": "Rhyolite Slab", - "block.strata.rhyolite_stairs": "Rhyolite Stairs", - "block.strata.rhyolite_wall": "Rhyolite Wall", - - "block.strata.scoria": "Scoria", - "block.strata.scoria_slab": "Scoria Slab", - "block.strata.scoria_stairs": "Scoria Stairs", - "block.strata.scoria_wall": "Scoria Wall", - - "block.strata.shonkinite": "Shonkinite", - "block.strata.shonkinite_slab": "Shonkinite Slab", - "block.strata.shonkinite_stairs": "Shonkinite Stairs", - "block.strata.shonkinite_wall": "Shonkinite Wall", - - "block.strata.shoshonite": "Shoshonite", - "block.strata.shoshonite_slab": "Shoshonite Slab", - "block.strata.shoshonite_stairs": "Shoshonite Stairs", - "block.strata.shoshonite_wall": "Shoshonite Wall", - - "block.strata.sovite": "Sovite", - "block.strata.sovite_slab": "Sovite Slab", - "block.strata.sovite_stairs": "Sovite Stairs", - "block.strata.sovite_wall": "Sovite Wall", - - "block.strata.syenite": "Syenite", - "block.strata.syenite_slab": "Syenite Slab", - "block.strata.syenite_stairs": "Syenite Stairs", - "block.strata.syenite_wall": "Syenite Wall", - - "block.strata.tachylite": "Tachylite", - "block.strata.tachylite_slab": "Tachylite Slab", - "block.strata.tachylite_stairs": "Tachylite Stairs", - "block.strata.tachylite_wall": "Tachylite Wall", - - "block.strata.tephriphonolite": "Tephriphonolite", - "block.strata.tephriphonolite_slab": "Tephriphonolite Slab", - "block.strata.tephriphonolite_stairs": "Tephriphonolite Stairs", - "block.strata.tephriphonolite_wall": "Tephriphonolite Wall", - - "block.strata.tephrite": "Tephrite", - "block.strata.tephrite_slab": "Tephrite Slab", - "block.strata.tephrite_stairs": "Tephrite Stairs", - "block.strata.tephrite_wall": "Tephrite Wall", - - "block.strata.tonalite": "Tonalite", - "block.strata.tonalite_slab": "Tonalite Slab", - "block.strata.tonalite_stairs": "Tonalite Stairs", - "block.strata.tonalite_wall": "Tonalite Wall", - - "block.strata.trachyandesite": "Trachyandesite", - "block.strata.trachyandesite_slab": "Trachyandesite Slab", - "block.strata.trachyandesite_stairs": "Trachyandesite Stairs", - "block.strata.trachyandesite_wall": "Trachyandesite Wall", - - "block.strata.trachybasalt": "Trachybasalt", - "block.strata.trachybasalt_slab": "Trachybasalt Slab", - "block.strata.trachybasalt_stairs": "Trachybasalt Stairs", - "block.strata.trachybasalt_wall": "Trachybasalt Wall", - - "block.strata.trachyte": "Trachyte", - "block.strata.trachyte_slab": "Trachyte Slab", - "block.strata.trachyte_stairs": "Trachyte Stairs", - "block.strata.trachyte_wall": "Trachyte Wall", - - "block.strata.troctolite": "Troctolite", - "block.strata.troctolite_slab": "Troctolite Slab", - "block.strata.troctolite_stairs": "Troctolite Stairs", - "block.strata.troctolite_wall": "Troctolite Wall", - - "block.strata.trondhjemite": "Trondhjemite", - "block.strata.trondhjemite_slab": "Trondhjemite Slab", - "block.strata.trondhjemite_stairs": "Trondhjemite Stairs", - "block.strata.trondhjemite_wall": "Trondhjemite Wall", - - "block.strata.tuff": "Tuff", - "block.strata.tuff_slab": "Tuff Slab", - "block.strata.tuff_stairs": "Tuff Stairs", - "block.strata.tuff_wall": "Tuff Wall", - - "block.strata.websterite": "Websterite", - "block.strata.websterite_slab": "Websterite Slab", - "block.strata.websterite_stairs": "Websterite Stairs", - "block.strata.websterite_wall": "Websterite Wall", - - "block.strata.wehrlite": "Wehrlite", - "block.strata.wehrlite_slab": "Wehrlite Slab", - "block.strata.wehrlite_stairs": "Wehrlite Stairs", - "block.strata.wehrlite_wall": "Wehrlite Wall", - - "_comment": "Sedimentary Rocks", - - "block.strata.argillite": "Argillite", - "block.strata.argillite_slab": "Argillite Slab", - "block.strata.argillite_stairs": "Argillite Stairs", - "block.strata.argillite_wall": "Argillite Wall", - - "block.strata.arkose": "Arkose", - "block.strata.arkose_slab": "Arkose Slab", - "block.strata.arkose_stairs": "Arkose Stairs", - "block.strata.arkose_wall": "Arkose Wall", - - "block.strata.breccia": "Breccia", - "block.strata.breccia_slab": "Breccia Slab", - "block.strata.breccia_stairs": "Breccia Stairs", - "block.strata.breccia_wall": "Breccia Wall", - - "block.strata.calcarenite": "Calcarenite", - "block.strata.calcarenite_slab": "Calcarenite Slab", - "block.strata.calcarenite_stairs": "Calcarenite Stairs", - "block.strata.calcarenite_wall": "Calcarenite Wall", - - "block.strata.chalk": "Chalk", - "block.strata.chalk_slab": "Chalk Slab", - "block.strata.chalk_stairs": "Chalk Stairs", - "block.strata.chalk_wall": "Chalk Wall", - - "block.strata.chert": "Chert", - "block.strata.chert_slab": "Chert Slab", - "block.strata.chert_stairs": "Chert Stairs", - "block.strata.chert_wall": "Chert Wall", - - "block.strata.claystone": "Claystone", - "block.strata.claystone_slab": "Claystone Slab", - "block.strata.claystone_stairs": "Claystone Stairs", - "block.strata.claystone_wall": "Claystone Wall", - - "block.strata.conglomerate": "Conglomerate", - "block.strata.conglomerate_slab": "Conglomerate Slab", - "block.strata.conglomerate_stairs": "Conglomerate Stairs", - "block.strata.conglomerate_wall": "Conglomerate Wall", - - "block.strata.coquina": "Coquina", - "block.strata.coquina_slab": "Coquina Slab", - "block.strata.coquina_stairs": "Coquina Stairs", - "block.strata.coquina_wall": "Coquina Wall", - - "block.strata.diamictite": "Diamictite", - "block.strata.diamictite_slab": "Diamictite Slab", - "block.strata.diamictite_stairs": "Diamictite Stairs", - "block.strata.diamictite_wall": "Diamictite Wall", - - "block.strata.diatomite": "Diatomite", - "block.strata.diatomite_slab": "Diatomite Slab", - "block.strata.diatomite_stairs": "Diatomite Stairs", - "block.strata.diatomite_wall": "Diatomite Wall", - - "block.strata.dolomite": "Dolomite", - "block.strata.dolomite_slab": "Dolomite Slab", - "block.strata.dolomite_stairs": "Dolomite Stairs", - "block.strata.dolomite_wall": "Dolomite Wall", - - "block.strata.evaporite": "Evaporite", - "block.strata.evaporite_slab": "Evaporite Slab", - "block.strata.evaporite_stairs": "Evaporite Stairs", - "block.strata.evaporite_wall": "Evaporite Wall", - - "block.strata.geyserite": "Geyserite", - "block.strata.geyserite_slab": "Geyserite Slab", - "block.strata.geyserite_stairs": "Geyserite Stairs", - "block.strata.geyserite_wall": "Geyserite Wall", - - "block.strata.greywacke": "Greywacke", - "block.strata.greywacke_slab": "Greywacke Slab", - "block.strata.greywacke_stairs": "Greywacke Stairs", - "block.strata.greywacke_wall": "Greywacke Wall", - - "block.strata.gritstone": "Gritstone", - "block.strata.gritstone_slab": "Gritstone Slab", - "block.strata.gritstone_stairs": "Gritstone Stairs", - "block.strata.gritstone_wall": "Gritstone Wall", - - "block.strata.itacolumite": "Itacolumite", - "block.strata.itacolumite_slab": "Itacolumite Slab", - "block.strata.itacolumite_stairs": "Itacolumite Stairs", - "block.strata.itacolumite_wall": "Itacolumite Wall", - - "block.strata.jaspillite": "Jaspillite", - "block.strata.jaspillite_slab": "Jaspillite Slab", - "block.strata.jaspillite_stairs": "Jaspillite Stairs", - "block.strata.jaspillite_wall": "Jaspillite Wall", - - "block.strata.laterite": "Laterite", - "block.strata.laterite_slab": "Laterite Slab", - "block.strata.laterite_stairs": "Laterite Stairs", - "block.strata.laterite_wall": "Laterite Wall", - - "block.strata.limestone": "Limestone", - "block.strata.limestone_slab": "Limestone Slab", - "block.strata.limestone_stairs": "Limestone Stairs", - "block.strata.limestone_wall": "Limestone Wall", - "block.strata.limestone_button": "Limestone Button", - "block.strata.limestone_pressure_plate": "Limestone Pressure Plate", - - "block.strata.limestone_bricks": "Limestone Bricks", - "block.strata.limestone_brick_slab": "Limestone Brick Slab", - "block.strata.limestone_brick_stairs": "Limestone Brick Stairs", - "block.strata.limestone_brick_wall": "Limestone Brick Wall", - "block.strata.chiseled_limestone_bricks": "Chiseled Limestone Bricks", - "block.strata.cracked_limestone_bricks": "Cracked Limestone Bricks", - "block.strata.mossy_limestone_bricks": "Mossy Limestone Bricks", - "block.strata.mossy_limestone_brick_slab": "Mossy Limestone Brick Slab", - "block.strata.mossy_limestone_brick_stairs": "Mossy Limestone Brick Stairs", - "block.strata.mossy_limestone_brick_wall": "Mossy Limestone Brick Wall", - - "block.strata.polished_limestone": "Polished Limestone", - "block.strata.polished_limestone_slab": "Polished Limestone Slab", - "block.strata.polished_limestone_stairs": "Polished Limestone Stairs", - - "block.strata.marl": "Marl", - "block.strata.marl_slab": "Marl Slab", - "block.strata.marl_stairs": "Marl Stairs", - "block.strata.marl_wall": "Marl Wall", - - "block.strata.mudstone": "Mudstone", - "block.strata.mudstone_slab": "Mudstone Slab", - "block.strata.mudstone_stairs": "Mudstone Stairs", - "block.strata.mudstone_wall": "Mudstone Wall", - - "block.strata.oil_shale": "Oil Shale", - "block.strata.oil_shale_slab": "Oil Shale Slab", - "block.strata.oil_shale_stairs": "Oil Shale Stairs", - "block.strata.oil_shale_wall": "Oil Shale Wall", - - "block.strata.oolite": "Oolite", - "block.strata.oolite_slab": "Oolite Slab", - "block.strata.oolite_stairs": "Oolite Stairs", - "block.strata.oolite_wall": "Oolite Wall", - - "block.strata.phosphorite": "Phosphorite", - "block.strata.phosphorite_slab": "Phosphorite Slab", - "block.strata.phosphorite_stairs": "Phosphorite Stairs", - "block.strata.phosphorite_wall": "Phosphorite Wall", - - "block.strata.shale": "Shale", - "block.strata.shale_slab": "Shale Slab", - "block.strata.shale_stairs": "Shale Stairs", - "block.strata.shale_wall": "Shale Wall", - "block.strata.shale_button": "Shale Button", - "block.strata.shale_pressure_plate": "Shale Pressure Plate", - - "block.strata.shale_bricks": "Shale Bricks", - "block.strata.shale_brick_slab": "Shale Brick Slab", - "block.strata.shale_brick_stairs": "Shale Brick Stairs", - "block.strata.shale_brick_wall": "Shale Brick Wall", - "block.strata.chiseled_shale_bricks": "Chiseled Shale Bricks", - "block.strata.cracked_shale_bricks": "Cracked Shale Bricks", - "block.strata.mossy_shale_bricks": "Mossy Shale Bricks", - "block.strata.mossy_shale_brick_slab": "Mossy Shale Brick Slab", - "block.strata.mossy_shale_brick_stairs": "Mossy Shale Brick Stairs", - "block.strata.mossy_shale_brick_wall": "Mossy Shale Brick Wall", - - "block.strata.polished_shale": "Polished Shale", - "block.strata.polished_shale_slab": "Polished Shale Slab", - "block.strata.polished_shale_stairs": "Polished Shale Stairs", - - "block.strata.siltstone": "Siltstone", - "block.strata.siltstone_slab": "Siltstone Slab", - "block.strata.siltstone_stairs": "Siltstone Stairs", - "block.strata.siltstone_wall": "Siltstone Wall", - - "block.strata.sylvinite": "Sylvinite", - "block.strata.sylvinite_slab": "Sylvinite Slab", - "block.strata.sylvinite_stairs": "Sylvinite Stairs", - "block.strata.sylvinite_wall": "Sylvinite Wall", - - "block.strata.tillite": "Tillite", - "block.strata.tillite_slab": "Tillite Slab", - "block.strata.tillite_stairs": "Tillite Stairs", - "block.strata.tillite_wall": "Tillite Wall", - - "block.strata.travertine": "Travertine", - "block.strata.travertine_slab": "Travertine Slab", - "block.strata.travertine_stairs": "Travertine Stairs", - "block.strata.travertine_wall": "Travertine Wall", - - "block.strata.turbidite": "Turbidite", - "block.strata.turbidite_slab": "Turbidite Slab", - "block.strata.turbidite_stairs": "Turbidite Stairs", - "block.strata.turbidite_wall": "Turbidite Wall", - - "block.strata.wackestone": "Wackestone", - "block.strata.wackestone_slab": "Wackestone Slab", - "block.strata.wackestone_stairs": "Wackestone Stairs", - "block.strata.wackestone_wall": "Wackestone Wall", - - "_comment": "Metamorphic Rocks", - - "block.strata.anthracite": "Anthracite", - "block.strata.anthracite_slab": "Anthracite Slab", - "block.strata.anthracite_stairs": "Anthracite Stairs", - "block.strata.anthracite_wall": "Anthracite Wall", - - "block.strata.amphibolite": "Amphibolite", - "block.strata.amphibolite_slab": "Amphibolite Slab", - "block.strata.amphibolite_stairs": "Amphibolite Stairs", - "block.strata.amphibolite_wall": "Amphibolite Wall", - "block.strata.amphibolite_button": "Amphibolite Button", - "block.strata.amphibolite_pressure_plate": "Amphibolite Pressure Plate", - - "block.strata.amphibolite_bricks": "Amphibolite Bricks", - "block.strata.amphibolite_brick_slab": "Amphibolite Brick Slab", - "block.strata.amphibolite_brick_stairs": "Amphibolite Brick Stairs", - "block.strata.amphibolite_brick_wall": "Amphibolite Brick Wall", - "block.strata.chiseled_amphibolite_bricks": "Chiseled Amphibolite Bricks", - "block.strata.cracked_amphibolite_bricks": "Cracked Amphibolite Bricks", - "block.strata.mossy_amphibolite_bricks": "Mossy Amphibolite Bricks", - "block.strata.mossy_amphibolite_brick_slab": "Mossy Amphibolite Brick Slab", - "block.strata.mossy_amphibolite_brick_stairs": "Mossy Amphibolite Brick Stairs", - "block.strata.mossy_amphibolite_brick_wall": "Mossy Amphibolite Brick Wall", - - "block.strata.polished_amphibolite": "Polished Amphibolite", - "block.strata.polished_amphibolite_slab": "Polished Amphibolite Slab", - "block.strata.polished_amphibolite_stairs": "Polished Amphibolite Stairs", - - "block.strata.blueschist": "Blueschist", - "block.strata.blueschist_slab": "Blueschist Slab", - "block.strata.blueschist_stairs": "Blueschist Stairs", - "block.strata.blueschist_wall": "Blueschist Wall", - - "block.strata.cataclasite": "Cataclasite", - "block.strata.cataclasite_slab": "Cataclasite Slab", - "block.strata.cataclasite_stairs": "Cataclasite Stairs", - "block.strata.cataclasite_wall": "Cataclasite Wall", - - "block.strata.eclogite": "Eclogite", - "block.strata.eclogite_slab": "Eclogite Slab", - "block.strata.eclogite_stairs": "Eclogite Stairs", - "block.strata.eclogite_wall": "Eclogite Wall", - - "block.strata.gneiss": "Gneiss", - "block.strata.gneiss_slab": "Gneiss Slab", - "block.strata.gneiss_stairs": "Gneiss Stairs", - "block.strata.gneiss_wall": "Gneiss Wall", - "block.strata.gneiss_button": "Gneiss Button", - "block.strata.gneiss_pressure_plate": "Gneiss Pressure Plate", - - "block.strata.gneiss_bricks": "Gneiss Bricks", - "block.strata.gneiss_brick_slab": "Gneiss Brick Slab", - "block.strata.gneiss_brick_stairs": "Gneiss Brick Stairs", - "block.strata.gneiss_brick_wall": "Gneiss Brick Wall", - "block.strata.chiseled_gneiss_bricks": "Chiseled Gneiss Bricks", - "block.strata.cracked_gneiss_bricks": "Cracked Gneiss Bricks", - "block.strata.mossy_gneiss_bricks": "Mossy Gneiss Bricks", - "block.strata.mossy_gneiss_brick_slab": "Mossy Gneiss Brick Slab", - "block.strata.mossy_gneiss_brick_stairs": "Mossy Gneiss Brick Stairs", - "block.strata.mossy_gneiss_brick_wall": "Mossy Gneiss Brick Wall", - - "block.strata.polished_gneiss": "Polished Gneiss", - "block.strata.polished_gneiss_slab": "Polished Gneiss Slab", - "block.strata.polished_gneiss_stairs": "Polished Gneiss Stairs", - - "block.strata.granulite": "Granulite", - "block.strata.granulite_slab": "Granulite Slab", - "block.strata.granulite_stairs": "Granulite Stairs", - "block.strata.granulite_wall": "Granulite Wall", - - "block.strata.greenschist": "Greenschist", - "block.strata.greenschist_slab": "Greenschist Slab", - "block.strata.greenschist_stairs": "Greenschist Stairs", - "block.strata.greenschist_wall": "Greenschist Wall", - - "block.strata.hornfels": "Hornfels", - "block.strata.hornfels_slab": "Hornfels Slab", - "block.strata.hornfels_stairs": "Hornfels Stairs", - "block.strata.hornfels_wall": "Hornfels Wall", - - "block.strata.calcflinta": "Calcflinta", - "block.strata.calcflinta_slab": "Calcflinta Slab", - "block.strata.calcflinta_stairs": "Calcflinta Stairs", - "block.strata.calcflinta_wall": "Calcflinta Wall", - - "block.strata.litchfieldite": "Litchfieldite", - "block.strata.litchfieldite_slab": "Litchfieldite Slab", - "block.strata.litchfieldite_stairs": "Litchfieldite Stairs", - "block.strata.litchfieldite_wall": "Litchfieldite Wall", - - "block.strata.marble": "Marble", - "block.strata.marble_slab": "Marble Slab", - "block.strata.marble_stairs": "Marble Stairs", - "block.strata.marble_wall": "Marble Wall", - - "block.strata.migmatite": "Migmatite", - "block.strata.migmatite_slab": "Migmatite Slab", - "block.strata.migmatite_stairs": "Migmatite Stairs", - "block.strata.migmatite_wall": "Migmatite Wall", - - "block.strata.mylonite": "Mylonite", - "block.strata.mylonite_slab": "Mylonite Slab", - "block.strata.mylonite_stairs": "Mylonite Stairs", - "block.strata.mylonite_wall": "Mylonite Wall", - - "block.strata.metapelite": "Metapelite", - "block.strata.metapelite_slab": "Metapelite Slab", - "block.strata.metapelite_stairs": "Metapelite Stairs", - "block.strata.metapelite_wall": "Metapelite Wall", - - "block.strata.metapsammite": "Metapsammite", - "block.strata.metapsammite_slab": "Metapsammite Slab", - "block.strata.metapsammite_stairs": "Metapsammite Stairs", - "block.strata.metapsammite_wall": "Metapsammite Wall", - - "block.strata.phyllite": "Phyllite", - "block.strata.phyllite_slab": "Phyllite Slab", - "block.strata.phyllite_stairs": "Phyllite Stairs", - "block.strata.phyllite_wall": "Phyllite Wall", - - "block.strata.quartzite": "Quartzite", - "block.strata.quartzite_slab": "Quartzite Slab", - "block.strata.quartzite_stairs": "Quartzite Stairs", - "block.strata.quartzite_wall": "Quartzite Wall", - - "block.strata.schist": "Schist", - "block.strata.schist_slab": "Schist Slab", - "block.strata.schist_stairs": "Schist Stairs", - "block.strata.schist_wall": "Schist Wall", - "block.strata.schist_button": "Schist Button", - "block.strata.schist_pressure_plate": "Schist Pressure Plate", - - "block.strata.schist_bricks": "Schist Bricks", - "block.strata.schist_brick_slab": "Schist Brick Slab", - "block.strata.schist_brick_stairs": "Schist Brick Stairs", - "block.strata.schist_brick_wall": "Schist Brick Wall", - "block.strata.chiseled_schist_bricks": "Chiseled Schist Bricks", - "block.strata.cracked_schist_bricks": "Cracked Schist Bricks", - "block.strata.mossy_schist_bricks": "Mossy Schist Bricks", - "block.strata.mossy_schist_brick_slab": "Mossy Schist Brick Slab", - "block.strata.mossy_schist_brick_stairs": "Mossy Schist Brick Stairs", - "block.strata.mossy_schist_brick_wall": "Mossy Schist Brick Wall", - - "block.strata.polished_schist": "Polished Schist", - "block.strata.polished_schist_slab": "Polished Schist Slab", - "block.strata.polished_schist_stairs": "Polished Schist Stairs", - - "block.strata.serpentinite": "Serpentinite", - "block.strata.serpentinite_slab": "Serpentinite Slab", - "block.strata.serpentinite_stairs": "Serpentinite Stairs", - "block.strata.serpentinite_wall": "Serpentinite Wall", - - "block.strata.skarn": "Skarn", - "block.strata.skarn_slab": "Skarn Slab", - "block.strata.skarn_stairs": "Skarn Stairs", - "block.strata.skarn_wall": "Skarn Wall", - - "block.strata.slate": "Slate", - "block.strata.slate_slab": "Slate Slab", - "block.strata.slate_stairs": "Slate Stairs", - "block.strata.slate_wall": "Slate Wall", - - "block.strata.suevite": "Suevite", - "block.strata.suevite_slab": "Suevite Slab", - "block.strata.suevite_stairs": "Suevite Stairs", - "block.strata.suevite_wall": "Suevite Wall", - - "block.strata.talc_carbonate": "Talc Carbonate", - "block.strata.talc_carbonate_slab": "Carbonate Slab", - "block.strata.talc_carbonate_stairs": "Carbonate Stairs", - "block.strata.talc_carbonate_wall": "Carbonate Wall", - - "block.strata.soapstone": "Soapstone", - "block.strata.soapstone_slab": "Soapstone Slab", - "block.strata.soapstone_stairs": "Soapstone Stairs", - "block.strata.soapstone_wall": "Soapstone Wall", - - "block.strata.tectonite": "Tectonite", - "block.strata.tectonite_slab": "Tectonite Slab", - "block.strata.tectonite_stairs": "Tectonite Stairs", - "block.strata.tectonite_wall": "Tectonite Wall", - - "block.strata.whiteschist": "Whiteschist", - "block.strata.whiteschist_slab": "Whiteschist Slab", - "block.strata.whiteschist_stairs": "Whiteschist Stairs", - "block.strata.whiteschist_wall": "Whiteschist Wall", - - "_comment": "Miscellaneous Rocks", - - "block.strata.adamellite": "Adamellite", - "block.strata.adamellite_slab": "Adamellite Slab", - "block.strata.adamellite_stairs": "Adamellite Stairs", - "block.strata.adamellite_wall": "Adamellite Wall", - - "block.strata.appinite": "Appinite", - "block.strata.appinite_slab": "Appinite Slab", - "block.strata.appinite_stairs": "Appinite Stairs", - "block.strata.appinite_wall": "Appinite Wall", - - "block.strata.aphanite": "Aphanite", - "block.strata.aphanite_slab": "Aphanite Slab", - "block.strata.aphanite_stairs": "Aphanite Stairs", - "block.strata.aphanite_wall": "Aphanite Wall", - - "block.strata.borolanite": "Borolanite", - "block.strata.borolanite_slab": "Borolanite Slab", - "block.strata.borolanite_stairs": "Borolanite Stairs", - "block.strata.borolanite_wall": "Borolanite Wall", - - "block.strata.blue_granite": "Blue Granite", - "block.strata.blue_granite_slab": "Blue Granite Slab", - "block.strata.blue_granite_stairs": "Blue Granite Stairs", - "block.strata.blue_granite_wall": "Blue Granite Wall", - - "block.strata.epidosite": "Epidosite", - "block.strata.epidosite_slab": "Epidosite Slab", - "block.strata.epidosite_stairs": "Epidosite Stairs", - "block.strata.epidosite_wall": "Epidosite Wall", - - "block.strata.felsite": "Felsite", - "block.strata.felsite_slab": "Felsite Slab", - "block.strata.felsite_stairs": "Felsite Stairs", - "block.strata.felsite_wall": "Felsite Wall", - - "block.strata.ganister": "Ganister", - "block.strata.ganister_slab": "Ganister Slab", - "block.strata.ganister_stairs": "Ganister Stairs", - "block.strata.ganister_wall": "Ganister Wall", - - "block.strata.gossan": "Gossan", - "block.strata.gossan_slab": "Gossan Slab", - "block.strata.gossan_stairs": "Gossan Stairs", - "block.strata.gossan_wall": "Gossan Wall", - - "block.strata.hyaloclastite": "Hyaloclastite", - "block.strata.hyaloclastite_slab": "Hyaloclastite Slab", - "block.strata.hyaloclastite_stairs": "Hyaloclastite Stairs", - "block.strata.hyaloclastite_wall": "Hyaloclastite Wall", - - "block.strata.jadeitite": "Jadeitite", - "block.strata.jadeitite_slab": "Jadeitite Slab", - "block.strata.jadeitite_stairs": "Jadeitite Stairs", - "block.strata.jadeitite_wall": "Jadeitite Wall", - - "block.strata.jasperoid": "Jasperoid", - "block.strata.jasperoid_slab": "Jasperoid Slab", - "block.strata.jasperoid_stairs": "Jasperoid Stairs", - "block.strata.jasperoid_wall": "Jasperoid Wall", - - "block.strata.kenyte": "Kenyte", - "block.strata.kenyte_slab": "Kenyte Slab", - "block.strata.kenyte_stairs": "Kenyte Stairs", - "block.strata.kenyte_wall": "Kenyte Wall", - - "block.strata.larvikite": "Larvikite", - "block.strata.larvikite_slab": "Larvikite Slab", - "block.strata.larvikite_stairs": "Larvikite Stairs", - "block.strata.larvikite_wall": "Larvikite Wall", - - "block.strata.llanite": "Llanite", - "block.strata.llanite_slab": "Llanite Slab", - "block.strata.llanite_stairs": "Llanite Stairs", - "block.strata.llanite_wall": "Llanite Wall", - - "block.strata.luxullianite": "Luxullianite", - "block.strata.luxullianite_slab": "Luxullianite Slab", - "block.strata.luxullianite_stairs": "Luxullianite Stairs", - "block.strata.luxullianite_wall": "Luxullianite Wall", - - "block.strata.mangerite": "Mangerite", - "block.strata.mangerite_slab": "Mangerite Slab", - "block.strata.mangerite_stairs": "Mangerite Stairs", - "block.strata.mangerite_wall": "Mangerite Wall", - - "block.strata.minette": "Minette", - "block.strata.minette_slab": "Minette Slab", - "block.strata.minette_stairs": "Minette Stairs", - "block.strata.minette_wall": "Minette Wall", - - "block.strata.novaculite": "Novaculite", - "block.strata.novaculite_slab": "Novaculite Slab", - "block.strata.novaculite_stairs": "Novaculite Stairs", - "block.strata.novaculite_wall": "Novaculite Wall", - - "block.strata.pietersite": "Pietersite", - "block.strata.pietersite_slab": "Pietersite Slab", - "block.strata.pietersite_stairs": "Pietersite Stairs", - "block.strata.pietersite_wall": "Pietersite Wall", - - "block.strata.pyrolite": "Pyrolite", - "block.strata.pyrolite_slab": "Pyrolite Slab", - "block.strata.pyrolite_stairs": "Pyrolite Stairs", - "block.strata.pyrolite_wall": "Pyrolite Wall", - - "block.strata.rapakivi_granite": "Rapakivi Granite", - "block.strata.rapakivi_granite_slab": "Rapakivi Granite Slab", - "block.strata.rapakivi_granite_stairs": "Rapakivi Granite Stairs", - "block.strata.rapakivi_granite_wall": "Rapakivi Granite Wall", - - "block.strata.rhomb_porphyry": "Rhomb Porphyry", - "block.strata.rhomb_porphyry_slab": "Rhomb Porphyry Slab", - "block.strata.rhomb_porphyry_stairs": "Rhomb Porphyry Stairs", - "block.strata.rhomb_porphyry_wall": "Rhomb Porphyry Wall", - - "block.strata.rodingite": "Rodingite", - "block.strata.rodingite_slab": "Rodingite Slab", - "block.strata.rodingite_stairs": "Rodingite Stairs", - "block.strata.rodingite_wall": "Rodingite Wall", - - "block.strata.taconite": "Taconite", - "block.strata.taconite_slab": "Taconite Slab", - "block.strata.taconite_stairs": "Taconite Stairs", - "block.strata.taconite_wall": "Taconite Wall", - - "block.strata.teschenite": "Teschenite", - "block.strata.teschenite_slab": "Teschenite Slab", - "block.strata.teschenite_stairs": "Teschenite Stairs", - "block.strata.teschenite_wall": "Teschenite Wall", - - "block.strata.theralite": "Theralite", - "block.strata.theralite_slab": "Theralite Slab", - "block.strata.theralite_stairs": "Theralite Stairs", - "block.strata.theralite_wall": "Theralite Wall", - - "block.strata.unakite": "Unakite", - "block.strata.unakite_slab": "Unakite Slab", - "block.strata.unakite_stairs": "Unakite Stairs", - "block.strata.unakite_wall": "Unakite Wall", - - "block.strata.variolite": "Variolite", - "block.strata.variolite_slab": "Variolite Slab", - "block.strata.variolite_stairs": "Variolite Stairs", - "block.strata.variolite_wall": "Variolite Wall", - - "block.strata.vogesite": "Vogesite", - "block.strata.vogesite_slab": "Vogesite Slab", - "block.strata.vogesite_stairs": "Vogesite Stairs", - "block.strata.vogesite_wall": "Vogesite Wall" -} diff --git a/src/test/resources/assets/strata/lang/en_us.old.json b/src/test/resources/assets/strata/lang/en_us.old.json deleted file mode 100644 index fa073efb..00000000 --- a/src/test/resources/assets/strata/lang/en_us.old.json +++ /dev/null @@ -1,175 +0,0 @@ -{ - "itemGroup.igneousRocks": "Igneous Rocks", - "itemGroup.sedimentaryRocks": "Sedimentary Rocks", - "itemGroup.metamorphicRocks": "Metamorphic Rocks", - "itemGroup.miscellaneousRocks": "Miscellaneous Rocks", - - "item.strata.debug_item": "Debug Item", - - "block.strata.debug_block": "Debug Block", - - "block.strata.aa": "Aa", - "block.strata.adakite": "Adakite", - "block.strata.alkali_fieldspar_granite": "Alkali Fieldspar Granite", - "block.strata.anorthosite": "Anorthosite", - "block.strata.aplite": "Aplite", - "block.strata.basalt": "Basalt", - "block.strata.basaltic_trachyandesite": "Basaltic Trachyandesite", - "block.strata.basanite": "Basanite", - "block.strata.benmoreite": "Benmoreite", - "block.strata.blairmorite": "Blairmorite", - "block.strata.boninite": "Boninite", - "block.strata.carbonatite": "Carbonatite", - "block.strata.charnockite": "Charnockite", - "block.strata.comendite": "Comendite", - "block.strata.dacite": "Dacite", - "block.strata.diabase": "Diabase", - "block.strata.dunite": "Dunite", - "block.strata.enderbite": "Enderbite", - "block.strata.essexite": "Essexite", - "block.strata.foidolite": "Foidolite", - "block.strata.gabbro": "Gabbro", - "block.strata.granodiorite": "Granodiorite", - "block.strata.granophyre": "Granophyre", - "block.strata.hawaiite": "Hawaiite", - "block.strata.hazburgite": "Hazburgite", - "block.strata.hornblendite": "Hornblendite", - "block.strata.hyaloclastit": "Hyaloclastit", - "block.strata.icelandite": "Icelandite", - "block.strata.ijolite": "Ijolite", - "block.strata.kimberlite": "Kimberlite", - "block.strata.komatiite": "Komatiite", - "block.strata.lamprophyre": "Lamprophyre", - "block.strata.latite": "Latite", - "block.strata.lherzolite": "Lherzolite", - "block.strata.monzogranite": "Monzogranite", - "block.strata.monzonite": "Monzonite", - "block.strata.mugearite": "Mugearite", - "block.strata.napoleonite": "Napoleonite", - "block.strata.nephelinite": "Nephelinite", - "block.strata.norite": "Norite", - "block.strata.pahoehoe": "Pahoehoe", - "block.strata.pantellerite": "Pantellerite", - "block.strata.pegmatite": "Pegmatite", - "block.strata.peridotite":"Peridotite", - "block.strata.phonolite": "Phonolite", - "block.strata.phonotephrite": "Phonotephrite", - "block.strata.picrite": "Picrite", - "block.strata.porphyry": "Porphyry", - "block.strata.pumice": "Pumice", - "block.strata.pyroxenite": "Pyroxenite", - "block.strata.quartz_diorite": "Quartz Diorite", - "block.strata.quartz_monzonite": "Quartz Monzonite", - "block.strata.quartzolite": "Quartzolite", - "block.strata.rhyodacite": "Rhyodacite", - "block.strata.rhyolite": "Rhyolite", - "block.strata.scoria": "Scoria", - "block.strata.shonkinite": "Shonkinite", - "block.strata.shoshonite": "Shoshonite", - "block.strata.sovite": "Sovite", - "block.strata.syenite": "Syenite", - "block.strata.tachylite": "Tachylite", - "block.strata.tephriphonolite": "Tephriphonolite", - "block.strata.tephrite": "Tephrite", - "block.strata.tonalite": "Tonalite", - "block.strata.trachyandesite": "Trachyandesite", - "block.strata.trachybasalt": "Trachybasalt", - "block.strata.trachyte": "Trachyte", - "block.strata.troctolite": "Troctolite", - "block.strata.trondhjemite": "Trondhjemite", - "block.strata.tuff": "Tuff", - "block.strata.websterite": "Websterite", - "block.strata.wehrlite": "Wehrlite", - - "block.strata.argillite": "Argillite", - "block.strata.arkose": "Arkose", - "block.strata.breccia": "Breccia", - "block.strata.calcarenite": "Calcarenite", - "block.strata.chalk": "Chalk", - "block.strata.chert": "Chert", - "block.strata.claystone": "Claystone", - "block.strata.conglomerate": "Conglomerate", - "block.strata.coquina": "Coquina", - "block.strata.diamictite": "Diamictite", - "block.strata.diatomite": "Diatomite", - "block.strata.dolomite": "Dolomite", - "block.strata.evaporite": "Evaporite", - "block.strata.geyserite": "Geyserite", - "block.strata.greywacke": "Greywacke", - "block.strata.gritstone": "Gritstone", - "block.strata.itacolumite": "Itacolumite", - "block.strata.jaspillite": "Jaspillite", - "block.strata.laterite": "Laterite", - "block.strata.limestone": "Limestone", - "block.strata.marl": "Marl", - "block.strata.mudstone": "Mudstone", - "block.strata.oil_shale": "Oil Shale", - "block.strata.oolite": "Oolite", - "block.strata.phosphorite": "Phosphorite", - "block.strata.shale": "Shale", - "block.strata.siltstone": "Siltstone", - "block.strata.sylvinite": "Sylvinite", - "block.strata.tillite": "Tillite", - "block.strata.travertine": "Travertine", - "block.strata.turbidite": "Turbidite", - "block.strata.wackestone": "Wackestone", - - "block.strata.anthracite": "Anthracite", - "block.strata.amphibolite": "Amphibolite", - "block.strata.blueschist": "Blueschist", - "block.strata.cataclasite": "Cataclasite", - "block.strata.eclogite": "Eclogite", - "block.strata.gneiss": "Gneiss", - "block.strata.granulite": "Granulite", - "block.strata.greenschist": "Greenschist", - "block.strata.hornfels": "Hornfels", - "block.strata.calcflinta": "Calcflinta", - "block.strata.litchfieldite": "Litchfieldite", - "block.strata.marble": "Marble", - "block.strata.migmatite": "Migmatite", - "block.strata.mylonite": "Mylonite", - "block.strata.metapelite": "Metapelite", - "block.strata.metapsammite": "Metapsammite", - "block.strata.phyllite": "Phyllite", - "block.strata.quartzite": "Quartzite", - "block.strata.schist": "Schist", - "block.strata.serpentinite": "Serpentinite", - "block.strata.skarn": "Skarn", - "block.strata.slate": "Slate", - "block.strata.suevite": "Suevite", - "block.strata.talc_carbonate": "Talc Carbonate", - "block.strata.soapstone": "Soapstone", - "block.strata.tectonite": "Tectonite", - "block.strata.whiteschist": "Whiteschist", - - "block.strata.adamellite": "Adamellite", - "block.strata.appinite": "Appinite", - "block.strata.aphanite": "Aphanite", - "block.strata.borolanite": "Borolanite", - "block.strata.blue_granite": "Blue Granite", - "block.strata.epidosite": "Epidosite", - "block.strata.felsite": "Felsite", - "block.strata.ganister": "Ganister", - "block.strata.gossan": "Gossan", - "block.strata.hyaloclastite": "Hyaloclastite", - "block.strata.jadeitite": "Jadeitite", - "block.strata.jasperoid": "Jasperoid", - "block.strata.kenyte": "Kenyte", - "block.strata.larvikite": "Larvikite", - "block.strata.llanite": "Llanite", - "block.strata.luxullianite": "Luxullianite", - "block.strata.mangerite": "Mangerite", - "block.strata.minette": "Minette", - "block.strata.novaculite": "Novaculite", - "block.strata.pietersite": "Pietersite", - "block.strata.pyrolite": "Pyrolite", - "block.strata.rapakivi_granite": "Rapakivi Granite", - "block.strata.rhomb_porphyry": "Rhomb Porphyry", - "block.strata.rodingite": "Rodingite", - "block.strata.taconite": "Taconite", - "block.strata.teschenite": "Teschenite", - "block.strata.theralite": "Theralite", - "block.strata.unakite": "Unakite", - "block.strata.variolite": "Variolite", - "block.strata.vogesite": "Vogesite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa.json b/src/test/resources/assets/strata/models/block/aa.json deleted file mode 100644 index c0fcd7c9..00000000 --- a/src/test/resources/assets/strata/models/block/aa.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/aa" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_brick_slab.json b/src/test/resources/assets/strata/models/block/aa_brick_slab.json deleted file mode 100644 index 33176607..00000000 --- a/src/test/resources/assets/strata/models/block/aa_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/aa_bricks" - "top": "strata:blocks/igneous_rocks/aa_bricks" - "side": "strata:blocks/igneous_rocks/aa_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_brick_slab_top.json b/src/test/resources/assets/strata/models/block/aa_brick_slab_top.json deleted file mode 100644 index dd82840c..00000000 --- a/src/test/resources/assets/strata/models/block/aa_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/igneous_rocks/aa_bricks" - "top": "strata:blocks/igneous_rocks/aa_bricks" - "side": "strata:blocks/igneous_rocks/aa_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_brick_stairs.json b/src/test/resources/assets/strata/models/block/aa_brick_stairs.json deleted file mode 100644 index 35663cfe..00000000 --- a/src/test/resources/assets/strata/models/block/aa_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/aa_bricks" - "top": "strata:blocks/igneous_rocks/aa_bricks" - "side": "strata:blocks/igneous_rocks/aa_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/aa_brick_stairs_inner.json deleted file mode 100644 index 9f3f72b9..00000000 --- a/src/test/resources/assets/strata/models/block/aa_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/aa_bricks" - "top": "strata:blocks/igneous_rocks/aa_bricks" - "side": "strata:blocks/igneous_rocks/aa_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/aa_brick_stairs_outer.json deleted file mode 100644 index fd94ede2..00000000 --- a/src/test/resources/assets/strata/models/block/aa_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/aa_bricks" - "top": "strata:blocks/igneous_rocks/aa_bricks" - "side": "strata:blocks/igneous_rocks/aa_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/aa_brick_wall_inventory.json deleted file mode 100644 index 605f61b5..00000000 --- a/src/test/resources/assets/strata/models/block/aa_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/igneous_rocks/aa_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_brick_wall_post.json b/src/test/resources/assets/strata/models/block/aa_brick_wall_post.json deleted file mode 100644 index 2e9bd836..00000000 --- a/src/test/resources/assets/strata/models/block/aa_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/igneous_rocks/aa_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_brick_wall_side.json b/src/test/resources/assets/strata/models/block/aa_brick_wall_side.json deleted file mode 100644 index 09414d3f..00000000 --- a/src/test/resources/assets/strata/models/block/aa_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/igneous_rocks/aa_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_bricks.json b/src/test/resources/assets/strata/models/block/aa_bricks.json deleted file mode 100644 index 57632a1c..00000000 --- a/src/test/resources/assets/strata/models/block/aa_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/aa_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_button.json b/src/test/resources/assets/strata/models/block/aa_button.json deleted file mode 100644 index a06becba..00000000 --- a/src/test/resources/assets/strata/models/block/aa_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button", - "textures": { - "texture": "strata:blocks/igneous_rocks/aa" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_button_inventory.json b/src/test/resources/assets/strata/models/block/aa_button_inventory.json deleted file mode 100644 index 04c304bf..00000000 --- a/src/test/resources/assets/strata/models/block/aa_button_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_inventory", - "textures": { - "texture": "strata:blocks/igneous_rocks/aa" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_button_pressed.json b/src/test/resources/assets/strata/models/block/aa_button_pressed.json deleted file mode 100644 index b7836c9e..00000000 --- a/src/test/resources/assets/strata/models/block/aa_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_pressed", - "textures": { - "texture": "strata:blocks/igneous_rocks/aa" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_cobblestone.json b/src/test/resources/assets/strata/models/block/aa_cobblestone.json deleted file mode 100644 index 36f871dc..00000000 --- a/src/test/resources/assets/strata/models/block/aa_cobblestone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/aa_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_cobblestone_slab.json b/src/test/resources/assets/strata/models/block/aa_cobblestone_slab.json deleted file mode 100644 index 2580fde2..00000000 --- a/src/test/resources/assets/strata/models/block/aa_cobblestone_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/aa_cobblestone" - "top": "strata:blocks/igneous_rocks/aa_cobblestone" - "side": "strata:blocks/igneous_rocks/aa_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_cobblestone_slab_top.json b/src/test/resources/assets/strata/models/block/aa_cobblestone_slab_top.json deleted file mode 100644 index cc629e52..00000000 --- a/src/test/resources/assets/strata/models/block/aa_cobblestone_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/igneous_rocks/aa_cobblestone" - "top": "strata:blocks/igneous_rocks/aa_cobblestone" - "side": "strata:blocks/igneous_rocks/aa_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_cobblestone_stairs.json b/src/test/resources/assets/strata/models/block/aa_cobblestone_stairs.json deleted file mode 100644 index 1cf28a6f..00000000 --- a/src/test/resources/assets/strata/models/block/aa_cobblestone_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/aa_cobblestone" - "top": "strata:blocks/igneous_rocks/aa_cobblestone" - "side": "strata:blocks/igneous_rocks/aa_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_cobblestone_stairs_inner.json b/src/test/resources/assets/strata/models/block/aa_cobblestone_stairs_inner.json deleted file mode 100644 index 1cf28a6f..00000000 --- a/src/test/resources/assets/strata/models/block/aa_cobblestone_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/aa_cobblestone" - "top": "strata:blocks/igneous_rocks/aa_cobblestone" - "side": "strata:blocks/igneous_rocks/aa_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_cobblestone_stairs_outer.json b/src/test/resources/assets/strata/models/block/aa_cobblestone_stairs_outer.json deleted file mode 100644 index 65c89302..00000000 --- a/src/test/resources/assets/strata/models/block/aa_cobblestone_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/aa_cobblestone" - "top": "strata:blocks/igneous_rocks/aa_cobblestone" - "side": "strata:blocks/igneous_rocks/aa_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_cobblestone_wall_inventory.json b/src/test/resources/assets/strata/models/block/aa_cobblestone_wall_inventory.json deleted file mode 100644 index 0ffbdabb..00000000 --- a/src/test/resources/assets/strata/models/block/aa_cobblestone_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/igneous_rocks/aa_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_cobblestone_wall_post.json b/src/test/resources/assets/strata/models/block/aa_cobblestone_wall_post.json deleted file mode 100644 index 41f0c416..00000000 --- a/src/test/resources/assets/strata/models/block/aa_cobblestone_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/igneous_rocks/aa_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_cobblestone_wall_side.json b/src/test/resources/assets/strata/models/block/aa_cobblestone_wall_side.json deleted file mode 100644 index deed8ec4..00000000 --- a/src/test/resources/assets/strata/models/block/aa_cobblestone_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/igneous_rocks/aa_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_pressure_plate.json b/src/test/resources/assets/strata/models/block/aa_pressure_plate.json deleted file mode 100644 index de97fe71..00000000 --- a/src/test/resources/assets/strata/models/block/aa_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/igneous_rocks/aa" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_pressure_plate_down.json b/src/test/resources/assets/strata/models/block/aa_pressure_plate_down.json deleted file mode 100644 index 95b5e565..00000000 --- a/src/test/resources/assets/strata/models/block/aa_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_down", - "textures": { - "texture": "strata:blocks/igneous_rocks/aa" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_pressure_plate_up.json b/src/test/resources/assets/strata/models/block/aa_pressure_plate_up.json deleted file mode 100644 index de97fe71..00000000 --- a/src/test/resources/assets/strata/models/block/aa_pressure_plate_up.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/igneous_rocks/aa" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_slab.json b/src/test/resources/assets/strata/models/block/aa_slab.json deleted file mode 100644 index b3d6ea02..00000000 --- a/src/test/resources/assets/strata/models/block/aa_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/aa", - "top": "strata:blocks/aa", - "side": "strata:blocks/aa" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_slab_top.json b/src/test/resources/assets/strata/models/block/aa_slab_top.json deleted file mode 100644 index 485c3396..00000000 --- a/src/test/resources/assets/strata/models/block/aa_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/aa", - "top": "strata:blocks/aa", - "side": "strata:blocks/aa" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_stairs.json b/src/test/resources/assets/strata/models/block/aa_stairs.json deleted file mode 100644 index 2245c46e..00000000 --- a/src/test/resources/assets/strata/models/block/aa_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/aa", - "top": "strata:blocks/aa", - "side": "strata:blocks/aa" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_stairs_inner.json b/src/test/resources/assets/strata/models/block/aa_stairs_inner.json deleted file mode 100644 index 57c96ffa..00000000 --- a/src/test/resources/assets/strata/models/block/aa_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/aa", - "top": "strata:blocks/aa", - "side": "strata:blocks/aa" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_stairs_outer.json b/src/test/resources/assets/strata/models/block/aa_stairs_outer.json deleted file mode 100644 index 873bda7e..00000000 --- a/src/test/resources/assets/strata/models/block/aa_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/aa", - "top": "strata:blocks/aa", - "side": "strata:blocks/aa" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_wall_inventory.json b/src/test/resources/assets/strata/models/block/aa_wall_inventory.json deleted file mode 100644 index 26ef52b5..00000000 --- a/src/test/resources/assets/strata/models/block/aa_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/aa" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_wall_post.json b/src/test/resources/assets/strata/models/block/aa_wall_post.json deleted file mode 100644 index 85a24418..00000000 --- a/src/test/resources/assets/strata/models/block/aa_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "strata:blocks/aa" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aa_wall_side.json b/src/test/resources/assets/strata/models/block/aa_wall_side.json deleted file mode 100644 index 5d80df15..00000000 --- a/src/test/resources/assets/strata/models/block/aa_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "strata:blocks/aa" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite.json b/src/test/resources/assets/strata/models/block/adakite.json deleted file mode 100644 index b427f37b..00000000 --- a/src/test/resources/assets/strata/models/block/adakite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/adakite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_brick_slab.json b/src/test/resources/assets/strata/models/block/adakite_brick_slab.json deleted file mode 100644 index 79596828..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/adakite_bricks" - "top": "strata:blocks/igneous_rocks/adakite_bricks" - "side": "strata:blocks/igneous_rocks/adakite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_brick_slab_top.json b/src/test/resources/assets/strata/models/block/adakite_brick_slab_top.json deleted file mode 100644 index dcd620d8..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/igneous_rocks/adakite_bricks" - "top": "strata:blocks/igneous_rocks/adakite_bricks" - "side": "strata:blocks/igneous_rocks/adakite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_brick_stairs.json b/src/test/resources/assets/strata/models/block/adakite_brick_stairs.json deleted file mode 100644 index 68f03456..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/adakite_bricks" - "top": "strata:blocks/igneous_rocks/adakite_bricks" - "side": "strata:blocks/igneous_rocks/adakite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/adakite_brick_stairs_inner.json deleted file mode 100644 index 88203f32..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/adakite_bricks" - "top": "strata:blocks/igneous_rocks/adakite_bricks" - "side": "strata:blocks/igneous_rocks/adakite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/adakite_brick_stairs_outer.json deleted file mode 100644 index 7b851394..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/adakite_bricks" - "top": "strata:blocks/igneous_rocks/adakite_bricks" - "side": "strata:blocks/igneous_rocks/adakite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/adakite_brick_wall_inventory.json deleted file mode 100644 index 682c35c1..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/igneous_rocks/adakite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_brick_wall_post.json b/src/test/resources/assets/strata/models/block/adakite_brick_wall_post.json deleted file mode 100644 index 553c4729..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/igneous_rocks/adakite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_brick_wall_side.json b/src/test/resources/assets/strata/models/block/adakite_brick_wall_side.json deleted file mode 100644 index 4f80a323..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/igneous_rocks/adakite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_bricks.json b/src/test/resources/assets/strata/models/block/adakite_bricks.json deleted file mode 100644 index 6d16d2a6..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/adakite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_button.json b/src/test/resources/assets/strata/models/block/adakite_button.json deleted file mode 100644 index 1d7c1560..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button", - "textures": { - "texture": "strata:blocks/igneous_rocks/adakite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_button_inventory.json b/src/test/resources/assets/strata/models/block/adakite_button_inventory.json deleted file mode 100644 index 1156267c..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_button_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_inventory", - "textures": { - "texture": "strata:blocks/igneous_rocks/adakite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_button_pressed.json b/src/test/resources/assets/strata/models/block/adakite_button_pressed.json deleted file mode 100644 index cc32fb9d..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_pressed", - "textures": { - "texture": "strata:blocks/igneous_rocks/adakite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_cobblestone.json b/src/test/resources/assets/strata/models/block/adakite_cobblestone.json deleted file mode 100644 index a2a3cf63..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_cobblestone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/adakite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_cobblestone_slab.json b/src/test/resources/assets/strata/models/block/adakite_cobblestone_slab.json deleted file mode 100644 index f5be8653..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_cobblestone_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/adakite_cobblestone" - "top": "strata:blocks/igneous_rocks/adakite_cobblestone" - "side": "strata:blocks/igneous_rocks/adakite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_cobblestone_slab_top.json b/src/test/resources/assets/strata/models/block/adakite_cobblestone_slab_top.json deleted file mode 100644 index cdcbcf36..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_cobblestone_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/igneous_rocks/adakite_cobblestone" - "top": "strata:blocks/igneous_rocks/adakite_cobblestone" - "side": "strata:blocks/igneous_rocks/adakite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_cobblestone_stairs.json b/src/test/resources/assets/strata/models/block/adakite_cobblestone_stairs.json deleted file mode 100644 index f931d027..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_cobblestone_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/adakite_cobblestone" - "top": "strata:blocks/igneous_rocks/adakite_cobblestone" - "side": "strata:blocks/igneous_rocks/adakite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_cobblestone_stairs_inner.json b/src/test/resources/assets/strata/models/block/adakite_cobblestone_stairs_inner.json deleted file mode 100644 index f931d027..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_cobblestone_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/adakite_cobblestone" - "top": "strata:blocks/igneous_rocks/adakite_cobblestone" - "side": "strata:blocks/igneous_rocks/adakite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_cobblestone_stairs_outer.json b/src/test/resources/assets/strata/models/block/adakite_cobblestone_stairs_outer.json deleted file mode 100644 index d04b6cb9..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_cobblestone_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/adakite_cobblestone" - "top": "strata:blocks/igneous_rocks/adakite_cobblestone" - "side": "strata:blocks/igneous_rocks/adakite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_cobblestone_wall_inventory.json b/src/test/resources/assets/strata/models/block/adakite_cobblestone_wall_inventory.json deleted file mode 100644 index b56a2225..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_cobblestone_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/igneous_rocks/adakite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_cobblestone_wall_post.json b/src/test/resources/assets/strata/models/block/adakite_cobblestone_wall_post.json deleted file mode 100644 index de6a967a..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_cobblestone_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/igneous_rocks/adakite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_cobblestone_wall_side.json b/src/test/resources/assets/strata/models/block/adakite_cobblestone_wall_side.json deleted file mode 100644 index a416e2ad..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_cobblestone_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/igneous_rocks/adakite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_pressure_plate.json b/src/test/resources/assets/strata/models/block/adakite_pressure_plate.json deleted file mode 100644 index f9cb2b89..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/igneous_rocks/adakite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_pressure_plate_down.json b/src/test/resources/assets/strata/models/block/adakite_pressure_plate_down.json deleted file mode 100644 index 6781707a..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_down", - "textures": { - "texture": "strata:blocks/igneous_rocks/adakite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_pressure_plate_up.json b/src/test/resources/assets/strata/models/block/adakite_pressure_plate_up.json deleted file mode 100644 index f9cb2b89..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_pressure_plate_up.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/igneous_rocks/adakite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_slab.json b/src/test/resources/assets/strata/models/block/adakite_slab.json deleted file mode 100644 index 185c2f7e..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/adakite" - "top": "strata:blocks/igneous_rocks/adakite" - "side": "strata:blocks/igneous_rocks/adakite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_slab_top.json b/src/test/resources/assets/strata/models/block/adakite_slab_top.json deleted file mode 100644 index 61d30273..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/igneous_rocks/adakite" - "top": "strata:blocks/igneous_rocks/adakite" - "side": "strata:blocks/igneous_rocks/adakite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_stairs.json b/src/test/resources/assets/strata/models/block/adakite_stairs.json deleted file mode 100644 index 78869d0e..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/adakite" - "top": "strata:blocks/igneous_rocks/adakite" - "side": "strata:blocks/igneous_rocks/adakite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_stairs_inner.json b/src/test/resources/assets/strata/models/block/adakite_stairs_inner.json deleted file mode 100644 index bb22290e..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/adakite" - "top": "strata:blocks/igneous_rocks/adakite" - "side": "strata:blocks/igneous_rocks/adakite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_stairs_outer.json b/src/test/resources/assets/strata/models/block/adakite_stairs_outer.json deleted file mode 100644 index 0c07f147..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/adakite" - "top": "strata:blocks/igneous_rocks/adakite" - "side": "strata:blocks/igneous_rocks/adakite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_wall_inventory.json b/src/test/resources/assets/strata/models/block/adakite_wall_inventory.json deleted file mode 100644 index 5e08ffd0..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/igneous_rocks/adakite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_wall_post.json b/src/test/resources/assets/strata/models/block/adakite_wall_post.json deleted file mode 100644 index 11809cb3..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/igneous_rocks/adakite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adakite_wall_side.json b/src/test/resources/assets/strata/models/block/adakite_wall_side.json deleted file mode 100644 index 561d47ab..00000000 --- a/src/test/resources/assets/strata/models/block/adakite_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/igneous_rocks/adakite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/adamellite.json b/src/test/resources/assets/strata/models/block/adamellite.json deleted file mode 100644 index e98c3415..00000000 --- a/src/test/resources/assets/strata/models/block/adamellite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/adamellite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/alkali_fieldspar_granite.json b/src/test/resources/assets/strata/models/block/alkali_fieldspar_granite.json deleted file mode 100644 index ac36ac37..00000000 --- a/src/test/resources/assets/strata/models/block/alkali_fieldspar_granite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/alkali_fieldspar_granite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/amphibolite.json b/src/test/resources/assets/strata/models/block/amphibolite.json deleted file mode 100644 index 8e4f595e..00000000 --- a/src/test/resources/assets/strata/models/block/amphibolite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/amphibolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/amphibolite_brick_slab.json b/src/test/resources/assets/strata/models/block/amphibolite_brick_slab.json deleted file mode 100644 index 35959fa9..00000000 --- a/src/test/resources/assets/strata/models/block/amphibolite_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/amphibolite_bricks", - "top": "strata:blocks/metamorphic_rocks/amphibolite_bricks", - "side": "strata:blocks/metamorphic_rocks/amphibolite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/amphibolite_brick_slab_top.json b/src/test/resources/assets/strata/models/block/amphibolite_brick_slab_top.json deleted file mode 100644 index 14e5cee0..00000000 --- a/src/test/resources/assets/strata/models/block/amphibolite_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/amphibolite_bricks", - "top": "strata:blocks/metamorphic_rocks/amphibolite_bricks", - "side": "strata:blocks/metamorphic_rocks/amphibolite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/amphibolite_brick_stairs.json b/src/test/resources/assets/strata/models/block/amphibolite_brick_stairs.json deleted file mode 100644 index 9be119e4..00000000 --- a/src/test/resources/assets/strata/models/block/amphibolite_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/amphibolite_bricks", - "top": "strata:blocks/metamorphic_rocks/amphibolite_bricks", - "side": "strata:blocks/metamorphic_rocks/amphibolite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/amphibolite_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/amphibolite_brick_stairs_inner.json deleted file mode 100644 index 54ab419f..00000000 --- a/src/test/resources/assets/strata/models/block/amphibolite_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/amphibolite_bricks", - "top": "strata:blocks/metamorphic_rocks/amphibolite_bricks", - "side": "strata:blocks/metamorphic_rocks/amphibolite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/amphibolite_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/amphibolite_brick_stairs_outer.json deleted file mode 100644 index c0966b9c..00000000 --- a/src/test/resources/assets/strata/models/block/amphibolite_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/amphibolite_bricks", - "top": "strata:blocks/metamorphic_rocks/amphibolite_bricks", - "side": "strata:blocks/metamorphic_rocks/amphibolite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/amphibolite_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/amphibolite_brick_wall_inventory.json deleted file mode 100644 index fd3495d9..00000000 --- a/src/test/resources/assets/strata/models/block/amphibolite_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/amphibolite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/amphibolite_brick_wall_post.json b/src/test/resources/assets/strata/models/block/amphibolite_brick_wall_post.json deleted file mode 100644 index cff15f87..00000000 --- a/src/test/resources/assets/strata/models/block/amphibolite_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/amphibolite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/amphibolite_brick_wall_side.json b/src/test/resources/assets/strata/models/block/amphibolite_brick_wall_side.json deleted file mode 100644 index 1f2a943c..00000000 --- a/src/test/resources/assets/strata/models/block/amphibolite_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/amphibolite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/amphibolite_bricks.json b/src/test/resources/assets/strata/models/block/amphibolite_bricks.json deleted file mode 100644 index 411628c5..00000000 --- a/src/test/resources/assets/strata/models/block/amphibolite_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/amphibolite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/amphibolite_button.json b/src/test/resources/assets/strata/models/block/amphibolite_button.json deleted file mode 100644 index d4d84cb8..00000000 --- a/src/test/resources/assets/strata/models/block/amphibolite_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/amphibolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/amphibolite_button_inventory.json b/src/test/resources/assets/strata/models/block/amphibolite_button_inventory.json deleted file mode 100644 index c439a5a7..00000000 --- a/src/test/resources/assets/strata/models/block/amphibolite_button_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_inventory", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/amphibolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/amphibolite_button_pressed.json b/src/test/resources/assets/strata/models/block/amphibolite_button_pressed.json deleted file mode 100644 index c5a66602..00000000 --- a/src/test/resources/assets/strata/models/block/amphibolite_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_pressed", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/amphibolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/amphibolite_pressure_plate.json b/src/test/resources/assets/strata/models/block/amphibolite_pressure_plate.json deleted file mode 100644 index 491f54fb..00000000 --- a/src/test/resources/assets/strata/models/block/amphibolite_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/amphibolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/amphibolite_pressure_plate_down.json b/src/test/resources/assets/strata/models/block/amphibolite_pressure_plate_down.json deleted file mode 100644 index 585c81d6..00000000 --- a/src/test/resources/assets/strata/models/block/amphibolite_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_down", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/amphibolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/amphibolite_pressure_plate_up.json b/src/test/resources/assets/strata/models/block/amphibolite_pressure_plate_up.json deleted file mode 100644 index 491f54fb..00000000 --- a/src/test/resources/assets/strata/models/block/amphibolite_pressure_plate_up.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/amphibolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/amphibolite_slab.json b/src/test/resources/assets/strata/models/block/amphibolite_slab.json deleted file mode 100644 index cd8abf47..00000000 --- a/src/test/resources/assets/strata/models/block/amphibolite_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/amphibolite", - "top": "strata:blocks/metamorphic_rocks/amphibolite", - "side": "strata:blocks/metamorphic_rocks/amphibolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/amphibolite_slab_top.json b/src/test/resources/assets/strata/models/block/amphibolite_slab_top.json deleted file mode 100644 index c7bab2fc..00000000 --- a/src/test/resources/assets/strata/models/block/amphibolite_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/amphibolite", - "top": "strata:blocks/metamorphic_rocks/amphibolite", - "side": "strata:blocks/metamorphic_rocks/amphibolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/amphibolite_stairs.json b/src/test/resources/assets/strata/models/block/amphibolite_stairs.json deleted file mode 100644 index 46d5349b..00000000 --- a/src/test/resources/assets/strata/models/block/amphibolite_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/amphibolite", - "top": "strata:blocks/metamorphic_rocks/amphibolite", - "side": "strata:blocks/metamorphic_rocks/amphibolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/amphibolite_stairs_inner.json b/src/test/resources/assets/strata/models/block/amphibolite_stairs_inner.json deleted file mode 100644 index 7aa388d7..00000000 --- a/src/test/resources/assets/strata/models/block/amphibolite_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/amphibolite", - "top": "strata:blocks/metamorphic_rocks/amphibolite", - "side": "strata:blocks/metamorphic_rocks/amphibolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/amphibolite_stairs_outer.json b/src/test/resources/assets/strata/models/block/amphibolite_stairs_outer.json deleted file mode 100644 index ab68a351..00000000 --- a/src/test/resources/assets/strata/models/block/amphibolite_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/amphibolite", - "top": "strata:blocks/metamorphic_rocks/amphibolite", - "side": "strata:blocks/metamorphic_rocks/amphibolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/amphibolite_wall_inventory.json b/src/test/resources/assets/strata/models/block/amphibolite_wall_inventory.json deleted file mode 100644 index 573a5fb2..00000000 --- a/src/test/resources/assets/strata/models/block/amphibolite_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/amphibolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/amphibolite_wall_post.json b/src/test/resources/assets/strata/models/block/amphibolite_wall_post.json deleted file mode 100644 index 12c41191..00000000 --- a/src/test/resources/assets/strata/models/block/amphibolite_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/amphibolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/amphibolite_wall_side.json b/src/test/resources/assets/strata/models/block/amphibolite_wall_side.json deleted file mode 100644 index d9b1c6ce..00000000 --- a/src/test/resources/assets/strata/models/block/amphibolite_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/amphibolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/anorthosite.json b/src/test/resources/assets/strata/models/block/anorthosite.json deleted file mode 100644 index dc283f98..00000000 --- a/src/test/resources/assets/strata/models/block/anorthosite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/anorthosite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/anthracite.json b/src/test/resources/assets/strata/models/block/anthracite.json deleted file mode 100644 index 92ffda73..00000000 --- a/src/test/resources/assets/strata/models/block/anthracite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/anthracite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aphanite.json b/src/test/resources/assets/strata/models/block/aphanite.json deleted file mode 100644 index 6c0b23a0..00000000 --- a/src/test/resources/assets/strata/models/block/aphanite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/aphanite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/aplite.json b/src/test/resources/assets/strata/models/block/aplite.json deleted file mode 100644 index 6e99d74f..00000000 --- a/src/test/resources/assets/strata/models/block/aplite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/aplite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/appinite.json b/src/test/resources/assets/strata/models/block/appinite.json deleted file mode 100644 index 3bfed0d4..00000000 --- a/src/test/resources/assets/strata/models/block/appinite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/appinite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite.json b/src/test/resources/assets/strata/models/block/argillite.json deleted file mode 100644 index 910879b4..00000000 --- a/src/test/resources/assets/strata/models/block/argillite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/argillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_brick_slab.json b/src/test/resources/assets/strata/models/block/argillite_brick_slab.json deleted file mode 100644 index d99dea66..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/argillite_bricks" - "top": "strata:blocks/sedimentary_rocks/argillite_bricks" - "side": "strata:blocks/sedimentary_rocks/argillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_brick_slab_top.json b/src/test/resources/assets/strata/models/block/argillite_brick_slab_top.json deleted file mode 100644 index c7c0f559..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/argillite_bricks" - "top": "strata:blocks/sedimentary_rocks/argillite_bricks" - "side": "strata:blocks/sedimentary_rocks/argillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_brick_stairs.json b/src/test/resources/assets/strata/models/block/argillite_brick_stairs.json deleted file mode 100644 index 1f04d098..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/argillite_bricks" - "top": "strata:blocks/sedimentary_rocks/argillite_bricks" - "side": "strata:blocks/sedimentary_rocks/argillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/argillite_brick_stairs_inner.json deleted file mode 100644 index 9a84050f..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/argillite_bricks" - "top": "strata:blocks/sedimentary_rocks/argillite_bricks" - "side": "strata:blocks/sedimentary_rocks/argillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/argillite_brick_stairs_outer.json deleted file mode 100644 index d8f0ccea..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/argillite_bricks" - "top": "strata:blocks/sedimentary_rocks/argillite_bricks" - "side": "strata:blocks/sedimentary_rocks/argillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/argillite_brick_wall_inventory.json deleted file mode 100644 index 3d814a64..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/argillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_brick_wall_post.json b/src/test/resources/assets/strata/models/block/argillite_brick_wall_post.json deleted file mode 100644 index d8cf0fda..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/argillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_brick_wall_side.json b/src/test/resources/assets/strata/models/block/argillite_brick_wall_side.json deleted file mode 100644 index 5f7f7bf3..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/argillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_bricks.json b/src/test/resources/assets/strata/models/block/argillite_bricks.json deleted file mode 100644 index 8d3819ef..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/argillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_button.json b/src/test/resources/assets/strata/models/block/argillite_button.json deleted file mode 100644 index 36e56008..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/argillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_button_inventory.json b/src/test/resources/assets/strata/models/block/argillite_button_inventory.json deleted file mode 100644 index 7d0797bf..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_button_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_inventory", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/argillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_button_pressed.json b/src/test/resources/assets/strata/models/block/argillite_button_pressed.json deleted file mode 100644 index da9b9752..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_pressed", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/argillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_cobblestone.json b/src/test/resources/assets/strata/models/block/argillite_cobblestone.json deleted file mode 100644 index d0bcdc6f..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_cobblestone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/argillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_cobblestone_slab.json b/src/test/resources/assets/strata/models/block/argillite_cobblestone_slab.json deleted file mode 100644 index 322de1e0..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_cobblestone_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/argillite_cobblestone" - "top": "strata:blocks/sedimentary_rocks/argillite_cobblestone" - "side": "strata:blocks/sedimentary_rocks/argillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_cobblestone_slab_top.json b/src/test/resources/assets/strata/models/block/argillite_cobblestone_slab_top.json deleted file mode 100644 index 2505469f..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_cobblestone_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/argillite_cobblestone" - "top": "strata:blocks/sedimentary_rocks/argillite_cobblestone" - "side": "strata:blocks/sedimentary_rocks/argillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_cobblestone_stairs.json b/src/test/resources/assets/strata/models/block/argillite_cobblestone_stairs.json deleted file mode 100644 index 07746c81..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_cobblestone_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/argillite_cobblestone" - "top": "strata:blocks/sedimentary_rocks/argillite_cobblestone" - "side": "strata:blocks/sedimentary_rocks/argillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_cobblestone_stairs_inner.json b/src/test/resources/assets/strata/models/block/argillite_cobblestone_stairs_inner.json deleted file mode 100644 index 07746c81..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_cobblestone_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/argillite_cobblestone" - "top": "strata:blocks/sedimentary_rocks/argillite_cobblestone" - "side": "strata:blocks/sedimentary_rocks/argillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_cobblestone_stairs_outer.json b/src/test/resources/assets/strata/models/block/argillite_cobblestone_stairs_outer.json deleted file mode 100644 index 9b8c8e27..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_cobblestone_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/argillite_cobblestone" - "top": "strata:blocks/sedimentary_rocks/argillite_cobblestone" - "side": "strata:blocks/sedimentary_rocks/argillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_cobblestone_wall_inventory.json b/src/test/resources/assets/strata/models/block/argillite_cobblestone_wall_inventory.json deleted file mode 100644 index 137814a1..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_cobblestone_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/argillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_cobblestone_wall_post.json b/src/test/resources/assets/strata/models/block/argillite_cobblestone_wall_post.json deleted file mode 100644 index 1c56f0d1..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_cobblestone_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/argillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_cobblestone_wall_side.json b/src/test/resources/assets/strata/models/block/argillite_cobblestone_wall_side.json deleted file mode 100644 index 5d1a0e3f..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_cobblestone_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/argillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_pressure_plate.json b/src/test/resources/assets/strata/models/block/argillite_pressure_plate.json deleted file mode 100644 index 15a7f390..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/argillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_pressure_plate_down.json b/src/test/resources/assets/strata/models/block/argillite_pressure_plate_down.json deleted file mode 100644 index b64cd0a7..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_down", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/argillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_pressure_plate_up.json b/src/test/resources/assets/strata/models/block/argillite_pressure_plate_up.json deleted file mode 100644 index 15a7f390..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_pressure_plate_up.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/argillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_slab.json b/src/test/resources/assets/strata/models/block/argillite_slab.json deleted file mode 100644 index 54370fa3..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/argillite" - "top": "strata:blocks/sedimentary_rocks/argillite" - "side": "strata:blocks/sedimentary_rocks/argillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_slab_top.json b/src/test/resources/assets/strata/models/block/argillite_slab_top.json deleted file mode 100644 index aa74772b..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/argillite" - "top": "strata:blocks/sedimentary_rocks/argillite" - "side": "strata:blocks/sedimentary_rocks/argillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_stairs.json b/src/test/resources/assets/strata/models/block/argillite_stairs.json deleted file mode 100644 index de4b6bdc..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/argillite" - "top": "strata:blocks/sedimentary_rocks/argillite" - "side": "strata:blocks/sedimentary_rocks/argillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_stairs_inner.json b/src/test/resources/assets/strata/models/block/argillite_stairs_inner.json deleted file mode 100644 index 5c0c425d..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/argillite" - "top": "strata:blocks/sedimentary_rocks/argillite" - "side": "strata:blocks/sedimentary_rocks/argillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_stairs_outer.json b/src/test/resources/assets/strata/models/block/argillite_stairs_outer.json deleted file mode 100644 index b59227b7..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/argillite" - "top": "strata:blocks/sedimentary_rocks/argillite" - "side": "strata:blocks/sedimentary_rocks/argillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_wall_inventory.json b/src/test/resources/assets/strata/models/block/argillite_wall_inventory.json deleted file mode 100644 index 8b8bec50..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/argillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_wall_post.json b/src/test/resources/assets/strata/models/block/argillite_wall_post.json deleted file mode 100644 index b98cb402..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/argillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/argillite_wall_side.json b/src/test/resources/assets/strata/models/block/argillite_wall_side.json deleted file mode 100644 index 184ca926..00000000 --- a/src/test/resources/assets/strata/models/block/argillite_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/argillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/arkose.json b/src/test/resources/assets/strata/models/block/arkose.json deleted file mode 100644 index 9ecc7ba8..00000000 --- a/src/test/resources/assets/strata/models/block/arkose.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/arkose" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basalt.json b/src/test/resources/assets/strata/models/block/basalt.json deleted file mode 100644 index b0cd792d..00000000 --- a/src/test/resources/assets/strata/models/block/basalt.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/basalt" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basalt_brick_slab.json b/src/test/resources/assets/strata/models/block/basalt_brick_slab.json deleted file mode 100644 index 7f178cc6..00000000 --- a/src/test/resources/assets/strata/models/block/basalt_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/basalt_bricks", - "top": "strata:blocks/igneous_rocks/basalt_bricks", - "side": "strata:blocks/igneous_rocks/basalt_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basalt_brick_slab_top.json b/src/test/resources/assets/strata/models/block/basalt_brick_slab_top.json deleted file mode 100644 index 4d4c6d13..00000000 --- a/src/test/resources/assets/strata/models/block/basalt_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/igneous_rocks/basalt_bricks", - "top": "strata:blocks/igneous_rocks/basalt_bricks", - "side": "strata:blocks/igneous_rocks/basalt_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basalt_brick_stairs.json b/src/test/resources/assets/strata/models/block/basalt_brick_stairs.json deleted file mode 100644 index 648b1437..00000000 --- a/src/test/resources/assets/strata/models/block/basalt_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/basalt_bricks", - "top": "strata:blocks/igneous_rocks/basalt_bricks", - "side": "strata:blocks/igneous_rocks/basalt_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basalt_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/basalt_brick_stairs_inner.json deleted file mode 100644 index eba87084..00000000 --- a/src/test/resources/assets/strata/models/block/basalt_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/basalt_bricks", - "top": "strata:blocks/igneous_rocks/basalt_bricks", - "side": "strata:blocks/igneous_rocks/basalt_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basalt_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/basalt_brick_stairs_outer.json deleted file mode 100644 index 8304d9bb..00000000 --- a/src/test/resources/assets/strata/models/block/basalt_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/basalt_bricks", - "top": "strata:blocks/igneous_rocks/basalt_bricks", - "side": "strata:blocks/igneous_rocks/basalt_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basalt_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/basalt_brick_wall_inventory.json deleted file mode 100644 index 7d16a10b..00000000 --- a/src/test/resources/assets/strata/models/block/basalt_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/igneous_rocks/basalt_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basalt_brick_wall_post.json b/src/test/resources/assets/strata/models/block/basalt_brick_wall_post.json deleted file mode 100644 index 2f4954bb..00000000 --- a/src/test/resources/assets/strata/models/block/basalt_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "strata:blocks/igneous_rocks/basalt_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basalt_brick_wall_side.json b/src/test/resources/assets/strata/models/block/basalt_brick_wall_side.json deleted file mode 100644 index b25aa326..00000000 --- a/src/test/resources/assets/strata/models/block/basalt_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "strata:blocks/igneous_rocks/basalt_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basalt_bricks.json b/src/test/resources/assets/strata/models/block/basalt_bricks.json deleted file mode 100644 index e4546a13..00000000 --- a/src/test/resources/assets/strata/models/block/basalt_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/basalt_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basalt_button.json b/src/test/resources/assets/strata/models/block/basalt_button.json deleted file mode 100644 index a5fea3e2..00000000 --- a/src/test/resources/assets/strata/models/block/basalt_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button", - "textures": { - "texture": "strata:blocks/igneous_rocks/basalt" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basalt_button_inventory.json b/src/test/resources/assets/strata/models/block/basalt_button_inventory.json deleted file mode 100644 index b5f4e43d..00000000 --- a/src/test/resources/assets/strata/models/block/basalt_button_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_inventory", - "textures": { - "texture": "strata:blocks/igneous_rocks/basalt" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basalt_button_pressed.json b/src/test/resources/assets/strata/models/block/basalt_button_pressed.json deleted file mode 100644 index 05230164..00000000 --- a/src/test/resources/assets/strata/models/block/basalt_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_pressed", - "textures": { - "texture": "strata:blocks/igneous_rocks/basalt" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basalt_pressure_plate.json b/src/test/resources/assets/strata/models/block/basalt_pressure_plate.json deleted file mode 100644 index ef45ef74..00000000 --- a/src/test/resources/assets/strata/models/block/basalt_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/igneous_rocks/basalt" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basalt_pressure_plate_down.json b/src/test/resources/assets/strata/models/block/basalt_pressure_plate_down.json deleted file mode 100644 index 03c874f9..00000000 --- a/src/test/resources/assets/strata/models/block/basalt_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_down", - "textures": { - "texture": "strata:blocks/igneous_rocks/basalt" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basalt_pressure_plate_up.json b/src/test/resources/assets/strata/models/block/basalt_pressure_plate_up.json deleted file mode 100644 index ef45ef74..00000000 --- a/src/test/resources/assets/strata/models/block/basalt_pressure_plate_up.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/igneous_rocks/basalt" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basalt_slab.json b/src/test/resources/assets/strata/models/block/basalt_slab.json deleted file mode 100644 index fe4e545a..00000000 --- a/src/test/resources/assets/strata/models/block/basalt_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/basalt", - "top": "strata:blocks/igneous_rocks/basalt", - "side": "strata:blocks/igneous_rocks/basalt" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basalt_slab_top.json b/src/test/resources/assets/strata/models/block/basalt_slab_top.json deleted file mode 100644 index ddf53ed6..00000000 --- a/src/test/resources/assets/strata/models/block/basalt_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/igneous_rocks/basalt", - "top": "strata:blocks/igneous_rocks/basalt", - "side": "strata:blocks/igneous_rocks/basalt" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basalt_stairs.json b/src/test/resources/assets/strata/models/block/basalt_stairs.json deleted file mode 100644 index d3bb394e..00000000 --- a/src/test/resources/assets/strata/models/block/basalt_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/basalt", - "top": "strata:blocks/igneous_rocks/basalt", - "side": "strata:blocks/igneous_rocks/basalt" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basalt_stairs_inner.json b/src/test/resources/assets/strata/models/block/basalt_stairs_inner.json deleted file mode 100644 index 43dbcdc0..00000000 --- a/src/test/resources/assets/strata/models/block/basalt_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/basalt", - "top": "strata:blocks/igneous_rocks/basalt", - "side": "strata:blocks/igneous_rocks/basalt" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basalt_stairs_outer.json b/src/test/resources/assets/strata/models/block/basalt_stairs_outer.json deleted file mode 100644 index a6921bb4..00000000 --- a/src/test/resources/assets/strata/models/block/basalt_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/basalt", - "top": "strata:blocks/igneous_rocks/basalt", - "side": "strata:blocks/igneous_rocks/basalt" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basalt_wall_inventory.json b/src/test/resources/assets/strata/models/block/basalt_wall_inventory.json deleted file mode 100644 index 3291d803..00000000 --- a/src/test/resources/assets/strata/models/block/basalt_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/igneous_rocks/basalt" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basalt_wall_post.json b/src/test/resources/assets/strata/models/block/basalt_wall_post.json deleted file mode 100644 index 053729cd..00000000 --- a/src/test/resources/assets/strata/models/block/basalt_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "strata:blocks/igneous_rocks/basalt" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basalt_wall_side.json b/src/test/resources/assets/strata/models/block/basalt_wall_side.json deleted file mode 100644 index fe30a423..00000000 --- a/src/test/resources/assets/strata/models/block/basalt_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "strata:blocks/igneous_rocks/basalt" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basaltic_trachyandesite.json b/src/test/resources/assets/strata/models/block/basaltic_trachyandesite.json deleted file mode 100644 index e055b14c..00000000 --- a/src/test/resources/assets/strata/models/block/basaltic_trachyandesite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/basaltic_trachyandesite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/basanite.json b/src/test/resources/assets/strata/models/block/basanite.json deleted file mode 100644 index 2b731683..00000000 --- a/src/test/resources/assets/strata/models/block/basanite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/basanite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/benmoreite.json b/src/test/resources/assets/strata/models/block/benmoreite.json deleted file mode 100644 index c195d19e..00000000 --- a/src/test/resources/assets/strata/models/block/benmoreite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/benmoreite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/blairmorite.json b/src/test/resources/assets/strata/models/block/blairmorite.json deleted file mode 100644 index a72752bd..00000000 --- a/src/test/resources/assets/strata/models/block/blairmorite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/blairmorite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/blue_granite.json b/src/test/resources/assets/strata/models/block/blue_granite.json deleted file mode 100644 index b8d437ba..00000000 --- a/src/test/resources/assets/strata/models/block/blue_granite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/blue_granite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/blueschist.json b/src/test/resources/assets/strata/models/block/blueschist.json deleted file mode 100644 index a417550c..00000000 --- a/src/test/resources/assets/strata/models/block/blueschist.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/blueschist" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/boninite.json b/src/test/resources/assets/strata/models/block/boninite.json deleted file mode 100644 index ace3b6ba..00000000 --- a/src/test/resources/assets/strata/models/block/boninite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/boninite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/borolanite.json b/src/test/resources/assets/strata/models/block/borolanite.json deleted file mode 100644 index f4289c42..00000000 --- a/src/test/resources/assets/strata/models/block/borolanite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/borolanite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/breccia.json b/src/test/resources/assets/strata/models/block/breccia.json deleted file mode 100644 index 90aa44a0..00000000 --- a/src/test/resources/assets/strata/models/block/breccia.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/breccia" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/calcarenite.json b/src/test/resources/assets/strata/models/block/calcarenite.json deleted file mode 100644 index cee8ed9d..00000000 --- a/src/test/resources/assets/strata/models/block/calcarenite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/calcarenite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/calcflinta.json b/src/test/resources/assets/strata/models/block/calcflinta.json deleted file mode 100644 index 5217df80..00000000 --- a/src/test/resources/assets/strata/models/block/calcflinta.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/calcflinta" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/carbonatite.json b/src/test/resources/assets/strata/models/block/carbonatite.json deleted file mode 100644 index ff9c0b54..00000000 --- a/src/test/resources/assets/strata/models/block/carbonatite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/carbonatite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/cataclasite.json b/src/test/resources/assets/strata/models/block/cataclasite.json deleted file mode 100644 index 6a4e86ad..00000000 --- a/src/test/resources/assets/strata/models/block/cataclasite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/cataclasite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk.json b/src/test/resources/assets/strata/models/block/chalk.json deleted file mode 100644 index 70faea69..00000000 --- a/src/test/resources/assets/strata/models/block/chalk.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/chalk" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_brick_slab.json b/src/test/resources/assets/strata/models/block/chalk_brick_slab.json deleted file mode 100644 index 570ba327..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/chalk_bricks" - "top": "strata:blocks/sedimentary_rocks/chalk_bricks" - "side": "strata:blocks/sedimentary_rocks/chalk_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_brick_slab_top.json b/src/test/resources/assets/strata/models/block/chalk_brick_slab_top.json deleted file mode 100644 index b526ab6b..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/chalk_bricks" - "top": "strata:blocks/sedimentary_rocks/chalk_bricks" - "side": "strata:blocks/sedimentary_rocks/chalk_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_brick_stairs.json b/src/test/resources/assets/strata/models/block/chalk_brick_stairs.json deleted file mode 100644 index ec83aecc..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/chalk_bricks" - "top": "strata:blocks/sedimentary_rocks/chalk_bricks" - "side": "strata:blocks/sedimentary_rocks/chalk_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/chalk_brick_stairs_inner.json deleted file mode 100644 index 3650db2a..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/chalk_bricks" - "top": "strata:blocks/sedimentary_rocks/chalk_bricks" - "side": "strata:blocks/sedimentary_rocks/chalk_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/chalk_brick_stairs_outer.json deleted file mode 100644 index ae6edd17..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/chalk_bricks" - "top": "strata:blocks/sedimentary_rocks/chalk_bricks" - "side": "strata:blocks/sedimentary_rocks/chalk_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/chalk_brick_wall_inventory.json deleted file mode 100644 index eaf40b00..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/chalk_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_brick_wall_post.json b/src/test/resources/assets/strata/models/block/chalk_brick_wall_post.json deleted file mode 100644 index 12acbabe..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/chalk_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_brick_wall_side.json b/src/test/resources/assets/strata/models/block/chalk_brick_wall_side.json deleted file mode 100644 index 3563c920..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/chalk_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_bricks.json b/src/test/resources/assets/strata/models/block/chalk_bricks.json deleted file mode 100644 index 4bf3df11..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/chalk_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_button.json b/src/test/resources/assets/strata/models/block/chalk_button.json deleted file mode 100644 index 47237484..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/chalk" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_button_inventory.json b/src/test/resources/assets/strata/models/block/chalk_button_inventory.json deleted file mode 100644 index 279ed960..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_button_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_inventory", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/chalk" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_button_pressed.json b/src/test/resources/assets/strata/models/block/chalk_button_pressed.json deleted file mode 100644 index 22794f1d..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_pressed", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/chalk" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_cobblestone.json b/src/test/resources/assets/strata/models/block/chalk_cobblestone.json deleted file mode 100644 index c1b4701f..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_cobblestone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/chalk_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_cobblestone_slab.json b/src/test/resources/assets/strata/models/block/chalk_cobblestone_slab.json deleted file mode 100644 index 395dc24e..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_cobblestone_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/chalk_cobblestone" - "top": "strata:blocks/sedimentary_rocks/chalk_cobblestone" - "side": "strata:blocks/sedimentary_rocks/chalk_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_cobblestone_slab_top.json b/src/test/resources/assets/strata/models/block/chalk_cobblestone_slab_top.json deleted file mode 100644 index d5ca97bc..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_cobblestone_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/chalk_cobblestone" - "top": "strata:blocks/sedimentary_rocks/chalk_cobblestone" - "side": "strata:blocks/sedimentary_rocks/chalk_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_cobblestone_stairs.json b/src/test/resources/assets/strata/models/block/chalk_cobblestone_stairs.json deleted file mode 100644 index 5f988be9..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_cobblestone_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/chalk_cobblestone" - "top": "strata:blocks/sedimentary_rocks/chalk_cobblestone" - "side": "strata:blocks/sedimentary_rocks/chalk_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_cobblestone_stairs_inner.json b/src/test/resources/assets/strata/models/block/chalk_cobblestone_stairs_inner.json deleted file mode 100644 index 5f988be9..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_cobblestone_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/chalk_cobblestone" - "top": "strata:blocks/sedimentary_rocks/chalk_cobblestone" - "side": "strata:blocks/sedimentary_rocks/chalk_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_cobblestone_stairs_outer.json b/src/test/resources/assets/strata/models/block/chalk_cobblestone_stairs_outer.json deleted file mode 100644 index ebcc4031..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_cobblestone_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/chalk_cobblestone" - "top": "strata:blocks/sedimentary_rocks/chalk_cobblestone" - "side": "strata:blocks/sedimentary_rocks/chalk_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_cobblestone_wall_inventory.json b/src/test/resources/assets/strata/models/block/chalk_cobblestone_wall_inventory.json deleted file mode 100644 index c737ae0f..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_cobblestone_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/chalk_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_cobblestone_wall_post.json b/src/test/resources/assets/strata/models/block/chalk_cobblestone_wall_post.json deleted file mode 100644 index a1430902..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_cobblestone_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/chalk_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_cobblestone_wall_side.json b/src/test/resources/assets/strata/models/block/chalk_cobblestone_wall_side.json deleted file mode 100644 index 875b7ae3..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_cobblestone_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/chalk_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_pressure_plate.json b/src/test/resources/assets/strata/models/block/chalk_pressure_plate.json deleted file mode 100644 index 078178d6..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/chalk" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_pressure_plate_down.json b/src/test/resources/assets/strata/models/block/chalk_pressure_plate_down.json deleted file mode 100644 index 02aed14b..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_down", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/chalk" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_pressure_plate_up.json b/src/test/resources/assets/strata/models/block/chalk_pressure_plate_up.json deleted file mode 100644 index 078178d6..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_pressure_plate_up.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/chalk" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_slab.json b/src/test/resources/assets/strata/models/block/chalk_slab.json deleted file mode 100644 index 26bf1f18..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/chalk" - "top": "strata:blocks/sedimentary_rocks/chalk" - "side": "strata:blocks/sedimentary_rocks/chalk" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_slab_top.json b/src/test/resources/assets/strata/models/block/chalk_slab_top.json deleted file mode 100644 index 018d7dfb..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/chalk" - "top": "strata:blocks/sedimentary_rocks/chalk" - "side": "strata:blocks/sedimentary_rocks/chalk" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_stairs.json b/src/test/resources/assets/strata/models/block/chalk_stairs.json deleted file mode 100644 index e48735c0..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/chalk" - "top": "strata:blocks/sedimentary_rocks/chalk" - "side": "strata:blocks/sedimentary_rocks/chalk" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_stairs_inner.json b/src/test/resources/assets/strata/models/block/chalk_stairs_inner.json deleted file mode 100644 index 6c74841b..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/chalk" - "top": "strata:blocks/sedimentary_rocks/chalk" - "side": "strata:blocks/sedimentary_rocks/chalk" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_stairs_outer.json b/src/test/resources/assets/strata/models/block/chalk_stairs_outer.json deleted file mode 100644 index 3315ce3b..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/chalk" - "top": "strata:blocks/sedimentary_rocks/chalk" - "side": "strata:blocks/sedimentary_rocks/chalk" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_wall_inventory.json b/src/test/resources/assets/strata/models/block/chalk_wall_inventory.json deleted file mode 100644 index 73f074d9..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/chalk" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_wall_post.json b/src/test/resources/assets/strata/models/block/chalk_wall_post.json deleted file mode 100644 index 03e7909c..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/chalk" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chalk_wall_side.json b/src/test/resources/assets/strata/models/block/chalk_wall_side.json deleted file mode 100644 index ebe2b09c..00000000 --- a/src/test/resources/assets/strata/models/block/chalk_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/chalk" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/charnockite.json b/src/test/resources/assets/strata/models/block/charnockite.json deleted file mode 100644 index 2d3ea6e2..00000000 --- a/src/test/resources/assets/strata/models/block/charnockite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/charnockite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chert.json b/src/test/resources/assets/strata/models/block/chert.json deleted file mode 100644 index ce4e0b42..00000000 --- a/src/test/resources/assets/strata/models/block/chert.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/chert" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chiseled_aa_bricks.json b/src/test/resources/assets/strata/models/block/chiseled_aa_bricks.json deleted file mode 100644 index a88ad987..00000000 --- a/src/test/resources/assets/strata/models/block/chiseled_aa_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/chiseled_aa_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chiseled_adakite_bricks.json b/src/test/resources/assets/strata/models/block/chiseled_adakite_bricks.json deleted file mode 100644 index 4e900c3b..00000000 --- a/src/test/resources/assets/strata/models/block/chiseled_adakite_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/chiseled_adakite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chiseled_amphibolite_bricks.json b/src/test/resources/assets/strata/models/block/chiseled_amphibolite_bricks.json deleted file mode 100644 index 041e1274..00000000 --- a/src/test/resources/assets/strata/models/block/chiseled_amphibolite_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/chiseled_amphibolite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chiseled_argillite_bricks.json b/src/test/resources/assets/strata/models/block/chiseled_argillite_bricks.json deleted file mode 100644 index 56883462..00000000 --- a/src/test/resources/assets/strata/models/block/chiseled_argillite_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/chiseled_argillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chiseled_basalt_bricks.json b/src/test/resources/assets/strata/models/block/chiseled_basalt_bricks.json deleted file mode 100644 index d89a1748..00000000 --- a/src/test/resources/assets/strata/models/block/chiseled_basalt_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/chiseled_basalt_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chiseled_chalk_bricks.json b/src/test/resources/assets/strata/models/block/chiseled_chalk_bricks.json deleted file mode 100644 index 979c4a05..00000000 --- a/src/test/resources/assets/strata/models/block/chiseled_chalk_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/chiseled_chalk_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chiseled_eclogite_bricks.json b/src/test/resources/assets/strata/models/block/chiseled_eclogite_bricks.json deleted file mode 100644 index 2a5e499c..00000000 --- a/src/test/resources/assets/strata/models/block/chiseled_eclogite_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/chiseled_eclogite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chiseled_gabbro_bricks.json b/src/test/resources/assets/strata/models/block/chiseled_gabbro_bricks.json deleted file mode 100644 index ad6bbdcf..00000000 --- a/src/test/resources/assets/strata/models/block/chiseled_gabbro_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/chiseled_gabbro_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chiseled_gneiss_bricks.json b/src/test/resources/assets/strata/models/block/chiseled_gneiss_bricks.json deleted file mode 100644 index a0553482..00000000 --- a/src/test/resources/assets/strata/models/block/chiseled_gneiss_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/chiseled_gneiss_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chiseled_jaspillite_bricks.json b/src/test/resources/assets/strata/models/block/chiseled_jaspillite_bricks.json deleted file mode 100644 index 0764d79a..00000000 --- a/src/test/resources/assets/strata/models/block/chiseled_jaspillite_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/chiseled_jaspillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chiseled_limestone_bricks.json b/src/test/resources/assets/strata/models/block/chiseled_limestone_bricks.json deleted file mode 100644 index 2c906a37..00000000 --- a/src/test/resources/assets/strata/models/block/chiseled_limestone_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/chiseled_limestone_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chiseled_marble_bricks.json b/src/test/resources/assets/strata/models/block/chiseled_marble_bricks.json deleted file mode 100644 index 42e0f910..00000000 --- a/src/test/resources/assets/strata/models/block/chiseled_marble_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/chiseled_marble_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chiseled_pahoehoe_bricks.json b/src/test/resources/assets/strata/models/block/chiseled_pahoehoe_bricks.json deleted file mode 100644 index 13b6e480..00000000 --- a/src/test/resources/assets/strata/models/block/chiseled_pahoehoe_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/chiseled_pahoehoe_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chiseled_schist_bricks.json b/src/test/resources/assets/strata/models/block/chiseled_schist_bricks.json deleted file mode 100644 index b870968e..00000000 --- a/src/test/resources/assets/strata/models/block/chiseled_schist_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/chiseled_schist_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/chiseled_shale_bricks.json b/src/test/resources/assets/strata/models/block/chiseled_shale_bricks.json deleted file mode 100644 index 728fe055..00000000 --- a/src/test/resources/assets/strata/models/block/chiseled_shale_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/chiseled_shale_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/claystone.json b/src/test/resources/assets/strata/models/block/claystone.json deleted file mode 100644 index 3be9f2fc..00000000 --- a/src/test/resources/assets/strata/models/block/claystone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/claystone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/comendite.json b/src/test/resources/assets/strata/models/block/comendite.json deleted file mode 100644 index ace35415..00000000 --- a/src/test/resources/assets/strata/models/block/comendite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/comendite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/conglomerate.json b/src/test/resources/assets/strata/models/block/conglomerate.json deleted file mode 100644 index f5499c4e..00000000 --- a/src/test/resources/assets/strata/models/block/conglomerate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/conglomerate" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/coquina.json b/src/test/resources/assets/strata/models/block/coquina.json deleted file mode 100644 index 71e16d08..00000000 --- a/src/test/resources/assets/strata/models/block/coquina.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/coquina" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/cracked_aa_bricks.json b/src/test/resources/assets/strata/models/block/cracked_aa_bricks.json deleted file mode 100644 index 6b9476d6..00000000 --- a/src/test/resources/assets/strata/models/block/cracked_aa_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/cracked_aa_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/cracked_adakite_bricks.json b/src/test/resources/assets/strata/models/block/cracked_adakite_bricks.json deleted file mode 100644 index 9004d89b..00000000 --- a/src/test/resources/assets/strata/models/block/cracked_adakite_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/cracked_adakite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/cracked_amphibolite_bricks.json b/src/test/resources/assets/strata/models/block/cracked_amphibolite_bricks.json deleted file mode 100644 index aacb43e4..00000000 --- a/src/test/resources/assets/strata/models/block/cracked_amphibolite_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/cracked_amphibolite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/cracked_argillite_bricks.json b/src/test/resources/assets/strata/models/block/cracked_argillite_bricks.json deleted file mode 100644 index 2efcb542..00000000 --- a/src/test/resources/assets/strata/models/block/cracked_argillite_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/cracked_argillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/cracked_basalt_bricks.json b/src/test/resources/assets/strata/models/block/cracked_basalt_bricks.json deleted file mode 100644 index b227448f..00000000 --- a/src/test/resources/assets/strata/models/block/cracked_basalt_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/cracked_basalt_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/cracked_chalk_bricks.json b/src/test/resources/assets/strata/models/block/cracked_chalk_bricks.json deleted file mode 100644 index 5f45401e..00000000 --- a/src/test/resources/assets/strata/models/block/cracked_chalk_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/cracked_chalk_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/cracked_eclogite_bricks.json b/src/test/resources/assets/strata/models/block/cracked_eclogite_bricks.json deleted file mode 100644 index 0e41802f..00000000 --- a/src/test/resources/assets/strata/models/block/cracked_eclogite_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/cracked_eclogite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/cracked_gabbro_bricks.json b/src/test/resources/assets/strata/models/block/cracked_gabbro_bricks.json deleted file mode 100644 index 0a7dd833..00000000 --- a/src/test/resources/assets/strata/models/block/cracked_gabbro_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/cracked_gabbro_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/cracked_gneiss_bricks.json b/src/test/resources/assets/strata/models/block/cracked_gneiss_bricks.json deleted file mode 100644 index 7b35ec09..00000000 --- a/src/test/resources/assets/strata/models/block/cracked_gneiss_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/cracked_gneiss_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/cracked_jaspillite_bricks.json b/src/test/resources/assets/strata/models/block/cracked_jaspillite_bricks.json deleted file mode 100644 index 23e0faae..00000000 --- a/src/test/resources/assets/strata/models/block/cracked_jaspillite_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/cracked_jaspillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/cracked_limestone_bricks.json b/src/test/resources/assets/strata/models/block/cracked_limestone_bricks.json deleted file mode 100644 index 9d4d362e..00000000 --- a/src/test/resources/assets/strata/models/block/cracked_limestone_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/cracked_limestone_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/cracked_marble_bricks.json b/src/test/resources/assets/strata/models/block/cracked_marble_bricks.json deleted file mode 100644 index 2f6e118f..00000000 --- a/src/test/resources/assets/strata/models/block/cracked_marble_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/cracked_marble_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/cracked_pahoehoe_bricks.json b/src/test/resources/assets/strata/models/block/cracked_pahoehoe_bricks.json deleted file mode 100644 index 96e3aebf..00000000 --- a/src/test/resources/assets/strata/models/block/cracked_pahoehoe_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/cracked_pahoehoe_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/cracked_schist_bricks.json b/src/test/resources/assets/strata/models/block/cracked_schist_bricks.json deleted file mode 100644 index 401a38c3..00000000 --- a/src/test/resources/assets/strata/models/block/cracked_schist_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/cracked_schist_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/cracked_shale_bricks.json b/src/test/resources/assets/strata/models/block/cracked_shale_bricks.json deleted file mode 100644 index 70225ce7..00000000 --- a/src/test/resources/assets/strata/models/block/cracked_shale_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/cracked_shale_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/dacite.json b/src/test/resources/assets/strata/models/block/dacite.json deleted file mode 100644 index 03b4481f..00000000 --- a/src/test/resources/assets/strata/models/block/dacite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/dacite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/debug_block.json b/src/test/resources/assets/strata/models/block/debug_block.json deleted file mode 100644 index 8766f006..00000000 --- a/src/test/resources/assets/strata/models/block/debug_block.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/debug_block" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/debug_ore.json b/src/test/resources/assets/strata/models/block/debug_ore.json deleted file mode 100644 index 8766f006..00000000 --- a/src/test/resources/assets/strata/models/block/debug_ore.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/debug_block" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/debug_slab.json b/src/test/resources/assets/strata/models/block/debug_slab.json deleted file mode 100644 index 09dd1369..00000000 --- a/src/test/resources/assets/strata/models/block/debug_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/debug_block", - "top": "strata:blocks/debug_block", - "side": "strata:blocks/debug_block" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/debug_slab_top.json b/src/test/resources/assets/strata/models/block/debug_slab_top.json deleted file mode 100644 index f0205fdd..00000000 --- a/src/test/resources/assets/strata/models/block/debug_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/debug_block", - "top": "strata:blocks/debug_block", - "side": "strata:blocks/debug_block" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/debug_stairs.json b/src/test/resources/assets/strata/models/block/debug_stairs.json deleted file mode 100644 index 919c6d6b..00000000 --- a/src/test/resources/assets/strata/models/block/debug_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/debug_block", - "top": "strata:blocks/debug_block", - "side": "strata:blocks/debug_block" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/debug_stairs_inner.json b/src/test/resources/assets/strata/models/block/debug_stairs_inner.json deleted file mode 100644 index 70398af4..00000000 --- a/src/test/resources/assets/strata/models/block/debug_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/debug_block", - "top": "strata:blocks/debug_block", - "side": "strata:blocks/debug_block" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/debug_stairs_outer.json b/src/test/resources/assets/strata/models/block/debug_stairs_outer.json deleted file mode 100644 index db363944..00000000 --- a/src/test/resources/assets/strata/models/block/debug_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/debug_block", - "top": "strata:blocks/debug_block", - "side": "strata:blocks/debug_block" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/debug_wall_inventory.json b/src/test/resources/assets/strata/models/block/debug_wall_inventory.json deleted file mode 100644 index 43857251..00000000 --- a/src/test/resources/assets/strata/models/block/debug_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/debug_block" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/debug_wall_post.json b/src/test/resources/assets/strata/models/block/debug_wall_post.json deleted file mode 100644 index e3b53896..00000000 --- a/src/test/resources/assets/strata/models/block/debug_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "strata:blocks/debug_block" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/debug_wall_side.json b/src/test/resources/assets/strata/models/block/debug_wall_side.json deleted file mode 100644 index 919ef912..00000000 --- a/src/test/resources/assets/strata/models/block/debug_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "strata:blocks/debug_block" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/diabase.json b/src/test/resources/assets/strata/models/block/diabase.json deleted file mode 100644 index 16b679f3..00000000 --- a/src/test/resources/assets/strata/models/block/diabase.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/diabase" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/diamictite.json b/src/test/resources/assets/strata/models/block/diamictite.json deleted file mode 100644 index 55d1e518..00000000 --- a/src/test/resources/assets/strata/models/block/diamictite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/diamictite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/diatomite.json b/src/test/resources/assets/strata/models/block/diatomite.json deleted file mode 100644 index 8e2d3466..00000000 --- a/src/test/resources/assets/strata/models/block/diatomite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/diatomite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/dolomite.json b/src/test/resources/assets/strata/models/block/dolomite.json deleted file mode 100644 index 9d5960f4..00000000 --- a/src/test/resources/assets/strata/models/block/dolomite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/dolomite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/dunite.json b/src/test/resources/assets/strata/models/block/dunite.json deleted file mode 100644 index 3a0dd680..00000000 --- a/src/test/resources/assets/strata/models/block/dunite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/dunite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite.json b/src/test/resources/assets/strata/models/block/eclogite.json deleted file mode 100644 index df0aca31..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/eclogite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_brick_slab.json b/src/test/resources/assets/strata/models/block/eclogite_brick_slab.json deleted file mode 100644 index 1825c5b3..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/eclogite_bricks" - "top": "strata:blocks/metamorphic_rocks/eclogite_bricks" - "side": "strata:blocks/metamorphic_rocks/eclogite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_brick_slab_top.json b/src/test/resources/assets/strata/models/block/eclogite_brick_slab_top.json deleted file mode 100644 index 27362b24..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/eclogite_bricks" - "top": "strata:blocks/metamorphic_rocks/eclogite_bricks" - "side": "strata:blocks/metamorphic_rocks/eclogite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_brick_stairs.json b/src/test/resources/assets/strata/models/block/eclogite_brick_stairs.json deleted file mode 100644 index 5e358d94..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/eclogite_bricks" - "top": "strata:blocks/metamorphic_rocks/eclogite_bricks" - "side": "strata:blocks/metamorphic_rocks/eclogite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/eclogite_brick_stairs_inner.json deleted file mode 100644 index a220338c..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/eclogite_bricks" - "top": "strata:blocks/metamorphic_rocks/eclogite_bricks" - "side": "strata:blocks/metamorphic_rocks/eclogite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/eclogite_brick_stairs_outer.json deleted file mode 100644 index b4ae579b..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/eclogite_bricks" - "top": "strata:blocks/metamorphic_rocks/eclogite_bricks" - "side": "strata:blocks/metamorphic_rocks/eclogite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/eclogite_brick_wall_inventory.json deleted file mode 100644 index eeaa782e..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/eclogite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_brick_wall_post.json b/src/test/resources/assets/strata/models/block/eclogite_brick_wall_post.json deleted file mode 100644 index f2cd4ac2..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/eclogite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_brick_wall_side.json b/src/test/resources/assets/strata/models/block/eclogite_brick_wall_side.json deleted file mode 100644 index bfd5eaed..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/eclogite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_bricks.json b/src/test/resources/assets/strata/models/block/eclogite_bricks.json deleted file mode 100644 index 21194e98..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/eclogite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_button.json b/src/test/resources/assets/strata/models/block/eclogite_button.json deleted file mode 100644 index bab69d19..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/eclogite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_button_inventory.json b/src/test/resources/assets/strata/models/block/eclogite_button_inventory.json deleted file mode 100644 index 845aaed3..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_button_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_inventory", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/eclogite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_button_pressed.json b/src/test/resources/assets/strata/models/block/eclogite_button_pressed.json deleted file mode 100644 index 0837f265..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_pressed", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/eclogite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_cobblestone.json b/src/test/resources/assets/strata/models/block/eclogite_cobblestone.json deleted file mode 100644 index ced5ca6c..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_cobblestone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/eclogite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_cobblestone_slab.json b/src/test/resources/assets/strata/models/block/eclogite_cobblestone_slab.json deleted file mode 100644 index 0206bf0c..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_cobblestone_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/eclogite_cobblestone" - "top": "strata:blocks/metamorphic_rocks/eclogite_cobblestone" - "side": "strata:blocks/metamorphic_rocks/eclogite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_cobblestone_slab_top.json b/src/test/resources/assets/strata/models/block/eclogite_cobblestone_slab_top.json deleted file mode 100644 index 8e9b92b3..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_cobblestone_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/eclogite_cobblestone" - "top": "strata:blocks/metamorphic_rocks/eclogite_cobblestone" - "side": "strata:blocks/metamorphic_rocks/eclogite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_cobblestone_stairs.json b/src/test/resources/assets/strata/models/block/eclogite_cobblestone_stairs.json deleted file mode 100644 index d57ae6d0..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_cobblestone_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/eclogite_cobblestone" - "top": "strata:blocks/metamorphic_rocks/eclogite_cobblestone" - "side": "strata:blocks/metamorphic_rocks/eclogite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_cobblestone_stairs_inner.json b/src/test/resources/assets/strata/models/block/eclogite_cobblestone_stairs_inner.json deleted file mode 100644 index d57ae6d0..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_cobblestone_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/eclogite_cobblestone" - "top": "strata:blocks/metamorphic_rocks/eclogite_cobblestone" - "side": "strata:blocks/metamorphic_rocks/eclogite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_cobblestone_stairs_outer.json b/src/test/resources/assets/strata/models/block/eclogite_cobblestone_stairs_outer.json deleted file mode 100644 index 34131b0b..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_cobblestone_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/eclogite_cobblestone" - "top": "strata:blocks/metamorphic_rocks/eclogite_cobblestone" - "side": "strata:blocks/metamorphic_rocks/eclogite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_cobblestone_wall_inventory.json b/src/test/resources/assets/strata/models/block/eclogite_cobblestone_wall_inventory.json deleted file mode 100644 index 4be6c444..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_cobblestone_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/eclogite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_cobblestone_wall_post.json b/src/test/resources/assets/strata/models/block/eclogite_cobblestone_wall_post.json deleted file mode 100644 index d88ebbd5..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_cobblestone_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/eclogite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_cobblestone_wall_side.json b/src/test/resources/assets/strata/models/block/eclogite_cobblestone_wall_side.json deleted file mode 100644 index 0590eb48..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_cobblestone_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/eclogite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_pressure_plate.json b/src/test/resources/assets/strata/models/block/eclogite_pressure_plate.json deleted file mode 100644 index 526b5f2b..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/eclogite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_pressure_plate_down.json b/src/test/resources/assets/strata/models/block/eclogite_pressure_plate_down.json deleted file mode 100644 index e8fe9350..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_down", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/eclogite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_pressure_plate_up.json b/src/test/resources/assets/strata/models/block/eclogite_pressure_plate_up.json deleted file mode 100644 index 526b5f2b..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_pressure_plate_up.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/eclogite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_slab.json b/src/test/resources/assets/strata/models/block/eclogite_slab.json deleted file mode 100644 index 819bdcf9..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/eclogite" - "top": "strata:blocks/metamorphic_rocks/eclogite" - "side": "strata:blocks/metamorphic_rocks/eclogite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_slab_top.json b/src/test/resources/assets/strata/models/block/eclogite_slab_top.json deleted file mode 100644 index 0e4fef48..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/eclogite" - "top": "strata:blocks/metamorphic_rocks/eclogite" - "side": "strata:blocks/metamorphic_rocks/eclogite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_stairs.json b/src/test/resources/assets/strata/models/block/eclogite_stairs.json deleted file mode 100644 index 55d0e5e7..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/eclogite" - "top": "strata:blocks/metamorphic_rocks/eclogite" - "side": "strata:blocks/metamorphic_rocks/eclogite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_stairs_inner.json b/src/test/resources/assets/strata/models/block/eclogite_stairs_inner.json deleted file mode 100644 index cac82f80..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/eclogite" - "top": "strata:blocks/metamorphic_rocks/eclogite" - "side": "strata:blocks/metamorphic_rocks/eclogite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_stairs_outer.json b/src/test/resources/assets/strata/models/block/eclogite_stairs_outer.json deleted file mode 100644 index d0b76fc9..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/eclogite" - "top": "strata:blocks/metamorphic_rocks/eclogite" - "side": "strata:blocks/metamorphic_rocks/eclogite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_wall_inventory.json b/src/test/resources/assets/strata/models/block/eclogite_wall_inventory.json deleted file mode 100644 index 6dfadc2d..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/eclogite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_wall_post.json b/src/test/resources/assets/strata/models/block/eclogite_wall_post.json deleted file mode 100644 index 0107069a..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/eclogite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/eclogite_wall_side.json b/src/test/resources/assets/strata/models/block/eclogite_wall_side.json deleted file mode 100644 index 1b6cf0de..00000000 --- a/src/test/resources/assets/strata/models/block/eclogite_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/eclogite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/enderbite.json b/src/test/resources/assets/strata/models/block/enderbite.json deleted file mode 100644 index 454a07a0..00000000 --- a/src/test/resources/assets/strata/models/block/enderbite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/enderbite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/epidosite.json b/src/test/resources/assets/strata/models/block/epidosite.json deleted file mode 100644 index cbcc754c..00000000 --- a/src/test/resources/assets/strata/models/block/epidosite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/epidosite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/essexite.json b/src/test/resources/assets/strata/models/block/essexite.json deleted file mode 100644 index 9da0b736..00000000 --- a/src/test/resources/assets/strata/models/block/essexite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/essexite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/evaporite.json b/src/test/resources/assets/strata/models/block/evaporite.json deleted file mode 100644 index 3bbfdc54..00000000 --- a/src/test/resources/assets/strata/models/block/evaporite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/evaporite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/felsite.json b/src/test/resources/assets/strata/models/block/felsite.json deleted file mode 100644 index 02bbf627..00000000 --- a/src/test/resources/assets/strata/models/block/felsite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/felsite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/foidolite.json b/src/test/resources/assets/strata/models/block/foidolite.json deleted file mode 100644 index bd81ffcc..00000000 --- a/src/test/resources/assets/strata/models/block/foidolite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/foidolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gabbro.json b/src/test/resources/assets/strata/models/block/gabbro.json deleted file mode 100644 index bf446838..00000000 --- a/src/test/resources/assets/strata/models/block/gabbro.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/gabbro" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gabbro_brick_slab.json b/src/test/resources/assets/strata/models/block/gabbro_brick_slab.json deleted file mode 100644 index bde7b917..00000000 --- a/src/test/resources/assets/strata/models/block/gabbro_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/gabbro_bricks", - "top": "strata:blocks/igneous_rocks/gabbro_bricks", - "side": "strata:blocks/igneous_rocks/gabbro_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gabbro_brick_slab_top.json b/src/test/resources/assets/strata/models/block/gabbro_brick_slab_top.json deleted file mode 100644 index e0a7c863..00000000 --- a/src/test/resources/assets/strata/models/block/gabbro_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/igneous_rocks/gabbro_bricks", - "top": "strata:blocks/igneous_rocks/gabbro_bricks", - "side": "strata:blocks/igneous_rocks/gabbro_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gabbro_brick_stairs.json b/src/test/resources/assets/strata/models/block/gabbro_brick_stairs.json deleted file mode 100644 index 83d56d86..00000000 --- a/src/test/resources/assets/strata/models/block/gabbro_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/gabbro_bricks", - "top": "strata:blocks/igneous_rocks/gabbro_bricks", - "side": "strata:blocks/igneous_rocks/gabbro_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gabbro_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/gabbro_brick_stairs_inner.json deleted file mode 100644 index 81383d72..00000000 --- a/src/test/resources/assets/strata/models/block/gabbro_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/gabbro_bricks", - "top": "strata:blocks/igneous_rocks/gabbro_bricks", - "side": "strata:blocks/igneous_rocks/gabbro_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gabbro_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/gabbro_brick_stairs_outer.json deleted file mode 100644 index b024e898..00000000 --- a/src/test/resources/assets/strata/models/block/gabbro_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/gabbro_bricks", - "top": "strata:blocks/igneous_rocks/gabbro_bricks", - "side": "strata:blocks/igneous_rocks/gabbro_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gabbro_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/gabbro_brick_wall_inventory.json deleted file mode 100644 index 90c37d4c..00000000 --- a/src/test/resources/assets/strata/models/block/gabbro_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/igneous_rocks/gabbro_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gabbro_brick_wall_post.json b/src/test/resources/assets/strata/models/block/gabbro_brick_wall_post.json deleted file mode 100644 index e0eac9db..00000000 --- a/src/test/resources/assets/strata/models/block/gabbro_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "strata:blocks/igneous_rocks/gabbro_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gabbro_brick_wall_side.json b/src/test/resources/assets/strata/models/block/gabbro_brick_wall_side.json deleted file mode 100644 index ff61648e..00000000 --- a/src/test/resources/assets/strata/models/block/gabbro_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "strata:blocks/igneous_rocks/gabbro_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gabbro_bricks.json b/src/test/resources/assets/strata/models/block/gabbro_bricks.json deleted file mode 100644 index b7992db3..00000000 --- a/src/test/resources/assets/strata/models/block/gabbro_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/gabbro_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gabbro_button.json b/src/test/resources/assets/strata/models/block/gabbro_button.json deleted file mode 100644 index c5c63bad..00000000 --- a/src/test/resources/assets/strata/models/block/gabbro_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button", - "textures": { - "texture": "strata:blocks/igneous_rocks/gabbro" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gabbro_button_inventory.json b/src/test/resources/assets/strata/models/block/gabbro_button_inventory.json deleted file mode 100644 index 2c8b8987..00000000 --- a/src/test/resources/assets/strata/models/block/gabbro_button_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_inventory", - "textures": { - "texture": "strata:blocks/igneous_rocks/gabbro" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gabbro_button_pressed.json b/src/test/resources/assets/strata/models/block/gabbro_button_pressed.json deleted file mode 100644 index 9c96071a..00000000 --- a/src/test/resources/assets/strata/models/block/gabbro_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_pressed", - "textures": { - "texture": "strata:blocks/igneous_rocks/gabbro" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gabbro_pressure_plate.json b/src/test/resources/assets/strata/models/block/gabbro_pressure_plate.json deleted file mode 100644 index e5e504d1..00000000 --- a/src/test/resources/assets/strata/models/block/gabbro_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/igneous_rocks/gabbro" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gabbro_pressure_plate_down.json b/src/test/resources/assets/strata/models/block/gabbro_pressure_plate_down.json deleted file mode 100644 index 0f8d0a3f..00000000 --- a/src/test/resources/assets/strata/models/block/gabbro_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_down", - "textures": { - "texture": "strata:blocks/igneous_rocks/gabbro" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gabbro_pressure_plate_up.json b/src/test/resources/assets/strata/models/block/gabbro_pressure_plate_up.json deleted file mode 100644 index e5e504d1..00000000 --- a/src/test/resources/assets/strata/models/block/gabbro_pressure_plate_up.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/igneous_rocks/gabbro" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gabbro_slab.json b/src/test/resources/assets/strata/models/block/gabbro_slab.json deleted file mode 100644 index ed1323aa..00000000 --- a/src/test/resources/assets/strata/models/block/gabbro_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/gabbro", - "top": "strata:blocks/igneous_rocks/gabbro", - "side": "strata:blocks/igneous_rocks/gabbro" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gabbro_slab_top.json b/src/test/resources/assets/strata/models/block/gabbro_slab_top.json deleted file mode 100644 index 9d21286d..00000000 --- a/src/test/resources/assets/strata/models/block/gabbro_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/igneous_rocks/gabbro", - "top": "strata:blocks/igneous_rocks/gabbro", - "side": "strata:blocks/igneous_rocks/gabbro" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gabbro_stairs.json b/src/test/resources/assets/strata/models/block/gabbro_stairs.json deleted file mode 100644 index af0b104c..00000000 --- a/src/test/resources/assets/strata/models/block/gabbro_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/gabbro", - "top": "strata:blocks/igneous_rocks/gabbro", - "side": "strata:blocks/igneous_rocks/gabbro" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gabbro_stairs_inner.json b/src/test/resources/assets/strata/models/block/gabbro_stairs_inner.json deleted file mode 100644 index 45b4eaf2..00000000 --- a/src/test/resources/assets/strata/models/block/gabbro_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/gabbro", - "top": "strata:blocks/igneous_rocks/gabbro", - "side": "strata:blocks/igneous_rocks/gabbro" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gabbro_stairs_outer.json b/src/test/resources/assets/strata/models/block/gabbro_stairs_outer.json deleted file mode 100644 index 48095b5d..00000000 --- a/src/test/resources/assets/strata/models/block/gabbro_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/gabbro", - "top": "strata:blocks/igneous_rocks/gabbro", - "side": "strata:blocks/igneous_rocks/gabbro" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gabbro_wall_inventory.json b/src/test/resources/assets/strata/models/block/gabbro_wall_inventory.json deleted file mode 100644 index d7a8e721..00000000 --- a/src/test/resources/assets/strata/models/block/gabbro_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/igneous_rocks/gabbro" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gabbro_wall_post.json b/src/test/resources/assets/strata/models/block/gabbro_wall_post.json deleted file mode 100644 index a21a8c8c..00000000 --- a/src/test/resources/assets/strata/models/block/gabbro_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "strata:blocks/igneous_rocks/gabbro" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gabbro_wall_side.json b/src/test/resources/assets/strata/models/block/gabbro_wall_side.json deleted file mode 100644 index acab0a67..00000000 --- a/src/test/resources/assets/strata/models/block/gabbro_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "strata:blocks/igneous_rocks/gabbro" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/ganister.json b/src/test/resources/assets/strata/models/block/ganister.json deleted file mode 100644 index d5296ca4..00000000 --- a/src/test/resources/assets/strata/models/block/ganister.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/ganister" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/geyserite.json b/src/test/resources/assets/strata/models/block/geyserite.json deleted file mode 100644 index 444d5387..00000000 --- a/src/test/resources/assets/strata/models/block/geyserite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/geyserite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gneiss.json b/src/test/resources/assets/strata/models/block/gneiss.json deleted file mode 100644 index ff5acab1..00000000 --- a/src/test/resources/assets/strata/models/block/gneiss.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/gneiss" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gneiss_brick_slab.json b/src/test/resources/assets/strata/models/block/gneiss_brick_slab.json deleted file mode 100644 index cf3c6f1a..00000000 --- a/src/test/resources/assets/strata/models/block/gneiss_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/gneiss_bricks", - "top": "strata:blocks/metamorphic_rocks/gneiss_bricks", - "side": "strata:blocks/metamorphic_rocks/gneiss_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gneiss_brick_slab_top.json b/src/test/resources/assets/strata/models/block/gneiss_brick_slab_top.json deleted file mode 100644 index 21083679..00000000 --- a/src/test/resources/assets/strata/models/block/gneiss_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/gneiss_bricks", - "top": "strata:blocks/metamorphic_rocks/gneiss_bricks", - "side": "strata:blocks/metamorphic_rocks/gneiss_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gneiss_brick_stairs.json b/src/test/resources/assets/strata/models/block/gneiss_brick_stairs.json deleted file mode 100644 index a1534cca..00000000 --- a/src/test/resources/assets/strata/models/block/gneiss_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/gneiss_bricks", - "top": "strata:blocks/metamorphic_rocks/gneiss_bricks", - "side": "strata:blocks/metamorphic_rocks/gneiss_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gneiss_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/gneiss_brick_stairs_inner.json deleted file mode 100644 index 03ac9174..00000000 --- a/src/test/resources/assets/strata/models/block/gneiss_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/gneiss_bricks", - "top": "strata:blocks/metamorphic_rocks/gneiss_bricks", - "side": "strata:blocks/metamorphic_rocks/gneiss_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gneiss_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/gneiss_brick_stairs_outer.json deleted file mode 100644 index c435487b..00000000 --- a/src/test/resources/assets/strata/models/block/gneiss_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/gneiss_bricks", - "top": "strata:blocks/metamorphic_rocks/gneiss_bricks", - "side": "strata:blocks/metamorphic_rocks/gneiss_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gneiss_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/gneiss_brick_wall_inventory.json deleted file mode 100644 index f5d0d7f6..00000000 --- a/src/test/resources/assets/strata/models/block/gneiss_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/gneiss_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gneiss_brick_wall_post.json b/src/test/resources/assets/strata/models/block/gneiss_brick_wall_post.json deleted file mode 100644 index 7c916e8d..00000000 --- a/src/test/resources/assets/strata/models/block/gneiss_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/gneiss_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gneiss_brick_wall_side.json b/src/test/resources/assets/strata/models/block/gneiss_brick_wall_side.json deleted file mode 100644 index 799ea727..00000000 --- a/src/test/resources/assets/strata/models/block/gneiss_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/gneiss_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gneiss_bricks.json b/src/test/resources/assets/strata/models/block/gneiss_bricks.json deleted file mode 100644 index 6f10f942..00000000 --- a/src/test/resources/assets/strata/models/block/gneiss_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/gneiss_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gneiss_button.json b/src/test/resources/assets/strata/models/block/gneiss_button.json deleted file mode 100644 index a00b0b7a..00000000 --- a/src/test/resources/assets/strata/models/block/gneiss_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/gneiss" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gneiss_button_inventory.json b/src/test/resources/assets/strata/models/block/gneiss_button_inventory.json deleted file mode 100644 index d493962f..00000000 --- a/src/test/resources/assets/strata/models/block/gneiss_button_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_inventory", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/gneiss" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gneiss_button_pressed.json b/src/test/resources/assets/strata/models/block/gneiss_button_pressed.json deleted file mode 100644 index 1fa6a32a..00000000 --- a/src/test/resources/assets/strata/models/block/gneiss_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_pressed", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/gneiss" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gneiss_pressure_plate.json b/src/test/resources/assets/strata/models/block/gneiss_pressure_plate.json deleted file mode 100644 index b13adeb7..00000000 --- a/src/test/resources/assets/strata/models/block/gneiss_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/gneiss" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gneiss_pressure_plate_down.json b/src/test/resources/assets/strata/models/block/gneiss_pressure_plate_down.json deleted file mode 100644 index 03a83782..00000000 --- a/src/test/resources/assets/strata/models/block/gneiss_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_down", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/gneiss" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gneiss_pressure_plate_up.json b/src/test/resources/assets/strata/models/block/gneiss_pressure_plate_up.json deleted file mode 100644 index b13adeb7..00000000 --- a/src/test/resources/assets/strata/models/block/gneiss_pressure_plate_up.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/gneiss" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gneiss_slab.json b/src/test/resources/assets/strata/models/block/gneiss_slab.json deleted file mode 100644 index 4dbf45ad..00000000 --- a/src/test/resources/assets/strata/models/block/gneiss_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/gneiss", - "top": "strata:blocks/metamorphic_rocks/gneiss", - "side": "strata:blocks/metamorphic_rocks/gneiss" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gneiss_slab_top.json b/src/test/resources/assets/strata/models/block/gneiss_slab_top.json deleted file mode 100644 index b853342e..00000000 --- a/src/test/resources/assets/strata/models/block/gneiss_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/gneiss", - "top": "strata:blocks/metamorphic_rocks/gneiss", - "side": "strata:blocks/metamorphic_rocks/gneiss" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gneiss_stairs.json b/src/test/resources/assets/strata/models/block/gneiss_stairs.json deleted file mode 100644 index 5f6dca87..00000000 --- a/src/test/resources/assets/strata/models/block/gneiss_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/gneiss", - "top": "strata:blocks/metamorphic_rocks/gneiss", - "side": "strata:blocks/metamorphic_rocks/gneiss" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gneiss_stairs_inner.json b/src/test/resources/assets/strata/models/block/gneiss_stairs_inner.json deleted file mode 100644 index dbdc29ae..00000000 --- a/src/test/resources/assets/strata/models/block/gneiss_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/gneiss", - "top": "strata:blocks/metamorphic_rocks/gneiss", - "side": "strata:blocks/metamorphic_rocks/gneiss" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gneiss_stairs_outer.json b/src/test/resources/assets/strata/models/block/gneiss_stairs_outer.json deleted file mode 100644 index f2076914..00000000 --- a/src/test/resources/assets/strata/models/block/gneiss_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/gneiss", - "top": "strata:blocks/metamorphic_rocks/gneiss", - "side": "strata:blocks/metamorphic_rocks/gneiss" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gneiss_wall_inventory.json b/src/test/resources/assets/strata/models/block/gneiss_wall_inventory.json deleted file mode 100644 index e1745dfe..00000000 --- a/src/test/resources/assets/strata/models/block/gneiss_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/gneiss" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gneiss_wall_post.json b/src/test/resources/assets/strata/models/block/gneiss_wall_post.json deleted file mode 100644 index ae18bbb2..00000000 --- a/src/test/resources/assets/strata/models/block/gneiss_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/gneiss" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gneiss_wall_side.json b/src/test/resources/assets/strata/models/block/gneiss_wall_side.json deleted file mode 100644 index 15e450db..00000000 --- a/src/test/resources/assets/strata/models/block/gneiss_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/gneiss" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gossan.json b/src/test/resources/assets/strata/models/block/gossan.json deleted file mode 100644 index 370a9b15..00000000 --- a/src/test/resources/assets/strata/models/block/gossan.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/gossan" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/granodiorite.json b/src/test/resources/assets/strata/models/block/granodiorite.json deleted file mode 100644 index 51350137..00000000 --- a/src/test/resources/assets/strata/models/block/granodiorite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/granodiorite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/granophyre.json b/src/test/resources/assets/strata/models/block/granophyre.json deleted file mode 100644 index f8197a55..00000000 --- a/src/test/resources/assets/strata/models/block/granophyre.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/granophyre" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/granulite.json b/src/test/resources/assets/strata/models/block/granulite.json deleted file mode 100644 index 4d4d1195..00000000 --- a/src/test/resources/assets/strata/models/block/granulite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/granulite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/greenschist.json b/src/test/resources/assets/strata/models/block/greenschist.json deleted file mode 100644 index ac11f34f..00000000 --- a/src/test/resources/assets/strata/models/block/greenschist.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/greenschist" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/greywacke.json b/src/test/resources/assets/strata/models/block/greywacke.json deleted file mode 100644 index ad429084..00000000 --- a/src/test/resources/assets/strata/models/block/greywacke.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/greywacke" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/gritstone.json b/src/test/resources/assets/strata/models/block/gritstone.json deleted file mode 100644 index b0c30e63..00000000 --- a/src/test/resources/assets/strata/models/block/gritstone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/gritstone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/hawaiite.json b/src/test/resources/assets/strata/models/block/hawaiite.json deleted file mode 100644 index 1f306aa7..00000000 --- a/src/test/resources/assets/strata/models/block/hawaiite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/hawaiite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/hazburgite.json b/src/test/resources/assets/strata/models/block/hazburgite.json deleted file mode 100644 index 179042f8..00000000 --- a/src/test/resources/assets/strata/models/block/hazburgite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/hazburgite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/hornblendite.json b/src/test/resources/assets/strata/models/block/hornblendite.json deleted file mode 100644 index 3b98114c..00000000 --- a/src/test/resources/assets/strata/models/block/hornblendite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/hornblendite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/hornfels.json b/src/test/resources/assets/strata/models/block/hornfels.json deleted file mode 100644 index 3e6bebe9..00000000 --- a/src/test/resources/assets/strata/models/block/hornfels.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/hornfels" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/hyaloclastit.json b/src/test/resources/assets/strata/models/block/hyaloclastit.json deleted file mode 100644 index c7a86cef..00000000 --- a/src/test/resources/assets/strata/models/block/hyaloclastit.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/hyaloclastit" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/hyaloclastite.json b/src/test/resources/assets/strata/models/block/hyaloclastite.json deleted file mode 100644 index 522e51fb..00000000 --- a/src/test/resources/assets/strata/models/block/hyaloclastite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/hyaloclastite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/icelandite.json b/src/test/resources/assets/strata/models/block/icelandite.json deleted file mode 100644 index 9ebd24b6..00000000 --- a/src/test/resources/assets/strata/models/block/icelandite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/icelandite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/ijolite.json b/src/test/resources/assets/strata/models/block/ijolite.json deleted file mode 100644 index 4918ecc4..00000000 --- a/src/test/resources/assets/strata/models/block/ijolite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/ijolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/itacolumite.json b/src/test/resources/assets/strata/models/block/itacolumite.json deleted file mode 100644 index 1fd62b5c..00000000 --- a/src/test/resources/assets/strata/models/block/itacolumite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/itacolumite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jadeitite.json b/src/test/resources/assets/strata/models/block/jadeitite.json deleted file mode 100644 index 79414738..00000000 --- a/src/test/resources/assets/strata/models/block/jadeitite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/jadeitite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jasperoid.json b/src/test/resources/assets/strata/models/block/jasperoid.json deleted file mode 100644 index cc57ab95..00000000 --- a/src/test/resources/assets/strata/models/block/jasperoid.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/jasperoid" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite.json b/src/test/resources/assets/strata/models/block/jaspillite.json deleted file mode 100644 index c2021a02..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/jaspillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_brick_slab.json b/src/test/resources/assets/strata/models/block/jaspillite_brick_slab.json deleted file mode 100644 index ad391823..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/jaspillite_bricks" - "top": "strata:blocks/sedimentary_rocks/jaspillite_bricks" - "side": "strata:blocks/sedimentary_rocks/jaspillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_brick_slab_top.json b/src/test/resources/assets/strata/models/block/jaspillite_brick_slab_top.json deleted file mode 100644 index ebcc8742..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/jaspillite_bricks" - "top": "strata:blocks/sedimentary_rocks/jaspillite_bricks" - "side": "strata:blocks/sedimentary_rocks/jaspillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_brick_stairs.json b/src/test/resources/assets/strata/models/block/jaspillite_brick_stairs.json deleted file mode 100644 index 9bed6344..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/jaspillite_bricks" - "top": "strata:blocks/sedimentary_rocks/jaspillite_bricks" - "side": "strata:blocks/sedimentary_rocks/jaspillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/jaspillite_brick_stairs_inner.json deleted file mode 100644 index f506b31d..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/jaspillite_bricks" - "top": "strata:blocks/sedimentary_rocks/jaspillite_bricks" - "side": "strata:blocks/sedimentary_rocks/jaspillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/jaspillite_brick_stairs_outer.json deleted file mode 100644 index d206c878..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/jaspillite_bricks" - "top": "strata:blocks/sedimentary_rocks/jaspillite_bricks" - "side": "strata:blocks/sedimentary_rocks/jaspillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/jaspillite_brick_wall_inventory.json deleted file mode 100644 index 8f79d3a6..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/jaspillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_brick_wall_post.json b/src/test/resources/assets/strata/models/block/jaspillite_brick_wall_post.json deleted file mode 100644 index b6d188e8..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/jaspillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_brick_wall_side.json b/src/test/resources/assets/strata/models/block/jaspillite_brick_wall_side.json deleted file mode 100644 index 5fbf1fbf..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/jaspillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_bricks.json b/src/test/resources/assets/strata/models/block/jaspillite_bricks.json deleted file mode 100644 index 00e8e5eb..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/jaspillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_button.json b/src/test/resources/assets/strata/models/block/jaspillite_button.json deleted file mode 100644 index e3dd5c98..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/jaspillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_button_inventory.json b/src/test/resources/assets/strata/models/block/jaspillite_button_inventory.json deleted file mode 100644 index da57340b..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_button_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_inventory", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/jaspillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_button_pressed.json b/src/test/resources/assets/strata/models/block/jaspillite_button_pressed.json deleted file mode 100644 index d22e8e99..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_pressed", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/jaspillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_cobblestone.json b/src/test/resources/assets/strata/models/block/jaspillite_cobblestone.json deleted file mode 100644 index 89a0c1f7..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_cobblestone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/jaspillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_cobblestone_slab.json b/src/test/resources/assets/strata/models/block/jaspillite_cobblestone_slab.json deleted file mode 100644 index 0bb14af4..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_cobblestone_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/jaspillite_cobblestone" - "top": "strata:blocks/sedimentary_rocks/jaspillite_cobblestone" - "side": "strata:blocks/sedimentary_rocks/jaspillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_cobblestone_slab_top.json b/src/test/resources/assets/strata/models/block/jaspillite_cobblestone_slab_top.json deleted file mode 100644 index 35c86d4d..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_cobblestone_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/jaspillite_cobblestone" - "top": "strata:blocks/sedimentary_rocks/jaspillite_cobblestone" - "side": "strata:blocks/sedimentary_rocks/jaspillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_cobblestone_stairs.json b/src/test/resources/assets/strata/models/block/jaspillite_cobblestone_stairs.json deleted file mode 100644 index fc45d677..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_cobblestone_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/jaspillite_cobblestone" - "top": "strata:blocks/sedimentary_rocks/jaspillite_cobblestone" - "side": "strata:blocks/sedimentary_rocks/jaspillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_cobblestone_stairs_inner.json b/src/test/resources/assets/strata/models/block/jaspillite_cobblestone_stairs_inner.json deleted file mode 100644 index fc45d677..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_cobblestone_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/jaspillite_cobblestone" - "top": "strata:blocks/sedimentary_rocks/jaspillite_cobblestone" - "side": "strata:blocks/sedimentary_rocks/jaspillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_cobblestone_stairs_outer.json b/src/test/resources/assets/strata/models/block/jaspillite_cobblestone_stairs_outer.json deleted file mode 100644 index f4f4fb48..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_cobblestone_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/jaspillite_cobblestone" - "top": "strata:blocks/sedimentary_rocks/jaspillite_cobblestone" - "side": "strata:blocks/sedimentary_rocks/jaspillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_cobblestone_wall_inventory.json b/src/test/resources/assets/strata/models/block/jaspillite_cobblestone_wall_inventory.json deleted file mode 100644 index 1c739bc4..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_cobblestone_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/jaspillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_cobblestone_wall_post.json b/src/test/resources/assets/strata/models/block/jaspillite_cobblestone_wall_post.json deleted file mode 100644 index 1cf9bcd4..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_cobblestone_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/jaspillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_cobblestone_wall_side.json b/src/test/resources/assets/strata/models/block/jaspillite_cobblestone_wall_side.json deleted file mode 100644 index e97ad841..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_cobblestone_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/jaspillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_pressure_plate.json b/src/test/resources/assets/strata/models/block/jaspillite_pressure_plate.json deleted file mode 100644 index 4faac85b..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/jaspillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_pressure_plate_down.json b/src/test/resources/assets/strata/models/block/jaspillite_pressure_plate_down.json deleted file mode 100644 index 94e5d15c..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_down", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/jaspillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_pressure_plate_up.json b/src/test/resources/assets/strata/models/block/jaspillite_pressure_plate_up.json deleted file mode 100644 index 4faac85b..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_pressure_plate_up.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/jaspillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_slab.json b/src/test/resources/assets/strata/models/block/jaspillite_slab.json deleted file mode 100644 index 4880fb1e..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/jaspillite" - "top": "strata:blocks/sedimentary_rocks/jaspillite" - "side": "strata:blocks/sedimentary_rocks/jaspillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_slab_top.json b/src/test/resources/assets/strata/models/block/jaspillite_slab_top.json deleted file mode 100644 index 391dc0b0..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/jaspillite" - "top": "strata:blocks/sedimentary_rocks/jaspillite" - "side": "strata:blocks/sedimentary_rocks/jaspillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_stairs.json b/src/test/resources/assets/strata/models/block/jaspillite_stairs.json deleted file mode 100644 index e54b2293..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/jaspillite" - "top": "strata:blocks/sedimentary_rocks/jaspillite" - "side": "strata:blocks/sedimentary_rocks/jaspillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_stairs_inner.json b/src/test/resources/assets/strata/models/block/jaspillite_stairs_inner.json deleted file mode 100644 index 1a1a039e..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/jaspillite" - "top": "strata:blocks/sedimentary_rocks/jaspillite" - "side": "strata:blocks/sedimentary_rocks/jaspillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_stairs_outer.json b/src/test/resources/assets/strata/models/block/jaspillite_stairs_outer.json deleted file mode 100644 index 3449dfc0..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/jaspillite" - "top": "strata:blocks/sedimentary_rocks/jaspillite" - "side": "strata:blocks/sedimentary_rocks/jaspillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_wall_inventory.json b/src/test/resources/assets/strata/models/block/jaspillite_wall_inventory.json deleted file mode 100644 index 87f352fb..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/jaspillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_wall_post.json b/src/test/resources/assets/strata/models/block/jaspillite_wall_post.json deleted file mode 100644 index 151fd40e..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/jaspillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/jaspillite_wall_side.json b/src/test/resources/assets/strata/models/block/jaspillite_wall_side.json deleted file mode 100644 index 72791a1f..00000000 --- a/src/test/resources/assets/strata/models/block/jaspillite_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/jaspillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/kenyte.json b/src/test/resources/assets/strata/models/block/kenyte.json deleted file mode 100644 index e5bea8c7..00000000 --- a/src/test/resources/assets/strata/models/block/kenyte.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/kenyte" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/kimberlite.json b/src/test/resources/assets/strata/models/block/kimberlite.json deleted file mode 100644 index bf260635..00000000 --- a/src/test/resources/assets/strata/models/block/kimberlite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/kimberlite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/komatiite.json b/src/test/resources/assets/strata/models/block/komatiite.json deleted file mode 100644 index 9a82ec01..00000000 --- a/src/test/resources/assets/strata/models/block/komatiite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/komatiite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/lamprophyre.json b/src/test/resources/assets/strata/models/block/lamprophyre.json deleted file mode 100644 index 0e48cb2b..00000000 --- a/src/test/resources/assets/strata/models/block/lamprophyre.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/lamprophyre" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/larvikite.json b/src/test/resources/assets/strata/models/block/larvikite.json deleted file mode 100644 index 5f1c0944..00000000 --- a/src/test/resources/assets/strata/models/block/larvikite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/larvikite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/laterite.json b/src/test/resources/assets/strata/models/block/laterite.json deleted file mode 100644 index 07509aa7..00000000 --- a/src/test/resources/assets/strata/models/block/laterite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/laterite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/latite.json b/src/test/resources/assets/strata/models/block/latite.json deleted file mode 100644 index 0142dd2b..00000000 --- a/src/test/resources/assets/strata/models/block/latite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/latite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/lherzolite.json b/src/test/resources/assets/strata/models/block/lherzolite.json deleted file mode 100644 index 0e614f7a..00000000 --- a/src/test/resources/assets/strata/models/block/lherzolite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/lherzolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/limestone.json b/src/test/resources/assets/strata/models/block/limestone.json deleted file mode 100644 index f23563dc..00000000 --- a/src/test/resources/assets/strata/models/block/limestone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/limestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/limestone_brick_slab.json b/src/test/resources/assets/strata/models/block/limestone_brick_slab.json deleted file mode 100644 index ed96d327..00000000 --- a/src/test/resources/assets/strata/models/block/limestone_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/limestone_bricks", - "top": "strata:blocks/sedimentary_rocks/limestone_bricks", - "side": "strata:blocks/sedimentary_rocks/limestone_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/limestone_brick_slab_top.json b/src/test/resources/assets/strata/models/block/limestone_brick_slab_top.json deleted file mode 100644 index 624cdcd6..00000000 --- a/src/test/resources/assets/strata/models/block/limestone_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/limestone_bricks", - "top": "strata:blocks/sedimentary_rocks/limestone_bricks", - "side": "strata:blocks/sedimentary_rocks/limestone_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/limestone_brick_stairs.json b/src/test/resources/assets/strata/models/block/limestone_brick_stairs.json deleted file mode 100644 index 39635eee..00000000 --- a/src/test/resources/assets/strata/models/block/limestone_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/limestone_bricks", - "top": "strata:blocks/sedimentary_rocks/limestone_bricks", - "side": "strata:blocks/sedimentary_rocks/limestone_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/limestone_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/limestone_brick_stairs_inner.json deleted file mode 100644 index 66362a8a..00000000 --- a/src/test/resources/assets/strata/models/block/limestone_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/limestone_bricks", - "top": "strata:blocks/sedimentary_rocks/limestone_bricks", - "side": "strata:blocks/sedimentary_rocks/limestone_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/limestone_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/limestone_brick_stairs_outer.json deleted file mode 100644 index 86b9f029..00000000 --- a/src/test/resources/assets/strata/models/block/limestone_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/limestone_bricks", - "top": "strata:blocks/sedimentary_rocks/limestone_bricks", - "side": "strata:blocks/sedimentary_rocks/limestone_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/limestone_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/limestone_brick_wall_inventory.json deleted file mode 100644 index 5be8765b..00000000 --- a/src/test/resources/assets/strata/models/block/limestone_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/limestone_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/limestone_brick_wall_post.json b/src/test/resources/assets/strata/models/block/limestone_brick_wall_post.json deleted file mode 100644 index 617c5a7d..00000000 --- a/src/test/resources/assets/strata/models/block/limestone_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/limestone_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/limestone_brick_wall_side.json b/src/test/resources/assets/strata/models/block/limestone_brick_wall_side.json deleted file mode 100644 index 0fb08c36..00000000 --- a/src/test/resources/assets/strata/models/block/limestone_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/limestone_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/limestone_bricks.json b/src/test/resources/assets/strata/models/block/limestone_bricks.json deleted file mode 100644 index 43af83b0..00000000 --- a/src/test/resources/assets/strata/models/block/limestone_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/limestone_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/limestone_button.json b/src/test/resources/assets/strata/models/block/limestone_button.json deleted file mode 100644 index 05984ed8..00000000 --- a/src/test/resources/assets/strata/models/block/limestone_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/limestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/limestone_button_inventory.json b/src/test/resources/assets/strata/models/block/limestone_button_inventory.json deleted file mode 100644 index fcf6f90c..00000000 --- a/src/test/resources/assets/strata/models/block/limestone_button_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_inventory", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/limestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/limestone_button_pressed.json b/src/test/resources/assets/strata/models/block/limestone_button_pressed.json deleted file mode 100644 index 8a30cceb..00000000 --- a/src/test/resources/assets/strata/models/block/limestone_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_pressed", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/limestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/limestone_pressure_plate.json b/src/test/resources/assets/strata/models/block/limestone_pressure_plate.json deleted file mode 100644 index d7bbf7be..00000000 --- a/src/test/resources/assets/strata/models/block/limestone_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/limestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/limestone_pressure_plate_down.json b/src/test/resources/assets/strata/models/block/limestone_pressure_plate_down.json deleted file mode 100644 index 2fb6be21..00000000 --- a/src/test/resources/assets/strata/models/block/limestone_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_down", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/limestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/limestone_pressure_plate_up.json b/src/test/resources/assets/strata/models/block/limestone_pressure_plate_up.json deleted file mode 100644 index d7bbf7be..00000000 --- a/src/test/resources/assets/strata/models/block/limestone_pressure_plate_up.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/limestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/limestone_slab.json b/src/test/resources/assets/strata/models/block/limestone_slab.json deleted file mode 100644 index c63fd4a0..00000000 --- a/src/test/resources/assets/strata/models/block/limestone_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/limestone", - "top": "strata:blocks/sedimentary_rocks/limestone", - "side": "strata:blocks/sedimentary_rocks/limestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/limestone_slab_top.json b/src/test/resources/assets/strata/models/block/limestone_slab_top.json deleted file mode 100644 index f922b62e..00000000 --- a/src/test/resources/assets/strata/models/block/limestone_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/limestone", - "top": "strata:blocks/sedimentary_rocks/limestone", - "side": "strata:blocks/sedimentary_rocks/limestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/limestone_stairs.json b/src/test/resources/assets/strata/models/block/limestone_stairs.json deleted file mode 100644 index 8b58e0aa..00000000 --- a/src/test/resources/assets/strata/models/block/limestone_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/limestone", - "top": "strata:blocks/sedimentary_rocks/limestone", - "side": "strata:blocks/sedimentary_rocks/limestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/limestone_stairs_inner.json b/src/test/resources/assets/strata/models/block/limestone_stairs_inner.json deleted file mode 100644 index 2233795b..00000000 --- a/src/test/resources/assets/strata/models/block/limestone_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/limestone", - "top": "strata:blocks/sedimentary_rocks/limestone", - "side": "strata:blocks/sedimentary_rocks/limestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/limestone_stairs_outer.json b/src/test/resources/assets/strata/models/block/limestone_stairs_outer.json deleted file mode 100644 index df275d81..00000000 --- a/src/test/resources/assets/strata/models/block/limestone_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/limestone", - "top": "strata:blocks/sedimentary_rocks/limestone", - "side": "strata:blocks/sedimentary_rocks/limestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/limestone_wall_inventory.json b/src/test/resources/assets/strata/models/block/limestone_wall_inventory.json deleted file mode 100644 index 66f9d3a5..00000000 --- a/src/test/resources/assets/strata/models/block/limestone_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/limestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/limestone_wall_post.json b/src/test/resources/assets/strata/models/block/limestone_wall_post.json deleted file mode 100644 index d2f02108..00000000 --- a/src/test/resources/assets/strata/models/block/limestone_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/limestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/limestone_wall_side.json b/src/test/resources/assets/strata/models/block/limestone_wall_side.json deleted file mode 100644 index 6c9e48b8..00000000 --- a/src/test/resources/assets/strata/models/block/limestone_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/limestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/litchfieldite.json b/src/test/resources/assets/strata/models/block/litchfieldite.json deleted file mode 100644 index 39ae0208..00000000 --- a/src/test/resources/assets/strata/models/block/litchfieldite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/litchfieldite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/llanite.json b/src/test/resources/assets/strata/models/block/llanite.json deleted file mode 100644 index b527a99f..00000000 --- a/src/test/resources/assets/strata/models/block/llanite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/llanite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/luxullianite.json b/src/test/resources/assets/strata/models/block/luxullianite.json deleted file mode 100644 index 142d0422..00000000 --- a/src/test/resources/assets/strata/models/block/luxullianite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/luxullianite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mangerite.json b/src/test/resources/assets/strata/models/block/mangerite.json deleted file mode 100644 index eb864c08..00000000 --- a/src/test/resources/assets/strata/models/block/mangerite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/mangerite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble.json b/src/test/resources/assets/strata/models/block/marble.json deleted file mode 100644 index 3795deef..00000000 --- a/src/test/resources/assets/strata/models/block/marble.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/marble" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_brick_slab.json b/src/test/resources/assets/strata/models/block/marble_brick_slab.json deleted file mode 100644 index 312bbedc..00000000 --- a/src/test/resources/assets/strata/models/block/marble_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/marble_bricks" - "top": "strata:blocks/metamorphic_rocks/marble_bricks" - "side": "strata:blocks/metamorphic_rocks/marble_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_brick_slab_top.json b/src/test/resources/assets/strata/models/block/marble_brick_slab_top.json deleted file mode 100644 index 526048bb..00000000 --- a/src/test/resources/assets/strata/models/block/marble_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/marble_bricks" - "top": "strata:blocks/metamorphic_rocks/marble_bricks" - "side": "strata:blocks/metamorphic_rocks/marble_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_brick_stairs.json b/src/test/resources/assets/strata/models/block/marble_brick_stairs.json deleted file mode 100644 index eca6f577..00000000 --- a/src/test/resources/assets/strata/models/block/marble_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/marble_bricks" - "top": "strata:blocks/metamorphic_rocks/marble_bricks" - "side": "strata:blocks/metamorphic_rocks/marble_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/marble_brick_stairs_inner.json deleted file mode 100644 index 1f1655d8..00000000 --- a/src/test/resources/assets/strata/models/block/marble_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/marble_bricks" - "top": "strata:blocks/metamorphic_rocks/marble_bricks" - "side": "strata:blocks/metamorphic_rocks/marble_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/marble_brick_stairs_outer.json deleted file mode 100644 index 5b3e6605..00000000 --- a/src/test/resources/assets/strata/models/block/marble_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/marble_bricks" - "top": "strata:blocks/metamorphic_rocks/marble_bricks" - "side": "strata:blocks/metamorphic_rocks/marble_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/marble_brick_wall_inventory.json deleted file mode 100644 index 18b8b080..00000000 --- a/src/test/resources/assets/strata/models/block/marble_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/marble_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_brick_wall_post.json b/src/test/resources/assets/strata/models/block/marble_brick_wall_post.json deleted file mode 100644 index 39bc57ff..00000000 --- a/src/test/resources/assets/strata/models/block/marble_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/marble_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_brick_wall_side.json b/src/test/resources/assets/strata/models/block/marble_brick_wall_side.json deleted file mode 100644 index 92b84ba1..00000000 --- a/src/test/resources/assets/strata/models/block/marble_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/marble_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_bricks.json b/src/test/resources/assets/strata/models/block/marble_bricks.json deleted file mode 100644 index d178961a..00000000 --- a/src/test/resources/assets/strata/models/block/marble_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/marble_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_button.json b/src/test/resources/assets/strata/models/block/marble_button.json deleted file mode 100644 index 24978d4f..00000000 --- a/src/test/resources/assets/strata/models/block/marble_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/marble" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_button_inventory.json b/src/test/resources/assets/strata/models/block/marble_button_inventory.json deleted file mode 100644 index 271f0d94..00000000 --- a/src/test/resources/assets/strata/models/block/marble_button_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_inventory", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/marble" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_button_pressed.json b/src/test/resources/assets/strata/models/block/marble_button_pressed.json deleted file mode 100644 index 1cd7ec63..00000000 --- a/src/test/resources/assets/strata/models/block/marble_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_pressed", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/marble" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_cobblestone.json b/src/test/resources/assets/strata/models/block/marble_cobblestone.json deleted file mode 100644 index 99d8a9cd..00000000 --- a/src/test/resources/assets/strata/models/block/marble_cobblestone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/marble_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_cobblestone_slab.json b/src/test/resources/assets/strata/models/block/marble_cobblestone_slab.json deleted file mode 100644 index 6abca26a..00000000 --- a/src/test/resources/assets/strata/models/block/marble_cobblestone_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/marble_cobblestone" - "top": "strata:blocks/metamorphic_rocks/marble_cobblestone" - "side": "strata:blocks/metamorphic_rocks/marble_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_cobblestone_slab_top.json b/src/test/resources/assets/strata/models/block/marble_cobblestone_slab_top.json deleted file mode 100644 index e6070257..00000000 --- a/src/test/resources/assets/strata/models/block/marble_cobblestone_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/marble_cobblestone" - "top": "strata:blocks/metamorphic_rocks/marble_cobblestone" - "side": "strata:blocks/metamorphic_rocks/marble_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_cobblestone_stairs.json b/src/test/resources/assets/strata/models/block/marble_cobblestone_stairs.json deleted file mode 100644 index 088afff1..00000000 --- a/src/test/resources/assets/strata/models/block/marble_cobblestone_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/marble_cobblestone" - "top": "strata:blocks/metamorphic_rocks/marble_cobblestone" - "side": "strata:blocks/metamorphic_rocks/marble_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_cobblestone_stairs_inner.json b/src/test/resources/assets/strata/models/block/marble_cobblestone_stairs_inner.json deleted file mode 100644 index 088afff1..00000000 --- a/src/test/resources/assets/strata/models/block/marble_cobblestone_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/marble_cobblestone" - "top": "strata:blocks/metamorphic_rocks/marble_cobblestone" - "side": "strata:blocks/metamorphic_rocks/marble_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_cobblestone_stairs_outer.json b/src/test/resources/assets/strata/models/block/marble_cobblestone_stairs_outer.json deleted file mode 100644 index 97f54662..00000000 --- a/src/test/resources/assets/strata/models/block/marble_cobblestone_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/marble_cobblestone" - "top": "strata:blocks/metamorphic_rocks/marble_cobblestone" - "side": "strata:blocks/metamorphic_rocks/marble_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_cobblestone_wall_inventory.json b/src/test/resources/assets/strata/models/block/marble_cobblestone_wall_inventory.json deleted file mode 100644 index 7328d4a1..00000000 --- a/src/test/resources/assets/strata/models/block/marble_cobblestone_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/marble_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_cobblestone_wall_post.json b/src/test/resources/assets/strata/models/block/marble_cobblestone_wall_post.json deleted file mode 100644 index 6a60b25d..00000000 --- a/src/test/resources/assets/strata/models/block/marble_cobblestone_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/marble_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_cobblestone_wall_side.json b/src/test/resources/assets/strata/models/block/marble_cobblestone_wall_side.json deleted file mode 100644 index 9f717f71..00000000 --- a/src/test/resources/assets/strata/models/block/marble_cobblestone_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/marble_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_pressure_plate.json b/src/test/resources/assets/strata/models/block/marble_pressure_plate.json deleted file mode 100644 index 05dbeb78..00000000 --- a/src/test/resources/assets/strata/models/block/marble_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/marble" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_pressure_plate_down.json b/src/test/resources/assets/strata/models/block/marble_pressure_plate_down.json deleted file mode 100644 index 392f4b34..00000000 --- a/src/test/resources/assets/strata/models/block/marble_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_down", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/marble" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_pressure_plate_up.json b/src/test/resources/assets/strata/models/block/marble_pressure_plate_up.json deleted file mode 100644 index 05dbeb78..00000000 --- a/src/test/resources/assets/strata/models/block/marble_pressure_plate_up.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/marble" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_slab.json b/src/test/resources/assets/strata/models/block/marble_slab.json deleted file mode 100644 index ac76bdda..00000000 --- a/src/test/resources/assets/strata/models/block/marble_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/marble" - "top": "strata:blocks/metamorphic_rocks/marble" - "side": "strata:blocks/metamorphic_rocks/marble" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_slab_top.json b/src/test/resources/assets/strata/models/block/marble_slab_top.json deleted file mode 100644 index 076308ec..00000000 --- a/src/test/resources/assets/strata/models/block/marble_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/marble" - "top": "strata:blocks/metamorphic_rocks/marble" - "side": "strata:blocks/metamorphic_rocks/marble" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_stairs.json b/src/test/resources/assets/strata/models/block/marble_stairs.json deleted file mode 100644 index ac3a4d86..00000000 --- a/src/test/resources/assets/strata/models/block/marble_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/marble" - "top": "strata:blocks/metamorphic_rocks/marble" - "side": "strata:blocks/metamorphic_rocks/marble" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_stairs_inner.json b/src/test/resources/assets/strata/models/block/marble_stairs_inner.json deleted file mode 100644 index 1c612dc8..00000000 --- a/src/test/resources/assets/strata/models/block/marble_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/marble" - "top": "strata:blocks/metamorphic_rocks/marble" - "side": "strata:blocks/metamorphic_rocks/marble" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_stairs_outer.json b/src/test/resources/assets/strata/models/block/marble_stairs_outer.json deleted file mode 100644 index 18711b23..00000000 --- a/src/test/resources/assets/strata/models/block/marble_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/marble" - "top": "strata:blocks/metamorphic_rocks/marble" - "side": "strata:blocks/metamorphic_rocks/marble" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_wall_inventory.json b/src/test/resources/assets/strata/models/block/marble_wall_inventory.json deleted file mode 100644 index c80c916c..00000000 --- a/src/test/resources/assets/strata/models/block/marble_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/marble" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_wall_post.json b/src/test/resources/assets/strata/models/block/marble_wall_post.json deleted file mode 100644 index 0c46fbc5..00000000 --- a/src/test/resources/assets/strata/models/block/marble_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/marble" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marble_wall_side.json b/src/test/resources/assets/strata/models/block/marble_wall_side.json deleted file mode 100644 index d30d8366..00000000 --- a/src/test/resources/assets/strata/models/block/marble_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/marble" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/marl.json b/src/test/resources/assets/strata/models/block/marl.json deleted file mode 100644 index e9923fe4..00000000 --- a/src/test/resources/assets/strata/models/block/marl.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/marl" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/metapelite.json b/src/test/resources/assets/strata/models/block/metapelite.json deleted file mode 100644 index 78b5c5b7..00000000 --- a/src/test/resources/assets/strata/models/block/metapelite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metapelite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/metapsammite.json b/src/test/resources/assets/strata/models/block/metapsammite.json deleted file mode 100644 index 37e01cda..00000000 --- a/src/test/resources/assets/strata/models/block/metapsammite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metapsammite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/migmatite.json b/src/test/resources/assets/strata/models/block/migmatite.json deleted file mode 100644 index 5de7976d..00000000 --- a/src/test/resources/assets/strata/models/block/migmatite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/migmatite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/minette.json b/src/test/resources/assets/strata/models/block/minette.json deleted file mode 100644 index c4e693b9..00000000 --- a/src/test/resources/assets/strata/models/block/minette.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/minette" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/monzogranite.json b/src/test/resources/assets/strata/models/block/monzogranite.json deleted file mode 100644 index d2cd3a3c..00000000 --- a/src/test/resources/assets/strata/models/block/monzogranite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/monzogranite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/monzonite.json b/src/test/resources/assets/strata/models/block/monzonite.json deleted file mode 100644 index 0827bb4c..00000000 --- a/src/test/resources/assets/strata/models/block/monzonite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/monzonite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_aa_brick_slab.json b/src/test/resources/assets/strata/models/block/mossy_aa_brick_slab.json deleted file mode 100644 index 06859a9a..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_aa_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_aa_bricks" - "top": "strata:blocks/igneous_rocks/mossy_aa_bricks" - "side": "strata:blocks/igneous_rocks/mossy_aa_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_aa_brick_slab_top.json b/src/test/resources/assets/strata/models/block/mossy_aa_brick_slab_top.json deleted file mode 100644 index f1e15011..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_aa_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_aa_bricks" - "top": "strata:blocks/igneous_rocks/mossy_aa_bricks" - "side": "strata:blocks/igneous_rocks/mossy_aa_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_aa_brick_stairs.json b/src/test/resources/assets/strata/models/block/mossy_aa_brick_stairs.json deleted file mode 100644 index 185f1046..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_aa_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_aa_bricks" - "top": "strata:blocks/igneous_rocks/mossy_aa_bricks" - "side": "strata:blocks/igneous_rocks/mossy_aa_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_aa_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/mossy_aa_brick_stairs_inner.json deleted file mode 100644 index 185f1046..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_aa_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_aa_bricks" - "top": "strata:blocks/igneous_rocks/mossy_aa_bricks" - "side": "strata:blocks/igneous_rocks/mossy_aa_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_aa_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/mossy_aa_brick_stairs_outer.json deleted file mode 100644 index 8b56ea85..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_aa_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_aa_bricks" - "top": "strata:blocks/igneous_rocks/mossy_aa_bricks" - "side": "strata:blocks/igneous_rocks/mossy_aa_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_aa_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/mossy_aa_brick_wall_inventory.json deleted file mode 100644 index 9da9a3e5..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_aa_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/igneous_rocks/mossy_aa_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_aa_brick_wall_post.json b/src/test/resources/assets/strata/models/block/mossy_aa_brick_wall_post.json deleted file mode 100644 index 30be46a9..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_aa_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/igneous_rocks/mossy_aa_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_aa_brick_wall_side.json b/src/test/resources/assets/strata/models/block/mossy_aa_brick_wall_side.json deleted file mode 100644 index a41918f4..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_aa_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/igneous_rocks/mossy_aa_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_aa_bricks.json b/src/test/resources/assets/strata/models/block/mossy_aa_bricks.json deleted file mode 100644 index f2ec46d9..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_aa_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/mossy_aa_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone.json b/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone.json deleted file mode 100644 index 5bdc29c2..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/mossy_aa_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone_slab.json b/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone_slab.json deleted file mode 100644 index 5dd6cc0a..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_aa_cobblestone" - "top": "strata:blocks/igneous_rocks/mossy_aa_cobblestone" - "side": "strata:blocks/igneous_rocks/mossy_aa_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone_slab_top.json b/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone_slab_top.json deleted file mode 100644 index 9fa5cd2a..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_aa_cobblestone" - "top": "strata:blocks/igneous_rocks/mossy_aa_cobblestone" - "side": "strata:blocks/igneous_rocks/mossy_aa_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone_stairs.json b/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone_stairs.json deleted file mode 100644 index 16eacd52..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_aa_cobblestone" - "top": "strata:blocks/igneous_rocks/mossy_aa_cobblestone" - "side": "strata:blocks/igneous_rocks/mossy_aa_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone_stairs_inner.json b/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone_stairs_inner.json deleted file mode 100644 index 16eacd52..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_aa_cobblestone" - "top": "strata:blocks/igneous_rocks/mossy_aa_cobblestone" - "side": "strata:blocks/igneous_rocks/mossy_aa_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone_stairs_outer.json b/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone_stairs_outer.json deleted file mode 100644 index b1d6703b..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_aa_cobblestone" - "top": "strata:blocks/igneous_rocks/mossy_aa_cobblestone" - "side": "strata:blocks/igneous_rocks/mossy_aa_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone_wall_inventory.json b/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone_wall_inventory.json deleted file mode 100644 index b11b09e5..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/igneous_rocks/mossy_aa_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone_wall_post.json b/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone_wall_post.json deleted file mode 100644 index a159cef9..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/igneous_rocks/mossy_aa_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone_wall_side.json b/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone_wall_side.json deleted file mode 100644 index 551a1455..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_aa_cobblestone_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/igneous_rocks/mossy_aa_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_adakite_brick_slab.json b/src/test/resources/assets/strata/models/block/mossy_adakite_brick_slab.json deleted file mode 100644 index 1fb64f1e..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_adakite_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_adakite_bricks" - "top": "strata:blocks/igneous_rocks/mossy_adakite_bricks" - "side": "strata:blocks/igneous_rocks/mossy_adakite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_adakite_brick_slab_top.json b/src/test/resources/assets/strata/models/block/mossy_adakite_brick_slab_top.json deleted file mode 100644 index 3f40494f..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_adakite_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_adakite_bricks" - "top": "strata:blocks/igneous_rocks/mossy_adakite_bricks" - "side": "strata:blocks/igneous_rocks/mossy_adakite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_adakite_brick_stairs.json b/src/test/resources/assets/strata/models/block/mossy_adakite_brick_stairs.json deleted file mode 100644 index b14e4042..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_adakite_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_adakite_bricks" - "top": "strata:blocks/igneous_rocks/mossy_adakite_bricks" - "side": "strata:blocks/igneous_rocks/mossy_adakite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_adakite_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/mossy_adakite_brick_stairs_inner.json deleted file mode 100644 index b14e4042..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_adakite_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_adakite_bricks" - "top": "strata:blocks/igneous_rocks/mossy_adakite_bricks" - "side": "strata:blocks/igneous_rocks/mossy_adakite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_adakite_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/mossy_adakite_brick_stairs_outer.json deleted file mode 100644 index 8a8b55bc..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_adakite_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_adakite_bricks" - "top": "strata:blocks/igneous_rocks/mossy_adakite_bricks" - "side": "strata:blocks/igneous_rocks/mossy_adakite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_adakite_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/mossy_adakite_brick_wall_inventory.json deleted file mode 100644 index a8b5d2bc..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_adakite_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/igneous_rocks/mossy_adakite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_adakite_brick_wall_post.json b/src/test/resources/assets/strata/models/block/mossy_adakite_brick_wall_post.json deleted file mode 100644 index 6bb6ab25..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_adakite_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/igneous_rocks/mossy_adakite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_adakite_brick_wall_side.json b/src/test/resources/assets/strata/models/block/mossy_adakite_brick_wall_side.json deleted file mode 100644 index 7f597957..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_adakite_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/igneous_rocks/mossy_adakite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_adakite_bricks.json b/src/test/resources/assets/strata/models/block/mossy_adakite_bricks.json deleted file mode 100644 index 7d5b3c56..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_adakite_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/mossy_adakite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone.json b/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone.json deleted file mode 100644 index 7833fc47..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/mossy_adakite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone_slab.json b/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone_slab.json deleted file mode 100644 index 95a9241a..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_adakite_cobblestone" - "top": "strata:blocks/igneous_rocks/mossy_adakite_cobblestone" - "side": "strata:blocks/igneous_rocks/mossy_adakite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone_slab_top.json b/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone_slab_top.json deleted file mode 100644 index 4fde63e4..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_adakite_cobblestone" - "top": "strata:blocks/igneous_rocks/mossy_adakite_cobblestone" - "side": "strata:blocks/igneous_rocks/mossy_adakite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone_stairs.json b/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone_stairs.json deleted file mode 100644 index a4c7955b..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_adakite_cobblestone" - "top": "strata:blocks/igneous_rocks/mossy_adakite_cobblestone" - "side": "strata:blocks/igneous_rocks/mossy_adakite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone_stairs_inner.json b/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone_stairs_inner.json deleted file mode 100644 index a4c7955b..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_adakite_cobblestone" - "top": "strata:blocks/igneous_rocks/mossy_adakite_cobblestone" - "side": "strata:blocks/igneous_rocks/mossy_adakite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone_stairs_outer.json b/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone_stairs_outer.json deleted file mode 100644 index 1a3352cb..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_adakite_cobblestone" - "top": "strata:blocks/igneous_rocks/mossy_adakite_cobblestone" - "side": "strata:blocks/igneous_rocks/mossy_adakite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone_wall_inventory.json b/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone_wall_inventory.json deleted file mode 100644 index a4e5ffee..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/igneous_rocks/mossy_adakite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone_wall_post.json b/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone_wall_post.json deleted file mode 100644 index f4ace1e7..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/igneous_rocks/mossy_adakite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone_wall_side.json b/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone_wall_side.json deleted file mode 100644 index 46ee2ac8..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_adakite_cobblestone_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/igneous_rocks/mossy_adakite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_amphibolite_brick_slab.json b/src/test/resources/assets/strata/models/block/mossy_amphibolite_brick_slab.json deleted file mode 100644 index a65879ed..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_amphibolite_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_amphibolite_bricks", - "top": "strata:blocks/metamorphic_rocks/mossy_amphibolite_bricks", - "side": "strata:blocks/metamorphic_rocks/mossy_amphibolite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_amphibolite_brick_slab_top.json b/src/test/resources/assets/strata/models/block/mossy_amphibolite_brick_slab_top.json deleted file mode 100644 index e8b1158d..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_amphibolite_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_amphibolite_bricks", - "top": "strata:blocks/metamorphic_rocks/mossy_amphibolite_bricks", - "side": "strata:blocks/metamorphic_rocks/mossy_amphibolite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_amphibolite_brick_stairs.json b/src/test/resources/assets/strata/models/block/mossy_amphibolite_brick_stairs.json deleted file mode 100644 index f89a5759..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_amphibolite_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_amphibolite_bricks", - "top": "strata:blocks/metamorphic_rocks/mossy_amphibolite_bricks", - "side": "strata:blocks/metamorphic_rocks/mossy_amphibolite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_amphibolite_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/mossy_amphibolite_brick_stairs_inner.json deleted file mode 100644 index c9fce65a..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_amphibolite_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_amphibolite_bricks", - "top": "strata:blocks/metamorphic_rocks/mossy_amphibolite_bricks", - "side": "strata:blocks/metamorphic_rocks/mossy_amphibolite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_amphibolite_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/mossy_amphibolite_brick_stairs_outer.json deleted file mode 100644 index 069e55c5..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_amphibolite_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_amphibolite_bricks", - "top": "strata:blocks/metamorphic_rocks/mossy_amphibolite_bricks", - "side": "strata:blocks/metamorphic_rocks/mossy_amphibolite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_amphibolite_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/mossy_amphibolite_brick_wall_inventory.json deleted file mode 100644 index 0ef2fe8f..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_amphibolite_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/mossy_amphibolite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_amphibolite_brick_wall_post.json b/src/test/resources/assets/strata/models/block/mossy_amphibolite_brick_wall_post.json deleted file mode 100644 index 4c8c8c44..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_amphibolite_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/mossy_amphibolite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_amphibolite_brick_wall_side.json b/src/test/resources/assets/strata/models/block/mossy_amphibolite_brick_wall_side.json deleted file mode 100644 index 8c9c3cf4..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_amphibolite_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/mossy_amphibolite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_amphibolite_bricks.json b/src/test/resources/assets/strata/models/block/mossy_amphibolite_bricks.json deleted file mode 100644 index 172f45a6..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_amphibolite_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/mossy_amphibolite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_argillite_brick_slab.json b/src/test/resources/assets/strata/models/block/mossy_argillite_brick_slab.json deleted file mode 100644 index b61b965c..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_argillite_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_argillite_bricks" - "top": "strata:blocks/sedimentary_rocks/mossy_argillite_bricks" - "side": "strata:blocks/sedimentary_rocks/mossy_argillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_argillite_brick_slab_top.json b/src/test/resources/assets/strata/models/block/mossy_argillite_brick_slab_top.json deleted file mode 100644 index 048de5eb..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_argillite_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_argillite_bricks" - "top": "strata:blocks/sedimentary_rocks/mossy_argillite_bricks" - "side": "strata:blocks/sedimentary_rocks/mossy_argillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_argillite_brick_stairs.json b/src/test/resources/assets/strata/models/block/mossy_argillite_brick_stairs.json deleted file mode 100644 index 2295b1e1..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_argillite_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_argillite_bricks" - "top": "strata:blocks/sedimentary_rocks/mossy_argillite_bricks" - "side": "strata:blocks/sedimentary_rocks/mossy_argillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_argillite_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/mossy_argillite_brick_stairs_inner.json deleted file mode 100644 index 2295b1e1..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_argillite_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_argillite_bricks" - "top": "strata:blocks/sedimentary_rocks/mossy_argillite_bricks" - "side": "strata:blocks/sedimentary_rocks/mossy_argillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_argillite_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/mossy_argillite_brick_stairs_outer.json deleted file mode 100644 index 298acf09..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_argillite_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_argillite_bricks" - "top": "strata:blocks/sedimentary_rocks/mossy_argillite_bricks" - "side": "strata:blocks/sedimentary_rocks/mossy_argillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_argillite_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/mossy_argillite_brick_wall_inventory.json deleted file mode 100644 index 3e7eda34..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_argillite_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/mossy_argillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_argillite_brick_wall_post.json b/src/test/resources/assets/strata/models/block/mossy_argillite_brick_wall_post.json deleted file mode 100644 index fe8275ae..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_argillite_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/mossy_argillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_argillite_brick_wall_side.json b/src/test/resources/assets/strata/models/block/mossy_argillite_brick_wall_side.json deleted file mode 100644 index dfc34613..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_argillite_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/mossy_argillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_argillite_bricks.json b/src/test/resources/assets/strata/models/block/mossy_argillite_bricks.json deleted file mode 100644 index 57884562..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_argillite_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/mossy_argillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone.json b/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone.json deleted file mode 100644 index 9f19fefc..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/mossy_argillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone_slab.json b/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone_slab.json deleted file mode 100644 index 27118433..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_argillite_cobblestone" - "top": "strata:blocks/sedimentary_rocks/mossy_argillite_cobblestone" - "side": "strata:blocks/sedimentary_rocks/mossy_argillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone_slab_top.json b/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone_slab_top.json deleted file mode 100644 index 3321723f..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_argillite_cobblestone" - "top": "strata:blocks/sedimentary_rocks/mossy_argillite_cobblestone" - "side": "strata:blocks/sedimentary_rocks/mossy_argillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone_stairs.json b/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone_stairs.json deleted file mode 100644 index 11065d67..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_argillite_cobblestone" - "top": "strata:blocks/sedimentary_rocks/mossy_argillite_cobblestone" - "side": "strata:blocks/sedimentary_rocks/mossy_argillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone_stairs_inner.json b/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone_stairs_inner.json deleted file mode 100644 index 11065d67..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_argillite_cobblestone" - "top": "strata:blocks/sedimentary_rocks/mossy_argillite_cobblestone" - "side": "strata:blocks/sedimentary_rocks/mossy_argillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone_stairs_outer.json b/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone_stairs_outer.json deleted file mode 100644 index b9aed9dd..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_argillite_cobblestone" - "top": "strata:blocks/sedimentary_rocks/mossy_argillite_cobblestone" - "side": "strata:blocks/sedimentary_rocks/mossy_argillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone_wall_inventory.json b/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone_wall_inventory.json deleted file mode 100644 index 8b219a0f..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/mossy_argillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone_wall_post.json b/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone_wall_post.json deleted file mode 100644 index 2229c342..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/mossy_argillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone_wall_side.json b/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone_wall_side.json deleted file mode 100644 index eaec1020..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_argillite_cobblestone_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/mossy_argillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_basalt_brick_slab.json b/src/test/resources/assets/strata/models/block/mossy_basalt_brick_slab.json deleted file mode 100644 index 04fda037..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_basalt_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_basalt_bricks", - "top": "strata:blocks/igneous_rocks/mossy_basalt_bricks", - "side": "strata:blocks/igneous_rocks/mossy_basalt_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_basalt_brick_slab_top.json b/src/test/resources/assets/strata/models/block/mossy_basalt_brick_slab_top.json deleted file mode 100644 index a3e1ce0f..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_basalt_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_basalt_bricks", - "top": "strata:blocks/igneous_rocks/mossy_basalt_bricks", - "side": "strata:blocks/igneous_rocks/mossy_basalt_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_basalt_brick_stairs.json b/src/test/resources/assets/strata/models/block/mossy_basalt_brick_stairs.json deleted file mode 100644 index 4e485618..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_basalt_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_basalt_bricks", - "top": "strata:blocks/igneous_rocks/mossy_basalt_bricks", - "side": "strata:blocks/igneous_rocks/mossy_basalt_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_basalt_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/mossy_basalt_brick_stairs_inner.json deleted file mode 100644 index 0f3ff06c..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_basalt_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_basalt_bricks", - "top": "strata:blocks/igneous_rocks/mossy_basalt_bricks", - "side": "strata:blocks/igneous_rocks/mossy_basalt_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_basalt_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/mossy_basalt_brick_stairs_outer.json deleted file mode 100644 index bd44f911..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_basalt_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_basalt_bricks", - "top": "strata:blocks/igneous_rocks/mossy_basalt_bricks", - "side": "strata:blocks/igneous_rocks/mossy_basalt_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_basalt_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/mossy_basalt_brick_wall_inventory.json deleted file mode 100644 index e2501b2c..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_basalt_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/igneous_rocks/mossy_basalt_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_basalt_brick_wall_post.json b/src/test/resources/assets/strata/models/block/mossy_basalt_brick_wall_post.json deleted file mode 100644 index 6e7d615b..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_basalt_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "strata:blocks/igneous_rocks/mossy_basalt_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_basalt_brick_wall_side.json b/src/test/resources/assets/strata/models/block/mossy_basalt_brick_wall_side.json deleted file mode 100644 index e70e5da2..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_basalt_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "strata:blocks/igneous_rocks/mossy_basalt_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_basalt_bricks.json b/src/test/resources/assets/strata/models/block/mossy_basalt_bricks.json deleted file mode 100644 index 7807f02b..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_basalt_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/mossy_basalt_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_basalt_gabbro_slab.json b/src/test/resources/assets/strata/models/block/mossy_basalt_gabbro_slab.json deleted file mode 100644 index 382cb88c..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_basalt_gabbro_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_gabbro_bricks", - "top": "strata:blocks/igneous_rocks/mossy_gabbro_bricks", - "side": "strata:blocks/igneous_rocks/mossy_gabbro_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_chalk_brick_slab.json b/src/test/resources/assets/strata/models/block/mossy_chalk_brick_slab.json deleted file mode 100644 index d814bcb3..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_chalk_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_chalk_bricks" - "top": "strata:blocks/sedimentary_rocks/mossy_chalk_bricks" - "side": "strata:blocks/sedimentary_rocks/mossy_chalk_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_chalk_brick_slab_top.json b/src/test/resources/assets/strata/models/block/mossy_chalk_brick_slab_top.json deleted file mode 100644 index dd95a4c8..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_chalk_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_chalk_bricks" - "top": "strata:blocks/sedimentary_rocks/mossy_chalk_bricks" - "side": "strata:blocks/sedimentary_rocks/mossy_chalk_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_chalk_brick_stairs.json b/src/test/resources/assets/strata/models/block/mossy_chalk_brick_stairs.json deleted file mode 100644 index 1b7cf966..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_chalk_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_chalk_bricks" - "top": "strata:blocks/sedimentary_rocks/mossy_chalk_bricks" - "side": "strata:blocks/sedimentary_rocks/mossy_chalk_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_chalk_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/mossy_chalk_brick_stairs_inner.json deleted file mode 100644 index 1b7cf966..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_chalk_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_chalk_bricks" - "top": "strata:blocks/sedimentary_rocks/mossy_chalk_bricks" - "side": "strata:blocks/sedimentary_rocks/mossy_chalk_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_chalk_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/mossy_chalk_brick_stairs_outer.json deleted file mode 100644 index 18c124d8..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_chalk_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_chalk_bricks" - "top": "strata:blocks/sedimentary_rocks/mossy_chalk_bricks" - "side": "strata:blocks/sedimentary_rocks/mossy_chalk_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_chalk_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/mossy_chalk_brick_wall_inventory.json deleted file mode 100644 index f70951e8..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_chalk_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/mossy_chalk_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_chalk_brick_wall_post.json b/src/test/resources/assets/strata/models/block/mossy_chalk_brick_wall_post.json deleted file mode 100644 index 163fdbbf..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_chalk_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/mossy_chalk_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_chalk_brick_wall_side.json b/src/test/resources/assets/strata/models/block/mossy_chalk_brick_wall_side.json deleted file mode 100644 index e05263d3..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_chalk_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/mossy_chalk_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_chalk_bricks.json b/src/test/resources/assets/strata/models/block/mossy_chalk_bricks.json deleted file mode 100644 index 2897bfd7..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_chalk_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/mossy_chalk_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone.json b/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone.json deleted file mode 100644 index 07a3a6f8..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/mossy_chalk_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone_slab.json b/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone_slab.json deleted file mode 100644 index b30b4c61..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_chalk_cobblestone" - "top": "strata:blocks/sedimentary_rocks/mossy_chalk_cobblestone" - "side": "strata:blocks/sedimentary_rocks/mossy_chalk_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone_slab_top.json b/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone_slab_top.json deleted file mode 100644 index 4f7acc0d..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_chalk_cobblestone" - "top": "strata:blocks/sedimentary_rocks/mossy_chalk_cobblestone" - "side": "strata:blocks/sedimentary_rocks/mossy_chalk_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone_stairs.json b/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone_stairs.json deleted file mode 100644 index cd70ba76..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_chalk_cobblestone" - "top": "strata:blocks/sedimentary_rocks/mossy_chalk_cobblestone" - "side": "strata:blocks/sedimentary_rocks/mossy_chalk_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone_stairs_inner.json b/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone_stairs_inner.json deleted file mode 100644 index cd70ba76..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_chalk_cobblestone" - "top": "strata:blocks/sedimentary_rocks/mossy_chalk_cobblestone" - "side": "strata:blocks/sedimentary_rocks/mossy_chalk_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone_stairs_outer.json b/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone_stairs_outer.json deleted file mode 100644 index 28ae0643..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_chalk_cobblestone" - "top": "strata:blocks/sedimentary_rocks/mossy_chalk_cobblestone" - "side": "strata:blocks/sedimentary_rocks/mossy_chalk_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone_wall_inventory.json b/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone_wall_inventory.json deleted file mode 100644 index daf354b2..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/mossy_chalk_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone_wall_post.json b/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone_wall_post.json deleted file mode 100644 index bd9bb1e9..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/mossy_chalk_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone_wall_side.json b/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone_wall_side.json deleted file mode 100644 index f6c07276..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_chalk_cobblestone_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/mossy_chalk_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_eclogite_brick_slab.json b/src/test/resources/assets/strata/models/block/mossy_eclogite_brick_slab.json deleted file mode 100644 index 375bc8b2..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_eclogite_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_eclogite_bricks" - "top": "strata:blocks/metamorphic_rocks/mossy_eclogite_bricks" - "side": "strata:blocks/metamorphic_rocks/mossy_eclogite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_eclogite_brick_slab_top.json b/src/test/resources/assets/strata/models/block/mossy_eclogite_brick_slab_top.json deleted file mode 100644 index 304b8efc..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_eclogite_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_eclogite_bricks" - "top": "strata:blocks/metamorphic_rocks/mossy_eclogite_bricks" - "side": "strata:blocks/metamorphic_rocks/mossy_eclogite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_eclogite_brick_stairs.json b/src/test/resources/assets/strata/models/block/mossy_eclogite_brick_stairs.json deleted file mode 100644 index 9e5ee713..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_eclogite_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_eclogite_bricks" - "top": "strata:blocks/metamorphic_rocks/mossy_eclogite_bricks" - "side": "strata:blocks/metamorphic_rocks/mossy_eclogite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_eclogite_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/mossy_eclogite_brick_stairs_inner.json deleted file mode 100644 index 9e5ee713..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_eclogite_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_eclogite_bricks" - "top": "strata:blocks/metamorphic_rocks/mossy_eclogite_bricks" - "side": "strata:blocks/metamorphic_rocks/mossy_eclogite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_eclogite_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/mossy_eclogite_brick_stairs_outer.json deleted file mode 100644 index e6935bc6..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_eclogite_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_eclogite_bricks" - "top": "strata:blocks/metamorphic_rocks/mossy_eclogite_bricks" - "side": "strata:blocks/metamorphic_rocks/mossy_eclogite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_eclogite_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/mossy_eclogite_brick_wall_inventory.json deleted file mode 100644 index 2d7749f0..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_eclogite_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/mossy_eclogite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_eclogite_brick_wall_post.json b/src/test/resources/assets/strata/models/block/mossy_eclogite_brick_wall_post.json deleted file mode 100644 index 6546dc1f..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_eclogite_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/mossy_eclogite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_eclogite_brick_wall_side.json b/src/test/resources/assets/strata/models/block/mossy_eclogite_brick_wall_side.json deleted file mode 100644 index 831c45e6..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_eclogite_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/mossy_eclogite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_eclogite_bricks.json b/src/test/resources/assets/strata/models/block/mossy_eclogite_bricks.json deleted file mode 100644 index 1f6cb93c..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_eclogite_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/mossy_eclogite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone.json b/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone.json deleted file mode 100644 index f8f1ee25..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/mossy_eclogite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone_slab.json b/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone_slab.json deleted file mode 100644 index 402d6f3e..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_eclogite_cobblestone" - "top": "strata:blocks/metamorphic_rocks/mossy_eclogite_cobblestone" - "side": "strata:blocks/metamorphic_rocks/mossy_eclogite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone_slab_top.json b/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone_slab_top.json deleted file mode 100644 index 409a39d1..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_eclogite_cobblestone" - "top": "strata:blocks/metamorphic_rocks/mossy_eclogite_cobblestone" - "side": "strata:blocks/metamorphic_rocks/mossy_eclogite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone_stairs.json b/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone_stairs.json deleted file mode 100644 index fc70b2b2..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_eclogite_cobblestone" - "top": "strata:blocks/metamorphic_rocks/mossy_eclogite_cobblestone" - "side": "strata:blocks/metamorphic_rocks/mossy_eclogite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone_stairs_inner.json b/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone_stairs_inner.json deleted file mode 100644 index fc70b2b2..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_eclogite_cobblestone" - "top": "strata:blocks/metamorphic_rocks/mossy_eclogite_cobblestone" - "side": "strata:blocks/metamorphic_rocks/mossy_eclogite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone_stairs_outer.json b/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone_stairs_outer.json deleted file mode 100644 index e689efb1..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_eclogite_cobblestone" - "top": "strata:blocks/metamorphic_rocks/mossy_eclogite_cobblestone" - "side": "strata:blocks/metamorphic_rocks/mossy_eclogite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone_wall_inventory.json b/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone_wall_inventory.json deleted file mode 100644 index 0095a0f1..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/mossy_eclogite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone_wall_post.json b/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone_wall_post.json deleted file mode 100644 index 71e3270a..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/mossy_eclogite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone_wall_side.json b/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone_wall_side.json deleted file mode 100644 index beb6e904..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_eclogite_cobblestone_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/mossy_eclogite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_gabbro_brick_slab.json b/src/test/resources/assets/strata/models/block/mossy_gabbro_brick_slab.json deleted file mode 100644 index 382cb88c..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_gabbro_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_gabbro_bricks", - "top": "strata:blocks/igneous_rocks/mossy_gabbro_bricks", - "side": "strata:blocks/igneous_rocks/mossy_gabbro_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_gabbro_brick_slab_top.json b/src/test/resources/assets/strata/models/block/mossy_gabbro_brick_slab_top.json deleted file mode 100644 index fb2b8431..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_gabbro_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_gabbro_bricks", - "top": "strata:blocks/igneous_rocks/mossy_gabbro_bricks", - "side": "strata:blocks/igneous_rocks/mossy_gabbro_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_gabbro_brick_stairs.json b/src/test/resources/assets/strata/models/block/mossy_gabbro_brick_stairs.json deleted file mode 100644 index 72b4fe15..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_gabbro_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_gabbro_bricks", - "top": "strata:blocks/igneous_rocks/mossy_gabbro_bricks", - "side": "strata:blocks/igneous_rocks/mossy_gabbro_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_gabbro_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/mossy_gabbro_brick_stairs_inner.json deleted file mode 100644 index 185359e3..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_gabbro_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_gabbro_bricks", - "top": "strata:blocks/igneous_rocks/mossy_gabbro_bricks", - "side": "strata:blocks/igneous_rocks/mossy_gabbro_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_gabbro_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/mossy_gabbro_brick_stairs_outer.json deleted file mode 100644 index d0a1ef7c..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_gabbro_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_gabbro_bricks", - "top": "strata:blocks/igneous_rocks/mossy_gabbro_bricks", - "side": "strata:blocks/igneous_rocks/mossy_gabbro_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_gabbro_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/mossy_gabbro_brick_wall_inventory.json deleted file mode 100644 index 089a92cc..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_gabbro_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/igneous_rocks/mossy_gabbro_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_gabbro_brick_wall_post.json b/src/test/resources/assets/strata/models/block/mossy_gabbro_brick_wall_post.json deleted file mode 100644 index 76d71f2c..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_gabbro_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "strata:blocks/igneous_rocks/mossy_gabbro_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_gabbro_brick_wall_side.json b/src/test/resources/assets/strata/models/block/mossy_gabbro_brick_wall_side.json deleted file mode 100644 index 2b481332..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_gabbro_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "strata:blocks/igneous_rocks/mossy_gabbro_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_gabbro_bricks.json b/src/test/resources/assets/strata/models/block/mossy_gabbro_bricks.json deleted file mode 100644 index 913127b8..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_gabbro_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/mossy_gabbro_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_gneiss_brick_slab.json b/src/test/resources/assets/strata/models/block/mossy_gneiss_brick_slab.json deleted file mode 100644 index a4d095c2..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_gneiss_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_gneiss_bricks", - "top": "strata:blocks/metamorphic_rocks/mossy_gneiss_bricks", - "side": "strata:blocks/metamorphic_rocks/mossy_gneiss_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_gneiss_brick_slab_top.json b/src/test/resources/assets/strata/models/block/mossy_gneiss_brick_slab_top.json deleted file mode 100644 index 41f6633e..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_gneiss_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_gneiss_bricks", - "top": "strata:blocks/metamorphic_rocks/mossy_gneiss_bricks", - "side": "strata:blocks/metamorphic_rocks/mossy_gneiss_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_gneiss_brick_stairs.json b/src/test/resources/assets/strata/models/block/mossy_gneiss_brick_stairs.json deleted file mode 100644 index c47d66be..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_gneiss_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_gneiss_bricks", - "top": "strata:blocks/metamorphic_rocks/mossy_gneiss_bricks", - "side": "strata:blocks/metamorphic_rocks/mossy_gneiss_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_gneiss_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/mossy_gneiss_brick_stairs_inner.json deleted file mode 100644 index 235381a5..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_gneiss_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_gneiss_bricks", - "top": "strata:blocks/metamorphic_rocks/mossy_gneiss_bricks", - "side": "strata:blocks/metamorphic_rocks/mossy_gneiss_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_gneiss_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/mossy_gneiss_brick_stairs_outer.json deleted file mode 100644 index a7afa3a7..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_gneiss_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_gneiss_bricks", - "top": "strata:blocks/metamorphic_rocks/mossy_gneiss_bricks", - "side": "strata:blocks/metamorphic_rocks/mossy_gneiss_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_gneiss_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/mossy_gneiss_brick_wall_inventory.json deleted file mode 100644 index a0b83220..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_gneiss_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/mossy_gneiss_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_gneiss_brick_wall_post.json b/src/test/resources/assets/strata/models/block/mossy_gneiss_brick_wall_post.json deleted file mode 100644 index 7f8ad482..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_gneiss_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/mossy_gneiss_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_gneiss_brick_wall_side.json b/src/test/resources/assets/strata/models/block/mossy_gneiss_brick_wall_side.json deleted file mode 100644 index e0a11c7e..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_gneiss_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/mossy_gneiss_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_gneiss_bricks.json b/src/test/resources/assets/strata/models/block/mossy_gneiss_bricks.json deleted file mode 100644 index a8a48f23..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_gneiss_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/mossy_gneiss_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_jaspillite_brick_slab.json b/src/test/resources/assets/strata/models/block/mossy_jaspillite_brick_slab.json deleted file mode 100644 index 45cda959..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_jaspillite_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_jaspillite_bricks" - "top": "strata:blocks/sedimentary_rocks/mossy_jaspillite_bricks" - "side": "strata:blocks/sedimentary_rocks/mossy_jaspillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_jaspillite_brick_slab_top.json b/src/test/resources/assets/strata/models/block/mossy_jaspillite_brick_slab_top.json deleted file mode 100644 index 35b0e456..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_jaspillite_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_jaspillite_bricks" - "top": "strata:blocks/sedimentary_rocks/mossy_jaspillite_bricks" - "side": "strata:blocks/sedimentary_rocks/mossy_jaspillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_jaspillite_brick_stairs.json b/src/test/resources/assets/strata/models/block/mossy_jaspillite_brick_stairs.json deleted file mode 100644 index 4b8f3bee..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_jaspillite_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_jaspillite_bricks" - "top": "strata:blocks/sedimentary_rocks/mossy_jaspillite_bricks" - "side": "strata:blocks/sedimentary_rocks/mossy_jaspillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_jaspillite_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/mossy_jaspillite_brick_stairs_inner.json deleted file mode 100644 index 4b8f3bee..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_jaspillite_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_jaspillite_bricks" - "top": "strata:blocks/sedimentary_rocks/mossy_jaspillite_bricks" - "side": "strata:blocks/sedimentary_rocks/mossy_jaspillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_jaspillite_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/mossy_jaspillite_brick_stairs_outer.json deleted file mode 100644 index aee55792..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_jaspillite_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_jaspillite_bricks" - "top": "strata:blocks/sedimentary_rocks/mossy_jaspillite_bricks" - "side": "strata:blocks/sedimentary_rocks/mossy_jaspillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_jaspillite_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/mossy_jaspillite_brick_wall_inventory.json deleted file mode 100644 index 4c6edf18..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_jaspillite_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/mossy_jaspillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_jaspillite_brick_wall_post.json b/src/test/resources/assets/strata/models/block/mossy_jaspillite_brick_wall_post.json deleted file mode 100644 index 303ec3ca..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_jaspillite_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/mossy_jaspillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_jaspillite_brick_wall_side.json b/src/test/resources/assets/strata/models/block/mossy_jaspillite_brick_wall_side.json deleted file mode 100644 index 2e5d3ae1..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_jaspillite_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/mossy_jaspillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_jaspillite_bricks.json b/src/test/resources/assets/strata/models/block/mossy_jaspillite_bricks.json deleted file mode 100644 index a747a857..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_jaspillite_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/mossy_jaspillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone.json b/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone.json deleted file mode 100644 index 9a583cc4..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/mossy_jaspillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_slab.json b/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_slab.json deleted file mode 100644 index f33a59ba..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_jaspillite_cobblestone" - "top": "strata:blocks/sedimentary_rocks/mossy_jaspillite_cobblestone" - "side": "strata:blocks/sedimentary_rocks/mossy_jaspillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_slab_top.json b/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_slab_top.json deleted file mode 100644 index de43d35f..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_jaspillite_cobblestone" - "top": "strata:blocks/sedimentary_rocks/mossy_jaspillite_cobblestone" - "side": "strata:blocks/sedimentary_rocks/mossy_jaspillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_stairs.json b/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_stairs.json deleted file mode 100644 index 92a04f58..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_jaspillite_cobblestone" - "top": "strata:blocks/sedimentary_rocks/mossy_jaspillite_cobblestone" - "side": "strata:blocks/sedimentary_rocks/mossy_jaspillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_stairs_inner.json b/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_stairs_inner.json deleted file mode 100644 index 92a04f58..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_jaspillite_cobblestone" - "top": "strata:blocks/sedimentary_rocks/mossy_jaspillite_cobblestone" - "side": "strata:blocks/sedimentary_rocks/mossy_jaspillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_stairs_outer.json b/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_stairs_outer.json deleted file mode 100644 index bdd25fb1..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_jaspillite_cobblestone" - "top": "strata:blocks/sedimentary_rocks/mossy_jaspillite_cobblestone" - "side": "strata:blocks/sedimentary_rocks/mossy_jaspillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_wall_inventory.json b/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_wall_inventory.json deleted file mode 100644 index 252a55fb..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/mossy_jaspillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_wall_post.json b/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_wall_post.json deleted file mode 100644 index 6772134f..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/mossy_jaspillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_wall_side.json b/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_wall_side.json deleted file mode 100644 index 49d31464..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_jaspillite_cobblestone_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/mossy_jaspillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_limestone_brick_slab.json b/src/test/resources/assets/strata/models/block/mossy_limestone_brick_slab.json deleted file mode 100644 index 288f6955..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_limestone_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_limestone_bricks", - "top": "strata:blocks/sedimentary_rocks/mossy_limestone_bricks", - "side": "strata:blocks/sedimentary_rocks/mossy_limestone_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_limestone_brick_slab_top.json b/src/test/resources/assets/strata/models/block/mossy_limestone_brick_slab_top.json deleted file mode 100644 index 9674c345..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_limestone_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_limestone_bricks", - "top": "strata:blocks/sedimentary_rocks/mossy_limestone_bricks", - "side": "strata:blocks/sedimentary_rocks/mossy_limestone_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_limestone_brick_stairs.json b/src/test/resources/assets/strata/models/block/mossy_limestone_brick_stairs.json deleted file mode 100644 index a0b0ea53..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_limestone_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_limestone_bricks", - "top": "strata:blocks/sedimentary_rocks/mossy_limestone_bricks", - "side": "strata:blocks/sedimentary_rocks/mossy_limestone_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_limestone_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/mossy_limestone_brick_stairs_inner.json deleted file mode 100644 index b19c22d5..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_limestone_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_limestone_bricks", - "top": "strata:blocks/sedimentary_rocks/mossy_limestone_bricks", - "side": "strata:blocks/sedimentary_rocks/mossy_limestone_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_limestone_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/mossy_limestone_brick_stairs_outer.json deleted file mode 100644 index 291f7316..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_limestone_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_limestone_bricks", - "top": "strata:blocks/sedimentary_rocks/mossy_limestone_bricks", - "side": "strata:blocks/sedimentary_rocks/mossy_limestone_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_limestone_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/mossy_limestone_brick_wall_inventory.json deleted file mode 100644 index 525ae54c..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_limestone_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/mossy_limestone_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_limestone_brick_wall_post.json b/src/test/resources/assets/strata/models/block/mossy_limestone_brick_wall_post.json deleted file mode 100644 index b4392d2d..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_limestone_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/mossy_limestone_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_limestone_brick_wall_side.json b/src/test/resources/assets/strata/models/block/mossy_limestone_brick_wall_side.json deleted file mode 100644 index 8ffd7a5f..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_limestone_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/mossy_limestone_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_limestone_bricks.json b/src/test/resources/assets/strata/models/block/mossy_limestone_bricks.json deleted file mode 100644 index 7d10c63e..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_limestone_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/mossy_limestone_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_marble_brick_slab.json b/src/test/resources/assets/strata/models/block/mossy_marble_brick_slab.json deleted file mode 100644 index 7521160a..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_marble_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_marble_bricks" - "top": "strata:blocks/metamorphic_rocks/mossy_marble_bricks" - "side": "strata:blocks/metamorphic_rocks/mossy_marble_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_marble_brick_slab_top.json b/src/test/resources/assets/strata/models/block/mossy_marble_brick_slab_top.json deleted file mode 100644 index e1d067c3..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_marble_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_marble_bricks" - "top": "strata:blocks/metamorphic_rocks/mossy_marble_bricks" - "side": "strata:blocks/metamorphic_rocks/mossy_marble_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_marble_brick_stairs.json b/src/test/resources/assets/strata/models/block/mossy_marble_brick_stairs.json deleted file mode 100644 index ec8f9069..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_marble_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_marble_bricks" - "top": "strata:blocks/metamorphic_rocks/mossy_marble_bricks" - "side": "strata:blocks/metamorphic_rocks/mossy_marble_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_marble_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/mossy_marble_brick_stairs_inner.json deleted file mode 100644 index ec8f9069..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_marble_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_marble_bricks" - "top": "strata:blocks/metamorphic_rocks/mossy_marble_bricks" - "side": "strata:blocks/metamorphic_rocks/mossy_marble_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_marble_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/mossy_marble_brick_stairs_outer.json deleted file mode 100644 index 4fe386a8..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_marble_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_marble_bricks" - "top": "strata:blocks/metamorphic_rocks/mossy_marble_bricks" - "side": "strata:blocks/metamorphic_rocks/mossy_marble_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_marble_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/mossy_marble_brick_wall_inventory.json deleted file mode 100644 index 7b684594..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_marble_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/mossy_marble_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_marble_brick_wall_post.json b/src/test/resources/assets/strata/models/block/mossy_marble_brick_wall_post.json deleted file mode 100644 index 67f2bd40..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_marble_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/mossy_marble_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_marble_brick_wall_side.json b/src/test/resources/assets/strata/models/block/mossy_marble_brick_wall_side.json deleted file mode 100644 index ff718879..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_marble_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/mossy_marble_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_marble_bricks.json b/src/test/resources/assets/strata/models/block/mossy_marble_bricks.json deleted file mode 100644 index f2e8fb79..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_marble_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/mossy_marble_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone.json b/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone.json deleted file mode 100644 index 6f6bf0ab..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/mossy_marble_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone_slab.json b/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone_slab.json deleted file mode 100644 index f2e097c3..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_marble_cobblestone" - "top": "strata:blocks/metamorphic_rocks/mossy_marble_cobblestone" - "side": "strata:blocks/metamorphic_rocks/mossy_marble_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone_slab_top.json b/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone_slab_top.json deleted file mode 100644 index d591b278..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_marble_cobblestone" - "top": "strata:blocks/metamorphic_rocks/mossy_marble_cobblestone" - "side": "strata:blocks/metamorphic_rocks/mossy_marble_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone_stairs.json b/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone_stairs.json deleted file mode 100644 index b9b02fcd..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_marble_cobblestone" - "top": "strata:blocks/metamorphic_rocks/mossy_marble_cobblestone" - "side": "strata:blocks/metamorphic_rocks/mossy_marble_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone_stairs_inner.json b/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone_stairs_inner.json deleted file mode 100644 index b9b02fcd..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_marble_cobblestone" - "top": "strata:blocks/metamorphic_rocks/mossy_marble_cobblestone" - "side": "strata:blocks/metamorphic_rocks/mossy_marble_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone_stairs_outer.json b/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone_stairs_outer.json deleted file mode 100644 index 49e96099..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_marble_cobblestone" - "top": "strata:blocks/metamorphic_rocks/mossy_marble_cobblestone" - "side": "strata:blocks/metamorphic_rocks/mossy_marble_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone_wall_inventory.json b/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone_wall_inventory.json deleted file mode 100644 index 8d013b8b..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/mossy_marble_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone_wall_post.json b/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone_wall_post.json deleted file mode 100644 index e89abf31..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/mossy_marble_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone_wall_side.json b/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone_wall_side.json deleted file mode 100644 index 75da4c72..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_marble_cobblestone_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/mossy_marble_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_brick_slab.json b/src/test/resources/assets/strata/models/block/mossy_pahoehoe_brick_slab.json deleted file mode 100644 index b3815af4..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_pahoehoe_bricks" - "top": "strata:blocks/igneous_rocks/mossy_pahoehoe_bricks" - "side": "strata:blocks/igneous_rocks/mossy_pahoehoe_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_brick_slab_top.json b/src/test/resources/assets/strata/models/block/mossy_pahoehoe_brick_slab_top.json deleted file mode 100644 index 26ada26e..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_pahoehoe_bricks" - "top": "strata:blocks/igneous_rocks/mossy_pahoehoe_bricks" - "side": "strata:blocks/igneous_rocks/mossy_pahoehoe_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_brick_stairs.json b/src/test/resources/assets/strata/models/block/mossy_pahoehoe_brick_stairs.json deleted file mode 100644 index b339a777..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_pahoehoe_bricks" - "top": "strata:blocks/igneous_rocks/mossy_pahoehoe_bricks" - "side": "strata:blocks/igneous_rocks/mossy_pahoehoe_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/mossy_pahoehoe_brick_stairs_inner.json deleted file mode 100644 index b339a777..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_pahoehoe_bricks" - "top": "strata:blocks/igneous_rocks/mossy_pahoehoe_bricks" - "side": "strata:blocks/igneous_rocks/mossy_pahoehoe_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/mossy_pahoehoe_brick_stairs_outer.json deleted file mode 100644 index 71df2ba3..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_pahoehoe_bricks" - "top": "strata:blocks/igneous_rocks/mossy_pahoehoe_bricks" - "side": "strata:blocks/igneous_rocks/mossy_pahoehoe_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/mossy_pahoehoe_brick_wall_inventory.json deleted file mode 100644 index ed6f55d6..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/igneous_rocks/mossy_pahoehoe_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_brick_wall_post.json b/src/test/resources/assets/strata/models/block/mossy_pahoehoe_brick_wall_post.json deleted file mode 100644 index 0ed27611..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/igneous_rocks/mossy_pahoehoe_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_brick_wall_side.json b/src/test/resources/assets/strata/models/block/mossy_pahoehoe_brick_wall_side.json deleted file mode 100644 index 462a090d..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/igneous_rocks/mossy_pahoehoe_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_bricks.json b/src/test/resources/assets/strata/models/block/mossy_pahoehoe_bricks.json deleted file mode 100644 index 45c1817f..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/mossy_pahoehoe_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone.json b/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone.json deleted file mode 100644 index ee7705ea..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/mossy_pahoehoe_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_slab.json b/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_slab.json deleted file mode 100644 index bf4840c5..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_pahoehoe_cobblestone" - "top": "strata:blocks/igneous_rocks/mossy_pahoehoe_cobblestone" - "side": "strata:blocks/igneous_rocks/mossy_pahoehoe_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_slab_top.json b/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_slab_top.json deleted file mode 100644 index e490e4bf..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_pahoehoe_cobblestone" - "top": "strata:blocks/igneous_rocks/mossy_pahoehoe_cobblestone" - "side": "strata:blocks/igneous_rocks/mossy_pahoehoe_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_stairs.json b/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_stairs.json deleted file mode 100644 index fbe14f87..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_pahoehoe_cobblestone" - "top": "strata:blocks/igneous_rocks/mossy_pahoehoe_cobblestone" - "side": "strata:blocks/igneous_rocks/mossy_pahoehoe_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_stairs_inner.json b/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_stairs_inner.json deleted file mode 100644 index fbe14f87..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_pahoehoe_cobblestone" - "top": "strata:blocks/igneous_rocks/mossy_pahoehoe_cobblestone" - "side": "strata:blocks/igneous_rocks/mossy_pahoehoe_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_stairs_outer.json b/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_stairs_outer.json deleted file mode 100644 index c636d987..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/mossy_pahoehoe_cobblestone" - "top": "strata:blocks/igneous_rocks/mossy_pahoehoe_cobblestone" - "side": "strata:blocks/igneous_rocks/mossy_pahoehoe_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_wall_inventory.json b/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_wall_inventory.json deleted file mode 100644 index 3007b37a..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/igneous_rocks/mossy_pahoehoe_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_wall_post.json b/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_wall_post.json deleted file mode 100644 index 0c7fbcf2..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/igneous_rocks/mossy_pahoehoe_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_wall_side.json b/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_wall_side.json deleted file mode 100644 index b5842e7a..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_pahoehoe_cobblestone_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/igneous_rocks/mossy_pahoehoe_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_schist_brick_slab.json b/src/test/resources/assets/strata/models/block/mossy_schist_brick_slab.json deleted file mode 100644 index d3e5d6d5..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_schist_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_schist_bricks", - "top": "strata:blocks/metamorphic_rocks/mossy_schist_bricks", - "side": "strata:blocks/metamorphic_rocks/mossy_schist_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_schist_brick_slab_top.json b/src/test/resources/assets/strata/models/block/mossy_schist_brick_slab_top.json deleted file mode 100644 index 0eabbdeb..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_schist_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_schist_bricks", - "top": "strata:blocks/metamorphic_rocks/mossy_schist_bricks", - "side": "strata:blocks/metamorphic_rocks/mossy_schist_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_schist_brick_stairs.json b/src/test/resources/assets/strata/models/block/mossy_schist_brick_stairs.json deleted file mode 100644 index 9582f461..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_schist_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_schist_bricks", - "top": "strata:blocks/metamorphic_rocks/mossy_schist_bricks", - "side": "strata:blocks/metamorphic_rocks/mossy_schist_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_schist_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/mossy_schist_brick_stairs_inner.json deleted file mode 100644 index 4c39d523..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_schist_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_schist_bricks", - "top": "strata:blocks/metamorphic_rocks/mossy_schist_bricks", - "side": "strata:blocks/metamorphic_rocks/mossy_schist_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_schist_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/mossy_schist_brick_stairs_outer.json deleted file mode 100644 index 37df0424..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_schist_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/mossy_schist_bricks", - "top": "strata:blocks/metamorphic_rocks/mossy_schist_bricks", - "side": "strata:blocks/metamorphic_rocks/mossy_schist_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_schist_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/mossy_schist_brick_wall_inventory.json deleted file mode 100644 index dd4f1feb..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_schist_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/mossy_schist_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_schist_brick_wall_post.json b/src/test/resources/assets/strata/models/block/mossy_schist_brick_wall_post.json deleted file mode 100644 index 4f401016..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_schist_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/mossy_schist_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_schist_brick_wall_side.json b/src/test/resources/assets/strata/models/block/mossy_schist_brick_wall_side.json deleted file mode 100644 index 2cee42a0..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_schist_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/mossy_schist_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_schist_bricks.json b/src/test/resources/assets/strata/models/block/mossy_schist_bricks.json deleted file mode 100644 index d8dd8496..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_schist_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/mossy_schist_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_shale_brick_slab.json b/src/test/resources/assets/strata/models/block/mossy_shale_brick_slab.json deleted file mode 100644 index eee5033f..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_shale_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_shale_bricks", - "top": "strata:blocks/sedimentary_rocks/mossy_shale_bricks", - "side": "strata:blocks/sedimentary_rocks/mossy_shale_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_shale_brick_slab_top.json b/src/test/resources/assets/strata/models/block/mossy_shale_brick_slab_top.json deleted file mode 100644 index 9c4668ac..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_shale_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_shale_bricks", - "top": "strata:blocks/sedimentary_rocks/mossy_shale_bricks", - "side": "strata:blocks/sedimentary_rocks/mossy_shale_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_shale_brick_stairs.json b/src/test/resources/assets/strata/models/block/mossy_shale_brick_stairs.json deleted file mode 100644 index 42b775c0..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_shale_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_shale_bricks", - "top": "strata:blocks/sedimentary_rocks/mossy_shale_bricks", - "side": "strata:blocks/sedimentary_rocks/mossy_shale_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_shale_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/mossy_shale_brick_stairs_inner.json deleted file mode 100644 index b22f342d..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_shale_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_shale_bricks", - "top": "strata:blocks/sedimentary_rocks/mossy_shale_bricks", - "side": "strata:blocks/sedimentary_rocks/mossy_shale_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_shale_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/mossy_shale_brick_stairs_outer.json deleted file mode 100644 index 357b89a5..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_shale_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/mossy_shale_bricks", - "top": "strata:blocks/sedimentary_rocks/mossy_shale_bricks", - "side": "strata:blocks/sedimentary_rocks/mossy_shale_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_shale_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/mossy_shale_brick_wall_inventory.json deleted file mode 100644 index cbd5547c..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_shale_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/mossy_shale_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_shale_brick_wall_post.json b/src/test/resources/assets/strata/models/block/mossy_shale_brick_wall_post.json deleted file mode 100644 index 132fe17f..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_shale_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/mossy_shale_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_shale_brick_wall_side.json b/src/test/resources/assets/strata/models/block/mossy_shale_brick_wall_side.json deleted file mode 100644 index c61d8780..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_shale_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/mossy_shale_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mossy_shale_bricks.json b/src/test/resources/assets/strata/models/block/mossy_shale_bricks.json deleted file mode 100644 index 430a2768..00000000 --- a/src/test/resources/assets/strata/models/block/mossy_shale_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/mossy_shale_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mudstone.json b/src/test/resources/assets/strata/models/block/mudstone.json deleted file mode 100644 index dd752640..00000000 --- a/src/test/resources/assets/strata/models/block/mudstone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/mudstone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mugearite.json b/src/test/resources/assets/strata/models/block/mugearite.json deleted file mode 100644 index aa55f02f..00000000 --- a/src/test/resources/assets/strata/models/block/mugearite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/mugearite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/mylonite.json b/src/test/resources/assets/strata/models/block/mylonite.json deleted file mode 100644 index 2d2bb835..00000000 --- a/src/test/resources/assets/strata/models/block/mylonite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/mylonite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/napoleonite.json b/src/test/resources/assets/strata/models/block/napoleonite.json deleted file mode 100644 index 74c272de..00000000 --- a/src/test/resources/assets/strata/models/block/napoleonite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/napoleonite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/nephelinite.json b/src/test/resources/assets/strata/models/block/nephelinite.json deleted file mode 100644 index 4dc9158d..00000000 --- a/src/test/resources/assets/strata/models/block/nephelinite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/nephelinite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/norite.json b/src/test/resources/assets/strata/models/block/norite.json deleted file mode 100644 index 95b5abc6..00000000 --- a/src/test/resources/assets/strata/models/block/norite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/norite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/novaculite.json b/src/test/resources/assets/strata/models/block/novaculite.json deleted file mode 100644 index 092dcc6c..00000000 --- a/src/test/resources/assets/strata/models/block/novaculite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/novaculite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/oil_shale.json b/src/test/resources/assets/strata/models/block/oil_shale.json deleted file mode 100644 index 640708db..00000000 --- a/src/test/resources/assets/strata/models/block/oil_shale.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/oil_shale" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/oolite.json b/src/test/resources/assets/strata/models/block/oolite.json deleted file mode 100644 index 8589aba7..00000000 --- a/src/test/resources/assets/strata/models/block/oolite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/oolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe.json b/src/test/resources/assets/strata/models/block/pahoehoe.json deleted file mode 100644 index ab800215..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/pahoehoe" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_brick_slab.json b/src/test/resources/assets/strata/models/block/pahoehoe_brick_slab.json deleted file mode 100644 index 87111a02..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/pahoehoe_bricks" - "top": "strata:blocks/igneous_rocks/pahoehoe_bricks" - "side": "strata:blocks/igneous_rocks/pahoehoe_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_brick_slab_top.json b/src/test/resources/assets/strata/models/block/pahoehoe_brick_slab_top.json deleted file mode 100644 index 6653a2b2..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/igneous_rocks/pahoehoe_bricks" - "top": "strata:blocks/igneous_rocks/pahoehoe_bricks" - "side": "strata:blocks/igneous_rocks/pahoehoe_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_brick_stairs.json b/src/test/resources/assets/strata/models/block/pahoehoe_brick_stairs.json deleted file mode 100644 index bf8a2289..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/pahoehoe_bricks" - "top": "strata:blocks/igneous_rocks/pahoehoe_bricks" - "side": "strata:blocks/igneous_rocks/pahoehoe_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/pahoehoe_brick_stairs_inner.json deleted file mode 100644 index 23379760..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/pahoehoe_bricks" - "top": "strata:blocks/igneous_rocks/pahoehoe_bricks" - "side": "strata:blocks/igneous_rocks/pahoehoe_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/pahoehoe_brick_stairs_outer.json deleted file mode 100644 index 032c1689..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/pahoehoe_bricks" - "top": "strata:blocks/igneous_rocks/pahoehoe_bricks" - "side": "strata:blocks/igneous_rocks/pahoehoe_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/pahoehoe_brick_wall_inventory.json deleted file mode 100644 index ec1068a5..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/igneous_rocks/pahoehoe_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_brick_wall_post.json b/src/test/resources/assets/strata/models/block/pahoehoe_brick_wall_post.json deleted file mode 100644 index ed53f0b3..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/igneous_rocks/pahoehoe_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_brick_wall_side.json b/src/test/resources/assets/strata/models/block/pahoehoe_brick_wall_side.json deleted file mode 100644 index abacc432..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/igneous_rocks/pahoehoe_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_bricks.json b/src/test/resources/assets/strata/models/block/pahoehoe_bricks.json deleted file mode 100644 index 5f2a5003..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/pahoehoe_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_button.json b/src/test/resources/assets/strata/models/block/pahoehoe_button.json deleted file mode 100644 index a6497ef6..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button", - "textures": { - "texture": "strata:blocks/igneous_rocks/pahoehoe" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_button_inventory.json b/src/test/resources/assets/strata/models/block/pahoehoe_button_inventory.json deleted file mode 100644 index b66a9d66..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_button_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_inventory", - "textures": { - "texture": "strata:blocks/igneous_rocks/pahoehoe" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_button_pressed.json b/src/test/resources/assets/strata/models/block/pahoehoe_button_pressed.json deleted file mode 100644 index f1d406a1..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_pressed", - "textures": { - "texture": "strata:blocks/igneous_rocks/pahoehoe" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone.json b/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone.json deleted file mode 100644 index baecfd4d..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/pahoehoe_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone_slab.json b/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone_slab.json deleted file mode 100644 index 48e6b8b9..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/pahoehoe_cobblestone" - "top": "strata:blocks/igneous_rocks/pahoehoe_cobblestone" - "side": "strata:blocks/igneous_rocks/pahoehoe_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone_slab_top.json b/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone_slab_top.json deleted file mode 100644 index 17d7c27a..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/igneous_rocks/pahoehoe_cobblestone" - "top": "strata:blocks/igneous_rocks/pahoehoe_cobblestone" - "side": "strata:blocks/igneous_rocks/pahoehoe_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone_stairs.json b/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone_stairs.json deleted file mode 100644 index 7c41184e..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/pahoehoe_cobblestone" - "top": "strata:blocks/igneous_rocks/pahoehoe_cobblestone" - "side": "strata:blocks/igneous_rocks/pahoehoe_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone_stairs_inner.json b/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone_stairs_inner.json deleted file mode 100644 index 7c41184e..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/pahoehoe_cobblestone" - "top": "strata:blocks/igneous_rocks/pahoehoe_cobblestone" - "side": "strata:blocks/igneous_rocks/pahoehoe_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone_stairs_outer.json b/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone_stairs_outer.json deleted file mode 100644 index da29d11d..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/pahoehoe_cobblestone" - "top": "strata:blocks/igneous_rocks/pahoehoe_cobblestone" - "side": "strata:blocks/igneous_rocks/pahoehoe_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone_wall_inventory.json b/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone_wall_inventory.json deleted file mode 100644 index 5c9ce9eb..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/igneous_rocks/pahoehoe_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone_wall_post.json b/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone_wall_post.json deleted file mode 100644 index a010705e..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/igneous_rocks/pahoehoe_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone_wall_side.json b/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone_wall_side.json deleted file mode 100644 index fcd51dc1..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_cobblestone_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/igneous_rocks/pahoehoe_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_pressure_plate.json b/src/test/resources/assets/strata/models/block/pahoehoe_pressure_plate.json deleted file mode 100644 index 9fed7d20..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/igneous_rocks/pahoehoe" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_pressure_plate_down.json b/src/test/resources/assets/strata/models/block/pahoehoe_pressure_plate_down.json deleted file mode 100644 index 06b1dbe5..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_down", - "textures": { - "texture": "strata:blocks/igneous_rocks/pahoehoe" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_pressure_plate_up.json b/src/test/resources/assets/strata/models/block/pahoehoe_pressure_plate_up.json deleted file mode 100644 index 9fed7d20..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_pressure_plate_up.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/igneous_rocks/pahoehoe" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_slab.json b/src/test/resources/assets/strata/models/block/pahoehoe_slab.json deleted file mode 100644 index 98fcd178..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/pahoehoe" - "top": "strata:blocks/igneous_rocks/pahoehoe" - "side": "strata:blocks/igneous_rocks/pahoehoe" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_slab_top.json b/src/test/resources/assets/strata/models/block/pahoehoe_slab_top.json deleted file mode 100644 index 9a3ebd90..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/igneous_rocks/pahoehoe" - "top": "strata:blocks/igneous_rocks/pahoehoe" - "side": "strata:blocks/igneous_rocks/pahoehoe" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_stairs.json b/src/test/resources/assets/strata/models/block/pahoehoe_stairs.json deleted file mode 100644 index f4c40743..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/pahoehoe" - "top": "strata:blocks/igneous_rocks/pahoehoe" - "side": "strata:blocks/igneous_rocks/pahoehoe" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_stairs_inner.json b/src/test/resources/assets/strata/models/block/pahoehoe_stairs_inner.json deleted file mode 100644 index 5762c307..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/pahoehoe" - "top": "strata:blocks/igneous_rocks/pahoehoe" - "side": "strata:blocks/igneous_rocks/pahoehoe" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_stairs_outer.json b/src/test/resources/assets/strata/models/block/pahoehoe_stairs_outer.json deleted file mode 100644 index 0f66fe60..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/pahoehoe" - "top": "strata:blocks/igneous_rocks/pahoehoe" - "side": "strata:blocks/igneous_rocks/pahoehoe" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_wall_inventory.json b/src/test/resources/assets/strata/models/block/pahoehoe_wall_inventory.json deleted file mode 100644 index bc3e813c..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/igneous_rocks/pahoehoe" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_wall_post.json b/src/test/resources/assets/strata/models/block/pahoehoe_wall_post.json deleted file mode 100644 index 58e97880..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_post", - "textures": { - "wall": "strata:blocks/igneous_rocks/pahoehoe" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pahoehoe_wall_side.json b/src/test/resources/assets/strata/models/block/pahoehoe_wall_side.json deleted file mode 100644 index 26399f10..00000000 --- a/src/test/resources/assets/strata/models/block/pahoehoe_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_side", - "textures": { - "wall": "strata:blocks/igneous_rocks/pahoehoe" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pantellerite.json b/src/test/resources/assets/strata/models/block/pantellerite.json deleted file mode 100644 index 666a62b4..00000000 --- a/src/test/resources/assets/strata/models/block/pantellerite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/pantellerite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pegmatite.json b/src/test/resources/assets/strata/models/block/pegmatite.json deleted file mode 100644 index 3676cbde..00000000 --- a/src/test/resources/assets/strata/models/block/pegmatite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/pegmatite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/peridotite.json b/src/test/resources/assets/strata/models/block/peridotite.json deleted file mode 100644 index ba6f54be..00000000 --- a/src/test/resources/assets/strata/models/block/peridotite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/peridotite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/phonolite.json b/src/test/resources/assets/strata/models/block/phonolite.json deleted file mode 100644 index 1e5d0d3f..00000000 --- a/src/test/resources/assets/strata/models/block/phonolite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/phonolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/phonotephrite.json b/src/test/resources/assets/strata/models/block/phonotephrite.json deleted file mode 100644 index 5d67cd06..00000000 --- a/src/test/resources/assets/strata/models/block/phonotephrite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/phonotephrite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/phosphorite.json b/src/test/resources/assets/strata/models/block/phosphorite.json deleted file mode 100644 index 902ef395..00000000 --- a/src/test/resources/assets/strata/models/block/phosphorite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/phosphorite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/phyllite.json b/src/test/resources/assets/strata/models/block/phyllite.json deleted file mode 100644 index 6da96a2b..00000000 --- a/src/test/resources/assets/strata/models/block/phyllite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/phyllite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/picrite.json b/src/test/resources/assets/strata/models/block/picrite.json deleted file mode 100644 index da6ea34d..00000000 --- a/src/test/resources/assets/strata/models/block/picrite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/picrite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pietersite.json b/src/test/resources/assets/strata/models/block/pietersite.json deleted file mode 100644 index 2426a3c3..00000000 --- a/src/test/resources/assets/strata/models/block/pietersite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/pietersite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_aa.json b/src/test/resources/assets/strata/models/block/polished_aa.json deleted file mode 100644 index 1ea63fca..00000000 --- a/src/test/resources/assets/strata/models/block/polished_aa.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/polished_aa" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_aa_slab.json b/src/test/resources/assets/strata/models/block/polished_aa_slab.json deleted file mode 100644 index c8e2bd31..00000000 --- a/src/test/resources/assets/strata/models/block/polished_aa_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/polished_aa" - "top": "strata:blocks/igneous_rocks/polished_aa" - "side": "strata:blocks/igneous_rocks/polished_aa" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_aa_slab_top.json b/src/test/resources/assets/strata/models/block/polished_aa_slab_top.json deleted file mode 100644 index 8a33460b..00000000 --- a/src/test/resources/assets/strata/models/block/polished_aa_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/igneous_rocks/polished_aa" - "top": "strata:blocks/igneous_rocks/polished_aa" - "side": "strata:blocks/igneous_rocks/polished_aa" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_aa_stairs.json b/src/test/resources/assets/strata/models/block/polished_aa_stairs.json deleted file mode 100644 index 1ca797ba..00000000 --- a/src/test/resources/assets/strata/models/block/polished_aa_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/polished_aa" - "top": "strata:blocks/igneous_rocks/polished_aa" - "side": "strata:blocks/igneous_rocks/polished_aa" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_aa_stairs_inner.json b/src/test/resources/assets/strata/models/block/polished_aa_stairs_inner.json deleted file mode 100644 index 1ca797ba..00000000 --- a/src/test/resources/assets/strata/models/block/polished_aa_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/polished_aa" - "top": "strata:blocks/igneous_rocks/polished_aa" - "side": "strata:blocks/igneous_rocks/polished_aa" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_aa_stairs_outer.json b/src/test/resources/assets/strata/models/block/polished_aa_stairs_outer.json deleted file mode 100644 index 2ff5e05e..00000000 --- a/src/test/resources/assets/strata/models/block/polished_aa_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/polished_aa" - "top": "strata:blocks/igneous_rocks/polished_aa" - "side": "strata:blocks/igneous_rocks/polished_aa" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_adakite.json b/src/test/resources/assets/strata/models/block/polished_adakite.json deleted file mode 100644 index 9cf08d03..00000000 --- a/src/test/resources/assets/strata/models/block/polished_adakite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/polished_adakite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_adakite_slab.json b/src/test/resources/assets/strata/models/block/polished_adakite_slab.json deleted file mode 100644 index 36d79aea..00000000 --- a/src/test/resources/assets/strata/models/block/polished_adakite_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/polished_adakite" - "top": "strata:blocks/igneous_rocks/polished_adakite" - "side": "strata:blocks/igneous_rocks/polished_adakite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_adakite_slab_top.json b/src/test/resources/assets/strata/models/block/polished_adakite_slab_top.json deleted file mode 100644 index 4361c770..00000000 --- a/src/test/resources/assets/strata/models/block/polished_adakite_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/igneous_rocks/polished_adakite" - "top": "strata:blocks/igneous_rocks/polished_adakite" - "side": "strata:blocks/igneous_rocks/polished_adakite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_adakite_stairs.json b/src/test/resources/assets/strata/models/block/polished_adakite_stairs.json deleted file mode 100644 index 5fc1e8ef..00000000 --- a/src/test/resources/assets/strata/models/block/polished_adakite_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/polished_adakite" - "top": "strata:blocks/igneous_rocks/polished_adakite" - "side": "strata:blocks/igneous_rocks/polished_adakite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_adakite_stairs_inner.json b/src/test/resources/assets/strata/models/block/polished_adakite_stairs_inner.json deleted file mode 100644 index 5fc1e8ef..00000000 --- a/src/test/resources/assets/strata/models/block/polished_adakite_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/polished_adakite" - "top": "strata:blocks/igneous_rocks/polished_adakite" - "side": "strata:blocks/igneous_rocks/polished_adakite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_adakite_stairs_outer.json b/src/test/resources/assets/strata/models/block/polished_adakite_stairs_outer.json deleted file mode 100644 index 53b32988..00000000 --- a/src/test/resources/assets/strata/models/block/polished_adakite_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/polished_adakite" - "top": "strata:blocks/igneous_rocks/polished_adakite" - "side": "strata:blocks/igneous_rocks/polished_adakite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_amphibolite.json b/src/test/resources/assets/strata/models/block/polished_amphibolite.json deleted file mode 100644 index b1d97c4c..00000000 --- a/src/test/resources/assets/strata/models/block/polished_amphibolite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/polished_amphibolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_amphibolite_slab.json b/src/test/resources/assets/strata/models/block/polished_amphibolite_slab.json deleted file mode 100644 index 0f3ed51d..00000000 --- a/src/test/resources/assets/strata/models/block/polished_amphibolite_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/polished_amphibolite", - "top": "strata:blocks/metamorphic_rocks/polished_amphibolite", - "side": "strata:blocks/metamorphic_rocks/polished_amphibolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_amphibolite_slab_top.json b/src/test/resources/assets/strata/models/block/polished_amphibolite_slab_top.json deleted file mode 100644 index 94dd05d3..00000000 --- a/src/test/resources/assets/strata/models/block/polished_amphibolite_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/polished_amphibolite", - "top": "strata:blocks/metamorphic_rocks/polished_amphibolite", - "side": "strata:blocks/metamorphic_rocks/polished_amphibolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_amphibolite_stairs.json b/src/test/resources/assets/strata/models/block/polished_amphibolite_stairs.json deleted file mode 100644 index 0fb7595c..00000000 --- a/src/test/resources/assets/strata/models/block/polished_amphibolite_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/polished_amphibolite", - "top": "strata:blocks/metamorphic_rocks/polished_amphibolite", - "side": "strata:blocks/metamorphic_rocks/polished_amphibolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_amphibolite_stairs_inner.json b/src/test/resources/assets/strata/models/block/polished_amphibolite_stairs_inner.json deleted file mode 100644 index 8da9b13f..00000000 --- a/src/test/resources/assets/strata/models/block/polished_amphibolite_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/polished_amphibolite", - "top": "strata:blocks/metamorphic_rocks/polished_amphibolite", - "side": "strata:blocks/metamorphic_rocks/polished_amphibolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_amphibolite_stairs_outer.json b/src/test/resources/assets/strata/models/block/polished_amphibolite_stairs_outer.json deleted file mode 100644 index 894d99e5..00000000 --- a/src/test/resources/assets/strata/models/block/polished_amphibolite_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/polished_amphibolite", - "top": "strata:blocks/metamorphic_rocks/polished_amphibolite", - "side": "strata:blocks/metamorphic_rocks/polished_amphibolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_argillite.json b/src/test/resources/assets/strata/models/block/polished_argillite.json deleted file mode 100644 index 2e3abc83..00000000 --- a/src/test/resources/assets/strata/models/block/polished_argillite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/polished_argillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_argillite_slab.json b/src/test/resources/assets/strata/models/block/polished_argillite_slab.json deleted file mode 100644 index ed05cd49..00000000 --- a/src/test/resources/assets/strata/models/block/polished_argillite_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/polished_argillite" - "top": "strata:blocks/sedimentary_rocks/polished_argillite" - "side": "strata:blocks/sedimentary_rocks/polished_argillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_argillite_slab_top.json b/src/test/resources/assets/strata/models/block/polished_argillite_slab_top.json deleted file mode 100644 index afa8c01d..00000000 --- a/src/test/resources/assets/strata/models/block/polished_argillite_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/polished_argillite" - "top": "strata:blocks/sedimentary_rocks/polished_argillite" - "side": "strata:blocks/sedimentary_rocks/polished_argillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_argillite_stairs.json b/src/test/resources/assets/strata/models/block/polished_argillite_stairs.json deleted file mode 100644 index e9a08d7f..00000000 --- a/src/test/resources/assets/strata/models/block/polished_argillite_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/polished_argillite" - "top": "strata:blocks/sedimentary_rocks/polished_argillite" - "side": "strata:blocks/sedimentary_rocks/polished_argillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_argillite_stairs_inner.json b/src/test/resources/assets/strata/models/block/polished_argillite_stairs_inner.json deleted file mode 100644 index e9a08d7f..00000000 --- a/src/test/resources/assets/strata/models/block/polished_argillite_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/polished_argillite" - "top": "strata:blocks/sedimentary_rocks/polished_argillite" - "side": "strata:blocks/sedimentary_rocks/polished_argillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_argillite_stairs_outer.json b/src/test/resources/assets/strata/models/block/polished_argillite_stairs_outer.json deleted file mode 100644 index 2e00ebee..00000000 --- a/src/test/resources/assets/strata/models/block/polished_argillite_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/polished_argillite" - "top": "strata:blocks/sedimentary_rocks/polished_argillite" - "side": "strata:blocks/sedimentary_rocks/polished_argillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_basalt.json b/src/test/resources/assets/strata/models/block/polished_basalt.json deleted file mode 100644 index a0958532..00000000 --- a/src/test/resources/assets/strata/models/block/polished_basalt.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/polished_basalt" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_basalt_slab.json b/src/test/resources/assets/strata/models/block/polished_basalt_slab.json deleted file mode 100644 index 0dd16ba7..00000000 --- a/src/test/resources/assets/strata/models/block/polished_basalt_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/polished_basalt", - "top": "strata:blocks/igneous_rocks/polished_basalt", - "side": "strata:blocks/igneous_rocks/polished_basalt" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_basalt_slab_top.json b/src/test/resources/assets/strata/models/block/polished_basalt_slab_top.json deleted file mode 100644 index 94d97d2b..00000000 --- a/src/test/resources/assets/strata/models/block/polished_basalt_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/igneous_rocks/polished_basalt", - "top": "strata:blocks/igneous_rocks/polished_basalt", - "side": "strata:blocks/igneous_rocks/polished_basalt" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_basalt_stairs.json b/src/test/resources/assets/strata/models/block/polished_basalt_stairs.json deleted file mode 100644 index b3ce1ab4..00000000 --- a/src/test/resources/assets/strata/models/block/polished_basalt_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/polished_basalt", - "top": "strata:blocks/igneous_rocks/polished_basalt", - "side": "strata:blocks/igneous_rocks/polished_basalt" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_basalt_stairs_inner.json b/src/test/resources/assets/strata/models/block/polished_basalt_stairs_inner.json deleted file mode 100644 index 3bd3576f..00000000 --- a/src/test/resources/assets/strata/models/block/polished_basalt_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/polished_basalt", - "top": "strata:blocks/igneous_rocks/polished_basalt", - "side": "strata:blocks/igneous_rocks/polished_basalt" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_basalt_stairs_outer.json b/src/test/resources/assets/strata/models/block/polished_basalt_stairs_outer.json deleted file mode 100644 index f245f388..00000000 --- a/src/test/resources/assets/strata/models/block/polished_basalt_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/polished_basalt", - "top": "strata:blocks/igneous_rocks/polished_basalt", - "side": "strata:blocks/igneous_rocks/polished_basalt" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_chalk.json b/src/test/resources/assets/strata/models/block/polished_chalk.json deleted file mode 100644 index 420298ed..00000000 --- a/src/test/resources/assets/strata/models/block/polished_chalk.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/polished_chalk" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_chalk_slab.json b/src/test/resources/assets/strata/models/block/polished_chalk_slab.json deleted file mode 100644 index 9f5f6ff8..00000000 --- a/src/test/resources/assets/strata/models/block/polished_chalk_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/polished_chalk" - "top": "strata:blocks/sedimentary_rocks/polished_chalk" - "side": "strata:blocks/sedimentary_rocks/polished_chalk" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_chalk_slab_top.json b/src/test/resources/assets/strata/models/block/polished_chalk_slab_top.json deleted file mode 100644 index e2512375..00000000 --- a/src/test/resources/assets/strata/models/block/polished_chalk_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/polished_chalk" - "top": "strata:blocks/sedimentary_rocks/polished_chalk" - "side": "strata:blocks/sedimentary_rocks/polished_chalk" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_chalk_stairs.json b/src/test/resources/assets/strata/models/block/polished_chalk_stairs.json deleted file mode 100644 index 9849b1c4..00000000 --- a/src/test/resources/assets/strata/models/block/polished_chalk_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/polished_chalk" - "top": "strata:blocks/sedimentary_rocks/polished_chalk" - "side": "strata:blocks/sedimentary_rocks/polished_chalk" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_chalk_stairs_inner.json b/src/test/resources/assets/strata/models/block/polished_chalk_stairs_inner.json deleted file mode 100644 index 9849b1c4..00000000 --- a/src/test/resources/assets/strata/models/block/polished_chalk_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/polished_chalk" - "top": "strata:blocks/sedimentary_rocks/polished_chalk" - "side": "strata:blocks/sedimentary_rocks/polished_chalk" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_chalk_stairs_outer.json b/src/test/resources/assets/strata/models/block/polished_chalk_stairs_outer.json deleted file mode 100644 index 9af8f130..00000000 --- a/src/test/resources/assets/strata/models/block/polished_chalk_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/polished_chalk" - "top": "strata:blocks/sedimentary_rocks/polished_chalk" - "side": "strata:blocks/sedimentary_rocks/polished_chalk" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_eclogite.json b/src/test/resources/assets/strata/models/block/polished_eclogite.json deleted file mode 100644 index e4cae55e..00000000 --- a/src/test/resources/assets/strata/models/block/polished_eclogite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/polished_eclogite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_eclogite_slab.json b/src/test/resources/assets/strata/models/block/polished_eclogite_slab.json deleted file mode 100644 index 45c12493..00000000 --- a/src/test/resources/assets/strata/models/block/polished_eclogite_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/polished_eclogite" - "top": "strata:blocks/metamorphic_rocks/polished_eclogite" - "side": "strata:blocks/metamorphic_rocks/polished_eclogite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_eclogite_slab_top.json b/src/test/resources/assets/strata/models/block/polished_eclogite_slab_top.json deleted file mode 100644 index 413e41cf..00000000 --- a/src/test/resources/assets/strata/models/block/polished_eclogite_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/polished_eclogite" - "top": "strata:blocks/metamorphic_rocks/polished_eclogite" - "side": "strata:blocks/metamorphic_rocks/polished_eclogite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_eclogite_stairs.json b/src/test/resources/assets/strata/models/block/polished_eclogite_stairs.json deleted file mode 100644 index a9389c9f..00000000 --- a/src/test/resources/assets/strata/models/block/polished_eclogite_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/polished_eclogite" - "top": "strata:blocks/metamorphic_rocks/polished_eclogite" - "side": "strata:blocks/metamorphic_rocks/polished_eclogite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_eclogite_stairs_inner.json b/src/test/resources/assets/strata/models/block/polished_eclogite_stairs_inner.json deleted file mode 100644 index a9389c9f..00000000 --- a/src/test/resources/assets/strata/models/block/polished_eclogite_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/polished_eclogite" - "top": "strata:blocks/metamorphic_rocks/polished_eclogite" - "side": "strata:blocks/metamorphic_rocks/polished_eclogite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_eclogite_stairs_outer.json b/src/test/resources/assets/strata/models/block/polished_eclogite_stairs_outer.json deleted file mode 100644 index 5f9378ab..00000000 --- a/src/test/resources/assets/strata/models/block/polished_eclogite_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/polished_eclogite" - "top": "strata:blocks/metamorphic_rocks/polished_eclogite" - "side": "strata:blocks/metamorphic_rocks/polished_eclogite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_gabbro.json b/src/test/resources/assets/strata/models/block/polished_gabbro.json deleted file mode 100644 index 05986bb6..00000000 --- a/src/test/resources/assets/strata/models/block/polished_gabbro.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/polished_gabbro" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_gabbro_slab.json b/src/test/resources/assets/strata/models/block/polished_gabbro_slab.json deleted file mode 100644 index b0ac7d39..00000000 --- a/src/test/resources/assets/strata/models/block/polished_gabbro_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/polished_gabbro", - "top": "strata:blocks/igneous_rocks/polished_gabbro", - "side": "strata:blocks/igneous_rocks/polished_gabbro" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_gabbro_slab_top.json b/src/test/resources/assets/strata/models/block/polished_gabbro_slab_top.json deleted file mode 100644 index 432ef063..00000000 --- a/src/test/resources/assets/strata/models/block/polished_gabbro_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/igneous_rocks/polished_gabbro", - "top": "strata:blocks/igneous_rocks/polished_gabbro", - "side": "strata:blocks/igneous_rocks/polished_gabbro" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_gabbro_stairs.json b/src/test/resources/assets/strata/models/block/polished_gabbro_stairs.json deleted file mode 100644 index 503f2507..00000000 --- a/src/test/resources/assets/strata/models/block/polished_gabbro_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/polished_gabbro", - "top": "strata:blocks/igneous_rocks/polished_gabbro", - "side": "strata:blocks/igneous_rocks/polished_gabbro" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_gabbro_stairs_inner.json b/src/test/resources/assets/strata/models/block/polished_gabbro_stairs_inner.json deleted file mode 100644 index 737675b1..00000000 --- a/src/test/resources/assets/strata/models/block/polished_gabbro_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/polished_gabbro", - "top": "strata:blocks/igneous_rocks/polished_gabbro", - "side": "strata:blocks/igneous_rocks/polished_gabbro" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_gabbro_stairs_outer.json b/src/test/resources/assets/strata/models/block/polished_gabbro_stairs_outer.json deleted file mode 100644 index 561c7f1a..00000000 --- a/src/test/resources/assets/strata/models/block/polished_gabbro_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/polished_gabbro", - "top": "strata:blocks/igneous_rocks/polished_gabbro", - "side": "strata:blocks/igneous_rocks/polished_gabbro" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_gneiss.json b/src/test/resources/assets/strata/models/block/polished_gneiss.json deleted file mode 100644 index 670499c1..00000000 --- a/src/test/resources/assets/strata/models/block/polished_gneiss.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/polished_gneiss" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_gneiss_slab.json b/src/test/resources/assets/strata/models/block/polished_gneiss_slab.json deleted file mode 100644 index e9fbacc5..00000000 --- a/src/test/resources/assets/strata/models/block/polished_gneiss_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/polished_gneiss", - "top": "strata:blocks/metamorphic_rocks/polished_gneiss", - "side": "strata:blocks/metamorphic_rocks/polished_gneiss" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_gneiss_slab_top.json b/src/test/resources/assets/strata/models/block/polished_gneiss_slab_top.json deleted file mode 100644 index abdcbca3..00000000 --- a/src/test/resources/assets/strata/models/block/polished_gneiss_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/polished_gneiss", - "top": "strata:blocks/metamorphic_rocks/polished_gneiss", - "side": "strata:blocks/metamorphic_rocks/polished_gneiss" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_gneiss_stairs.json b/src/test/resources/assets/strata/models/block/polished_gneiss_stairs.json deleted file mode 100644 index 3193d53d..00000000 --- a/src/test/resources/assets/strata/models/block/polished_gneiss_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/polished_gneiss", - "top": "strata:blocks/metamorphic_rocks/polished_gneiss", - "side": "strata:blocks/metamorphic_rocks/polished_gneiss" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_gneiss_stairs_inner.json b/src/test/resources/assets/strata/models/block/polished_gneiss_stairs_inner.json deleted file mode 100644 index 9709f891..00000000 --- a/src/test/resources/assets/strata/models/block/polished_gneiss_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/polished_gneiss", - "top": "strata:blocks/metamorphic_rocks/polished_gneiss", - "side": "strata:blocks/metamorphic_rocks/polished_gneiss" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_gneiss_stairs_outer.json b/src/test/resources/assets/strata/models/block/polished_gneiss_stairs_outer.json deleted file mode 100644 index acd32a84..00000000 --- a/src/test/resources/assets/strata/models/block/polished_gneiss_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/polished_gneiss", - "top": "strata:blocks/metamorphic_rocks/polished_gneiss", - "side": "strata:blocks/metamorphic_rocks/polished_gneiss" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_jaspillite.json b/src/test/resources/assets/strata/models/block/polished_jaspillite.json deleted file mode 100644 index 8e29d063..00000000 --- a/src/test/resources/assets/strata/models/block/polished_jaspillite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/polished_jaspillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_jaspillite_slab.json b/src/test/resources/assets/strata/models/block/polished_jaspillite_slab.json deleted file mode 100644 index f72b81a1..00000000 --- a/src/test/resources/assets/strata/models/block/polished_jaspillite_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/polished_jaspillite" - "top": "strata:blocks/sedimentary_rocks/polished_jaspillite" - "side": "strata:blocks/sedimentary_rocks/polished_jaspillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_jaspillite_slab_top.json b/src/test/resources/assets/strata/models/block/polished_jaspillite_slab_top.json deleted file mode 100644 index 8104c597..00000000 --- a/src/test/resources/assets/strata/models/block/polished_jaspillite_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/polished_jaspillite" - "top": "strata:blocks/sedimentary_rocks/polished_jaspillite" - "side": "strata:blocks/sedimentary_rocks/polished_jaspillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_jaspillite_stairs.json b/src/test/resources/assets/strata/models/block/polished_jaspillite_stairs.json deleted file mode 100644 index 73740b43..00000000 --- a/src/test/resources/assets/strata/models/block/polished_jaspillite_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/polished_jaspillite" - "top": "strata:blocks/sedimentary_rocks/polished_jaspillite" - "side": "strata:blocks/sedimentary_rocks/polished_jaspillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_jaspillite_stairs_inner.json b/src/test/resources/assets/strata/models/block/polished_jaspillite_stairs_inner.json deleted file mode 100644 index 73740b43..00000000 --- a/src/test/resources/assets/strata/models/block/polished_jaspillite_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/polished_jaspillite" - "top": "strata:blocks/sedimentary_rocks/polished_jaspillite" - "side": "strata:blocks/sedimentary_rocks/polished_jaspillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_jaspillite_stairs_outer.json b/src/test/resources/assets/strata/models/block/polished_jaspillite_stairs_outer.json deleted file mode 100644 index 166c8996..00000000 --- a/src/test/resources/assets/strata/models/block/polished_jaspillite_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/polished_jaspillite" - "top": "strata:blocks/sedimentary_rocks/polished_jaspillite" - "side": "strata:blocks/sedimentary_rocks/polished_jaspillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_limestone.json b/src/test/resources/assets/strata/models/block/polished_limestone.json deleted file mode 100644 index 0bcacbb9..00000000 --- a/src/test/resources/assets/strata/models/block/polished_limestone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/polished_limestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_limestone_slab.json b/src/test/resources/assets/strata/models/block/polished_limestone_slab.json deleted file mode 100644 index 7be32604..00000000 --- a/src/test/resources/assets/strata/models/block/polished_limestone_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/polished_limestone", - "top": "strata:blocks/sedimentary_rocks/polished_limestone", - "side": "strata:blocks/sedimentary_rocks/polished_limestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_limestone_slab_top.json b/src/test/resources/assets/strata/models/block/polished_limestone_slab_top.json deleted file mode 100644 index 36a3d5d1..00000000 --- a/src/test/resources/assets/strata/models/block/polished_limestone_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/polished_limestone", - "top": "strata:blocks/sedimentary_rocks/polished_limestone", - "side": "strata:blocks/sedimentary_rocks/polished_limestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_limestone_stairs.json b/src/test/resources/assets/strata/models/block/polished_limestone_stairs.json deleted file mode 100644 index 5630d966..00000000 --- a/src/test/resources/assets/strata/models/block/polished_limestone_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/polished_limestone", - "top": "strata:blocks/sedimentary_rocks/polished_limestone", - "side": "strata:blocks/sedimentary_rocks/polished_limestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_limestone_stairs_inner.json b/src/test/resources/assets/strata/models/block/polished_limestone_stairs_inner.json deleted file mode 100644 index 6498852e..00000000 --- a/src/test/resources/assets/strata/models/block/polished_limestone_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/polished_limestone", - "top": "strata:blocks/sedimentary_rocks/polished_limestone", - "side": "strata:blocks/sedimentary_rocks/polished_limestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_limestone_stairs_outer.json b/src/test/resources/assets/strata/models/block/polished_limestone_stairs_outer.json deleted file mode 100644 index 4f7c2ed0..00000000 --- a/src/test/resources/assets/strata/models/block/polished_limestone_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/polished_limestone", - "top": "strata:blocks/sedimentary_rocks/polished_limestone", - "side": "strata:blocks/sedimentary_rocks/polished_limestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_marble.json b/src/test/resources/assets/strata/models/block/polished_marble.json deleted file mode 100644 index 987425a3..00000000 --- a/src/test/resources/assets/strata/models/block/polished_marble.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/polished_marble" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_marble_slab.json b/src/test/resources/assets/strata/models/block/polished_marble_slab.json deleted file mode 100644 index 744367c6..00000000 --- a/src/test/resources/assets/strata/models/block/polished_marble_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/polished_marble" - "top": "strata:blocks/metamorphic_rocks/polished_marble" - "side": "strata:blocks/metamorphic_rocks/polished_marble" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_marble_slab_top.json b/src/test/resources/assets/strata/models/block/polished_marble_slab_top.json deleted file mode 100644 index 032fa458..00000000 --- a/src/test/resources/assets/strata/models/block/polished_marble_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/polished_marble" - "top": "strata:blocks/metamorphic_rocks/polished_marble" - "side": "strata:blocks/metamorphic_rocks/polished_marble" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_marble_stairs.json b/src/test/resources/assets/strata/models/block/polished_marble_stairs.json deleted file mode 100644 index 179ccb37..00000000 --- a/src/test/resources/assets/strata/models/block/polished_marble_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/polished_marble" - "top": "strata:blocks/metamorphic_rocks/polished_marble" - "side": "strata:blocks/metamorphic_rocks/polished_marble" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_marble_stairs_inner.json b/src/test/resources/assets/strata/models/block/polished_marble_stairs_inner.json deleted file mode 100644 index 179ccb37..00000000 --- a/src/test/resources/assets/strata/models/block/polished_marble_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/polished_marble" - "top": "strata:blocks/metamorphic_rocks/polished_marble" - "side": "strata:blocks/metamorphic_rocks/polished_marble" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_marble_stairs_outer.json b/src/test/resources/assets/strata/models/block/polished_marble_stairs_outer.json deleted file mode 100644 index fe116fda..00000000 --- a/src/test/resources/assets/strata/models/block/polished_marble_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/polished_marble" - "top": "strata:blocks/metamorphic_rocks/polished_marble" - "side": "strata:blocks/metamorphic_rocks/polished_marble" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_pahoehoe.json b/src/test/resources/assets/strata/models/block/polished_pahoehoe.json deleted file mode 100644 index 05511edb..00000000 --- a/src/test/resources/assets/strata/models/block/polished_pahoehoe.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/igneous_rocks/polished_pahoehoe" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_pahoehoe_slab.json b/src/test/resources/assets/strata/models/block/polished_pahoehoe_slab.json deleted file mode 100644 index 58f10f64..00000000 --- a/src/test/resources/assets/strata/models/block/polished_pahoehoe_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/igneous_rocks/polished_pahoehoe" - "top": "strata:blocks/igneous_rocks/polished_pahoehoe" - "side": "strata:blocks/igneous_rocks/polished_pahoehoe" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_pahoehoe_slab_top.json b/src/test/resources/assets/strata/models/block/polished_pahoehoe_slab_top.json deleted file mode 100644 index 359c814d..00000000 --- a/src/test/resources/assets/strata/models/block/polished_pahoehoe_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/igneous_rocks/polished_pahoehoe" - "top": "strata:blocks/igneous_rocks/polished_pahoehoe" - "side": "strata:blocks/igneous_rocks/polished_pahoehoe" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_pahoehoe_stairs.json b/src/test/resources/assets/strata/models/block/polished_pahoehoe_stairs.json deleted file mode 100644 index 2a95b570..00000000 --- a/src/test/resources/assets/strata/models/block/polished_pahoehoe_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/polished_pahoehoe" - "top": "strata:blocks/igneous_rocks/polished_pahoehoe" - "side": "strata:blocks/igneous_rocks/polished_pahoehoe" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_pahoehoe_stairs_inner.json b/src/test/resources/assets/strata/models/block/polished_pahoehoe_stairs_inner.json deleted file mode 100644 index 2a95b570..00000000 --- a/src/test/resources/assets/strata/models/block/polished_pahoehoe_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/polished_pahoehoe" - "top": "strata:blocks/igneous_rocks/polished_pahoehoe" - "side": "strata:blocks/igneous_rocks/polished_pahoehoe" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_pahoehoe_stairs_outer.json b/src/test/resources/assets/strata/models/block/polished_pahoehoe_stairs_outer.json deleted file mode 100644 index 1a277e05..00000000 --- a/src/test/resources/assets/strata/models/block/polished_pahoehoe_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/igneous_rocks/polished_pahoehoe" - "top": "strata:blocks/igneous_rocks/polished_pahoehoe" - "side": "strata:blocks/igneous_rocks/polished_pahoehoe" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_schist.json b/src/test/resources/assets/strata/models/block/polished_schist.json deleted file mode 100644 index dfb71dc8..00000000 --- a/src/test/resources/assets/strata/models/block/polished_schist.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/polished_schist" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_schist_slab.json b/src/test/resources/assets/strata/models/block/polished_schist_slab.json deleted file mode 100644 index e655ac66..00000000 --- a/src/test/resources/assets/strata/models/block/polished_schist_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/polished_schist", - "top": "strata:blocks/metamorphic_rocks/polished_schist", - "side": "strata:blocks/metamorphic_rocks/polished_schist" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_schist_slab_top.json b/src/test/resources/assets/strata/models/block/polished_schist_slab_top.json deleted file mode 100644 index f76044a7..00000000 --- a/src/test/resources/assets/strata/models/block/polished_schist_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/polished_schist", - "top": "strata:blocks/metamorphic_rocks/polished_schist", - "side": "strata:blocks/metamorphic_rocks/polished_schist" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_schist_stairs.json b/src/test/resources/assets/strata/models/block/polished_schist_stairs.json deleted file mode 100644 index 083b8886..00000000 --- a/src/test/resources/assets/strata/models/block/polished_schist_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/polished_schist", - "top": "strata:blocks/metamorphic_rocks/polished_schist", - "side": "strata:blocks/metamorphic_rocks/polished_schist" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_schist_stairs_inner.json b/src/test/resources/assets/strata/models/block/polished_schist_stairs_inner.json deleted file mode 100644 index 555ee683..00000000 --- a/src/test/resources/assets/strata/models/block/polished_schist_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/polished_schist", - "top": "strata:blocks/metamorphic_rocks/polished_schist", - "side": "strata:blocks/metamorphic_rocks/polished_schist" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_schist_stairs_outer.json b/src/test/resources/assets/strata/models/block/polished_schist_stairs_outer.json deleted file mode 100644 index 7e2bb52d..00000000 --- a/src/test/resources/assets/strata/models/block/polished_schist_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/polished_schist", - "top": "strata:blocks/metamorphic_rocks/polished_schist", - "side": "strata:blocks/metamorphic_rocks/polished_schist" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_shale.json b/src/test/resources/assets/strata/models/block/polished_shale.json deleted file mode 100644 index 97730b8c..00000000 --- a/src/test/resources/assets/strata/models/block/polished_shale.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/polished_shale" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_shale_slab.json b/src/test/resources/assets/strata/models/block/polished_shale_slab.json deleted file mode 100644 index 59f8a6bf..00000000 --- a/src/test/resources/assets/strata/models/block/polished_shale_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/polished_shale", - "top": "strata:blocks/sedimentary_rocks/polished_shale", - "side": "strata:blocks/sedimentary_rocks/polished_shale" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_shale_slab_top.json b/src/test/resources/assets/strata/models/block/polished_shale_slab_top.json deleted file mode 100644 index 39119109..00000000 --- a/src/test/resources/assets/strata/models/block/polished_shale_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/polished_shale", - "top": "strata:blocks/sedimentary_rocks/polished_shale", - "side": "strata:blocks/sedimentary_rocks/polished_shale" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_shale_stairs.json b/src/test/resources/assets/strata/models/block/polished_shale_stairs.json deleted file mode 100644 index 33fd0dcf..00000000 --- a/src/test/resources/assets/strata/models/block/polished_shale_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/polished_shale", - "top": "strata:blocks/sedimentary_rocks/polished_shale", - "side": "strata:blocks/sedimentary_rocks/polished_shale" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_shale_stairs_inner.json b/src/test/resources/assets/strata/models/block/polished_shale_stairs_inner.json deleted file mode 100644 index c99b7181..00000000 --- a/src/test/resources/assets/strata/models/block/polished_shale_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/polished_shale", - "top": "strata:blocks/sedimentary_rocks/polished_shale", - "side": "strata:blocks/sedimentary_rocks/polished_shale" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/polished_shale_stairs_outer.json b/src/test/resources/assets/strata/models/block/polished_shale_stairs_outer.json deleted file mode 100644 index e162707e..00000000 --- a/src/test/resources/assets/strata/models/block/polished_shale_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/polished_shale", - "top": "strata:blocks/sedimentary_rocks/polished_shale", - "side": "strata:blocks/sedimentary_rocks/polished_shale" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/porphyry.json b/src/test/resources/assets/strata/models/block/porphyry.json deleted file mode 100644 index 8ce898b3..00000000 --- a/src/test/resources/assets/strata/models/block/porphyry.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/porphyry" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pumice.json b/src/test/resources/assets/strata/models/block/pumice.json deleted file mode 100644 index 406cb4d1..00000000 --- a/src/test/resources/assets/strata/models/block/pumice.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/pumice" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pyrolite.json b/src/test/resources/assets/strata/models/block/pyrolite.json deleted file mode 100644 index 7c8542af..00000000 --- a/src/test/resources/assets/strata/models/block/pyrolite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/pyrolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/pyroxenite.json b/src/test/resources/assets/strata/models/block/pyroxenite.json deleted file mode 100644 index a9747511..00000000 --- a/src/test/resources/assets/strata/models/block/pyroxenite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/pyroxenite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/quartz_diorite.json b/src/test/resources/assets/strata/models/block/quartz_diorite.json deleted file mode 100644 index bedc5121..00000000 --- a/src/test/resources/assets/strata/models/block/quartz_diorite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/quartz_diorite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/quartz_monzonite.json b/src/test/resources/assets/strata/models/block/quartz_monzonite.json deleted file mode 100644 index 5c5ad422..00000000 --- a/src/test/resources/assets/strata/models/block/quartz_monzonite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/quartz_monzonite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/quartzite.json b/src/test/resources/assets/strata/models/block/quartzite.json deleted file mode 100644 index 16b561c8..00000000 --- a/src/test/resources/assets/strata/models/block/quartzite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/quartzite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/quartzolite.json b/src/test/resources/assets/strata/models/block/quartzolite.json deleted file mode 100644 index ae579c65..00000000 --- a/src/test/resources/assets/strata/models/block/quartzolite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/quartzolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/rapakivi_granite.json b/src/test/resources/assets/strata/models/block/rapakivi_granite.json deleted file mode 100644 index c1df1ff9..00000000 --- a/src/test/resources/assets/strata/models/block/rapakivi_granite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/rapakivi_granite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/rhomb_porphyry.json b/src/test/resources/assets/strata/models/block/rhomb_porphyry.json deleted file mode 100644 index e86f5db8..00000000 --- a/src/test/resources/assets/strata/models/block/rhomb_porphyry.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/rhomb_porphyry" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/rhyodacite.json b/src/test/resources/assets/strata/models/block/rhyodacite.json deleted file mode 100644 index 07c5acee..00000000 --- a/src/test/resources/assets/strata/models/block/rhyodacite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/rhyodacite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/rhyolite.json b/src/test/resources/assets/strata/models/block/rhyolite.json deleted file mode 100644 index 2874aab2..00000000 --- a/src/test/resources/assets/strata/models/block/rhyolite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/rhyolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/rodingite.json b/src/test/resources/assets/strata/models/block/rodingite.json deleted file mode 100644 index ee71f881..00000000 --- a/src/test/resources/assets/strata/models/block/rodingite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/rodingite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/schist.json b/src/test/resources/assets/strata/models/block/schist.json deleted file mode 100644 index ec7dd290..00000000 --- a/src/test/resources/assets/strata/models/block/schist.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/schist" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/schist_brick_slab.json b/src/test/resources/assets/strata/models/block/schist_brick_slab.json deleted file mode 100644 index 85c8af95..00000000 --- a/src/test/resources/assets/strata/models/block/schist_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/schist_bricks", - "top": "strata:blocks/metamorphic_rocks/schist_bricks", - "side": "strata:blocks/metamorphic_rocks/schist_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/schist_brick_slab_top.json b/src/test/resources/assets/strata/models/block/schist_brick_slab_top.json deleted file mode 100644 index cec0884c..00000000 --- a/src/test/resources/assets/strata/models/block/schist_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/schist_bricks", - "top": "strata:blocks/metamorphic_rocks/schist_bricks", - "side": "strata:blocks/metamorphic_rocks/schist_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/schist_brick_stairs.json b/src/test/resources/assets/strata/models/block/schist_brick_stairs.json deleted file mode 100644 index e5ef0851..00000000 --- a/src/test/resources/assets/strata/models/block/schist_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/schist_bricks", - "top": "strata:blocks/metamorphic_rocks/schist_bricks", - "side": "strata:blocks/metamorphic_rocks/schist_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/schist_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/schist_brick_stairs_inner.json deleted file mode 100644 index 5bda63dd..00000000 --- a/src/test/resources/assets/strata/models/block/schist_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/schist_bricks", - "top": "strata:blocks/metamorphic_rocks/schist_bricks", - "side": "strata:blocks/metamorphic_rocks/schist_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/schist_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/schist_brick_stairs_outer.json deleted file mode 100644 index 2fbb537d..00000000 --- a/src/test/resources/assets/strata/models/block/schist_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/schist_bricks", - "top": "strata:blocks/metamorphic_rocks/schist_bricks", - "side": "strata:blocks/metamorphic_rocks/schist_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/schist_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/schist_brick_wall_inventory.json deleted file mode 100644 index 7b2835b8..00000000 --- a/src/test/resources/assets/strata/models/block/schist_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/schist_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/schist_brick_wall_post.json b/src/test/resources/assets/strata/models/block/schist_brick_wall_post.json deleted file mode 100644 index 87310239..00000000 --- a/src/test/resources/assets/strata/models/block/schist_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/schist_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/schist_brick_wall_side.json b/src/test/resources/assets/strata/models/block/schist_brick_wall_side.json deleted file mode 100644 index 5e27c012..00000000 --- a/src/test/resources/assets/strata/models/block/schist_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/schist_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/schist_bricks.json b/src/test/resources/assets/strata/models/block/schist_bricks.json deleted file mode 100644 index 8b63bb10..00000000 --- a/src/test/resources/assets/strata/models/block/schist_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/metamorphic_rocks/schist_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/schist_button.json b/src/test/resources/assets/strata/models/block/schist_button.json deleted file mode 100644 index dc3bec84..00000000 --- a/src/test/resources/assets/strata/models/block/schist_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/schist" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/schist_button_inventory.json b/src/test/resources/assets/strata/models/block/schist_button_inventory.json deleted file mode 100644 index 11ec4db1..00000000 --- a/src/test/resources/assets/strata/models/block/schist_button_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_inventory", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/schist" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/schist_button_pressed.json b/src/test/resources/assets/strata/models/block/schist_button_pressed.json deleted file mode 100644 index 9f208608..00000000 --- a/src/test/resources/assets/strata/models/block/schist_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_pressed", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/schist" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/schist_pressure_plate.json b/src/test/resources/assets/strata/models/block/schist_pressure_plate.json deleted file mode 100644 index 5e58ae83..00000000 --- a/src/test/resources/assets/strata/models/block/schist_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/schist" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/schist_pressure_plate_down.json b/src/test/resources/assets/strata/models/block/schist_pressure_plate_down.json deleted file mode 100644 index 77b6fce4..00000000 --- a/src/test/resources/assets/strata/models/block/schist_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_down", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/schist" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/schist_pressure_plate_up.json b/src/test/resources/assets/strata/models/block/schist_pressure_plate_up.json deleted file mode 100644 index 5e58ae83..00000000 --- a/src/test/resources/assets/strata/models/block/schist_pressure_plate_up.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/metamorphic_rocks/schist" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/schist_slab.json b/src/test/resources/assets/strata/models/block/schist_slab.json deleted file mode 100644 index 46510dda..00000000 --- a/src/test/resources/assets/strata/models/block/schist_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/schist", - "top": "strata:blocks/metamorphic_rocks/schist", - "side": "strata:blocks/metamorphic_rocks/schist" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/schist_slab_top.json b/src/test/resources/assets/strata/models/block/schist_slab_top.json deleted file mode 100644 index 69998ecc..00000000 --- a/src/test/resources/assets/strata/models/block/schist_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/schist", - "top": "strata:blocks/metamorphic_rocks/schist", - "side": "strata:blocks/metamorphic_rocks/schist" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/schist_stairs.json b/src/test/resources/assets/strata/models/block/schist_stairs.json deleted file mode 100644 index 8a359f4a..00000000 --- a/src/test/resources/assets/strata/models/block/schist_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/schist", - "top": "strata:blocks/metamorphic_rocks/schist", - "side": "strata:blocks/metamorphic_rocks/schist" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/schist_stairs_inner.json b/src/test/resources/assets/strata/models/block/schist_stairs_inner.json deleted file mode 100644 index aa974db1..00000000 --- a/src/test/resources/assets/strata/models/block/schist_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/schist", - "top": "strata:blocks/metamorphic_rocks/schist", - "side": "strata:blocks/metamorphic_rocks/schist" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/schist_stairs_outer.json b/src/test/resources/assets/strata/models/block/schist_stairs_outer.json deleted file mode 100644 index f9ccdd9a..00000000 --- a/src/test/resources/assets/strata/models/block/schist_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/metamorphic_rocks/schist", - "top": "strata:blocks/metamorphic_rocks/schist", - "side": "strata:blocks/metamorphic_rocks/schist" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/schist_wall_inventory.json b/src/test/resources/assets/strata/models/block/schist_wall_inventory.json deleted file mode 100644 index b1d745c1..00000000 --- a/src/test/resources/assets/strata/models/block/schist_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/schist" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/schist_wall_post.json b/src/test/resources/assets/strata/models/block/schist_wall_post.json deleted file mode 100644 index 5c2270eb..00000000 --- a/src/test/resources/assets/strata/models/block/schist_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/schist" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/schist_wall_side.json b/src/test/resources/assets/strata/models/block/schist_wall_side.json deleted file mode 100644 index d4abf07a..00000000 --- a/src/test/resources/assets/strata/models/block/schist_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "strata:blocks/metamorphic_rocks/schist" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/scoria.json b/src/test/resources/assets/strata/models/block/scoria.json deleted file mode 100644 index ebe8ffc7..00000000 --- a/src/test/resources/assets/strata/models/block/scoria.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/scoria" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/serpentinite.json b/src/test/resources/assets/strata/models/block/serpentinite.json deleted file mode 100644 index 71013ae6..00000000 --- a/src/test/resources/assets/strata/models/block/serpentinite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/serpentinite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shale.json b/src/test/resources/assets/strata/models/block/shale.json deleted file mode 100644 index 9506e15b..00000000 --- a/src/test/resources/assets/strata/models/block/shale.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/shale" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shale_brick_slab.json b/src/test/resources/assets/strata/models/block/shale_brick_slab.json deleted file mode 100644 index cda9b1a8..00000000 --- a/src/test/resources/assets/strata/models/block/shale_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/shale_bricks", - "top": "strata:blocks/sedimentary_rocks/shale_bricks", - "side": "strata:blocks/sedimentary_rocks/shale_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shale_brick_slab_top.json b/src/test/resources/assets/strata/models/block/shale_brick_slab_top.json deleted file mode 100644 index 9a94c27a..00000000 --- a/src/test/resources/assets/strata/models/block/shale_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/shale_bricks", - "top": "strata:blocks/sedimentary_rocks/shale_bricks", - "side": "strata:blocks/sedimentary_rocks/shale_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shale_brick_stairs.json b/src/test/resources/assets/strata/models/block/shale_brick_stairs.json deleted file mode 100644 index e4b78614..00000000 --- a/src/test/resources/assets/strata/models/block/shale_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/shale_bricks", - "top": "strata:blocks/sedimentary_rocks/shale_bricks", - "side": "strata:blocks/sedimentary_rocks/shale_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shale_brick_stairs_inner.json b/src/test/resources/assets/strata/models/block/shale_brick_stairs_inner.json deleted file mode 100644 index 338dafea..00000000 --- a/src/test/resources/assets/strata/models/block/shale_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/shale_bricks", - "top": "strata:blocks/sedimentary_rocks/shale_bricks", - "side": "strata:blocks/sedimentary_rocks/shale_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shale_brick_stairs_outer.json b/src/test/resources/assets/strata/models/block/shale_brick_stairs_outer.json deleted file mode 100644 index 254c7aaf..00000000 --- a/src/test/resources/assets/strata/models/block/shale_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/shale_bricks", - "top": "strata:blocks/sedimentary_rocks/shale_bricks", - "side": "strata:blocks/sedimentary_rocks/shale_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shale_brick_wall_inventory.json b/src/test/resources/assets/strata/models/block/shale_brick_wall_inventory.json deleted file mode 100644 index d7964970..00000000 --- a/src/test/resources/assets/strata/models/block/shale_brick_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/shale_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shale_brick_wall_post.json b/src/test/resources/assets/strata/models/block/shale_brick_wall_post.json deleted file mode 100644 index 4462758b..00000000 --- a/src/test/resources/assets/strata/models/block/shale_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/shale_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shale_brick_wall_side.json b/src/test/resources/assets/strata/models/block/shale_brick_wall_side.json deleted file mode 100644 index 4898899c..00000000 --- a/src/test/resources/assets/strata/models/block/shale_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/shale_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shale_bricks.json b/src/test/resources/assets/strata/models/block/shale_bricks.json deleted file mode 100644 index 079b3975..00000000 --- a/src/test/resources/assets/strata/models/block/shale_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sedimentary_rocks/shale_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shale_button.json b/src/test/resources/assets/strata/models/block/shale_button.json deleted file mode 100644 index 77ffe63e..00000000 --- a/src/test/resources/assets/strata/models/block/shale_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/shale" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shale_button_inventory.json b/src/test/resources/assets/strata/models/block/shale_button_inventory.json deleted file mode 100644 index c5feadda..00000000 --- a/src/test/resources/assets/strata/models/block/shale_button_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_inventory", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/shale" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shale_button_pressed.json b/src/test/resources/assets/strata/models/block/shale_button_pressed.json deleted file mode 100644 index c35ba716..00000000 --- a/src/test/resources/assets/strata/models/block/shale_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/button_pressed", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/shale" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shale_pressure_plate.json b/src/test/resources/assets/strata/models/block/shale_pressure_plate.json deleted file mode 100644 index dc0e9f1d..00000000 --- a/src/test/resources/assets/strata/models/block/shale_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/shale" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shale_pressure_plate_down.json b/src/test/resources/assets/strata/models/block/shale_pressure_plate_down.json deleted file mode 100644 index dbc43c7f..00000000 --- a/src/test/resources/assets/strata/models/block/shale_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_down", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/shale" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shale_pressure_plate_up.json b/src/test/resources/assets/strata/models/block/shale_pressure_plate_up.json deleted file mode 100644 index dc0e9f1d..00000000 --- a/src/test/resources/assets/strata/models/block/shale_pressure_plate_up.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/pressure_plate_up", - "textures": { - "texture": "strata:blocks/sedimentary_rocks/shale" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shale_slab.json b/src/test/resources/assets/strata/models/block/shale_slab.json deleted file mode 100644 index 3bfdbf4c..00000000 --- a/src/test/resources/assets/strata/models/block/shale_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/shale", - "top": "strata:blocks/sedimentary_rocks/shale", - "side": "strata:blocks/sedimentary_rocks/shale" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shale_slab_top.json b/src/test/resources/assets/strata/models/block/shale_slab_top.json deleted file mode 100644 index 92739330..00000000 --- a/src/test/resources/assets/strata/models/block/shale_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/slab_top", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/shale", - "top": "strata:blocks/sedimentary_rocks/shale", - "side": "strata:blocks/sedimentary_rocks/shale" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shale_stairs.json b/src/test/resources/assets/strata/models/block/shale_stairs.json deleted file mode 100644 index 63747b8e..00000000 --- a/src/test/resources/assets/strata/models/block/shale_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/shale", - "top": "strata:blocks/sedimentary_rocks/shale", - "side": "strata:blocks/sedimentary_rocks/shale" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shale_stairs_inner.json b/src/test/resources/assets/strata/models/block/shale_stairs_inner.json deleted file mode 100644 index e8a66045..00000000 --- a/src/test/resources/assets/strata/models/block/shale_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/shale", - "top": "strata:blocks/sedimentary_rocks/shale", - "side": "strata:blocks/sedimentary_rocks/shale" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shale_stairs_outer.json b/src/test/resources/assets/strata/models/block/shale_stairs_outer.json deleted file mode 100644 index b8f2580e..00000000 --- a/src/test/resources/assets/strata/models/block/shale_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "strata:blocks/sedimentary_rocks/shale", - "top": "strata:blocks/sedimentary_rocks/shale", - "side": "strata:blocks/sedimentary_rocks/shale" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shale_wall_inventory.json b/src/test/resources/assets/strata/models/block/shale_wall_inventory.json deleted file mode 100644 index d069f391..00000000 --- a/src/test/resources/assets/strata/models/block/shale_wall_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/shale" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shale_wall_post.json b/src/test/resources/assets/strata/models/block/shale_wall_post.json deleted file mode 100644 index ecaf59fd..00000000 --- a/src/test/resources/assets/strata/models/block/shale_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/shale" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shale_wall_side.json b/src/test/resources/assets/strata/models/block/shale_wall_side.json deleted file mode 100644 index 47a477da..00000000 --- a/src/test/resources/assets/strata/models/block/shale_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "strata:blocks/sedimentary_rocks/shale" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shonkinite.json b/src/test/resources/assets/strata/models/block/shonkinite.json deleted file mode 100644 index 943fe17f..00000000 --- a/src/test/resources/assets/strata/models/block/shonkinite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/shonkinite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/shoshonite.json b/src/test/resources/assets/strata/models/block/shoshonite.json deleted file mode 100644 index 088f7a3f..00000000 --- a/src/test/resources/assets/strata/models/block/shoshonite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/shoshonite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/siltstone.json b/src/test/resources/assets/strata/models/block/siltstone.json deleted file mode 100644 index 4eab10b7..00000000 --- a/src/test/resources/assets/strata/models/block/siltstone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/siltstone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/skarn.json b/src/test/resources/assets/strata/models/block/skarn.json deleted file mode 100644 index 4ad84cfe..00000000 --- a/src/test/resources/assets/strata/models/block/skarn.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/skarn" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/slate.json b/src/test/resources/assets/strata/models/block/slate.json deleted file mode 100644 index 0c5a7694..00000000 --- a/src/test/resources/assets/strata/models/block/slate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/slate" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/soapstone.json b/src/test/resources/assets/strata/models/block/soapstone.json deleted file mode 100644 index 785c832a..00000000 --- a/src/test/resources/assets/strata/models/block/soapstone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/soapstone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/sovite.json b/src/test/resources/assets/strata/models/block/sovite.json deleted file mode 100644 index 67ea9ee2..00000000 --- a/src/test/resources/assets/strata/models/block/sovite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sovite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/suevite.json b/src/test/resources/assets/strata/models/block/suevite.json deleted file mode 100644 index ce27a3e6..00000000 --- a/src/test/resources/assets/strata/models/block/suevite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/suevite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/syenite.json b/src/test/resources/assets/strata/models/block/syenite.json deleted file mode 100644 index fee54228..00000000 --- a/src/test/resources/assets/strata/models/block/syenite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/syenite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/sylvinite.json b/src/test/resources/assets/strata/models/block/sylvinite.json deleted file mode 100644 index ac64dafe..00000000 --- a/src/test/resources/assets/strata/models/block/sylvinite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/sylvinite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/tachylite.json b/src/test/resources/assets/strata/models/block/tachylite.json deleted file mode 100644 index d92922ed..00000000 --- a/src/test/resources/assets/strata/models/block/tachylite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/tachylite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/taconite.json b/src/test/resources/assets/strata/models/block/taconite.json deleted file mode 100644 index ba6ac2e9..00000000 --- a/src/test/resources/assets/strata/models/block/taconite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/taconite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/talc_carbonate.json b/src/test/resources/assets/strata/models/block/talc_carbonate.json deleted file mode 100644 index 09d887b8..00000000 --- a/src/test/resources/assets/strata/models/block/talc_carbonate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/talc_carbonate" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/tectonite.json b/src/test/resources/assets/strata/models/block/tectonite.json deleted file mode 100644 index 29d93178..00000000 --- a/src/test/resources/assets/strata/models/block/tectonite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/tectonite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/tephriphonolite.json b/src/test/resources/assets/strata/models/block/tephriphonolite.json deleted file mode 100644 index 4ec1b3f6..00000000 --- a/src/test/resources/assets/strata/models/block/tephriphonolite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/tephriphonolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/tephrite.json b/src/test/resources/assets/strata/models/block/tephrite.json deleted file mode 100644 index 05e9f6a9..00000000 --- a/src/test/resources/assets/strata/models/block/tephrite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/tephrite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/teschenite.json b/src/test/resources/assets/strata/models/block/teschenite.json deleted file mode 100644 index 3020ccef..00000000 --- a/src/test/resources/assets/strata/models/block/teschenite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/teschenite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/theralite.json b/src/test/resources/assets/strata/models/block/theralite.json deleted file mode 100644 index cc1896c3..00000000 --- a/src/test/resources/assets/strata/models/block/theralite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/theralite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/tillite.json b/src/test/resources/assets/strata/models/block/tillite.json deleted file mode 100644 index 125e2c57..00000000 --- a/src/test/resources/assets/strata/models/block/tillite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/tillite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/tonalite.json b/src/test/resources/assets/strata/models/block/tonalite.json deleted file mode 100644 index 3677de21..00000000 --- a/src/test/resources/assets/strata/models/block/tonalite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/tonalite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/trachyandesite.json b/src/test/resources/assets/strata/models/block/trachyandesite.json deleted file mode 100644 index af1ffd65..00000000 --- a/src/test/resources/assets/strata/models/block/trachyandesite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/trachyandesite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/trachybasalt.json b/src/test/resources/assets/strata/models/block/trachybasalt.json deleted file mode 100644 index 74c09db2..00000000 --- a/src/test/resources/assets/strata/models/block/trachybasalt.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/trachybasalt" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/trachyte.json b/src/test/resources/assets/strata/models/block/trachyte.json deleted file mode 100644 index 7052d5a6..00000000 --- a/src/test/resources/assets/strata/models/block/trachyte.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/trachyte" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/travertine.json b/src/test/resources/assets/strata/models/block/travertine.json deleted file mode 100644 index 82ba8fdf..00000000 --- a/src/test/resources/assets/strata/models/block/travertine.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/travertine" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/troctolite.json b/src/test/resources/assets/strata/models/block/troctolite.json deleted file mode 100644 index f981b5e6..00000000 --- a/src/test/resources/assets/strata/models/block/troctolite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/troctolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/trondhjemite.json b/src/test/resources/assets/strata/models/block/trondhjemite.json deleted file mode 100644 index e692aec4..00000000 --- a/src/test/resources/assets/strata/models/block/trondhjemite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/trondhjemite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/tuff.json b/src/test/resources/assets/strata/models/block/tuff.json deleted file mode 100644 index 196b4252..00000000 --- a/src/test/resources/assets/strata/models/block/tuff.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/tuff" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/turbidite.json b/src/test/resources/assets/strata/models/block/turbidite.json deleted file mode 100644 index e1db9f2d..00000000 --- a/src/test/resources/assets/strata/models/block/turbidite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/turbidite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/unakite.json b/src/test/resources/assets/strata/models/block/unakite.json deleted file mode 100644 index 6c07dcc4..00000000 --- a/src/test/resources/assets/strata/models/block/unakite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/unakite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/variolite.json b/src/test/resources/assets/strata/models/block/variolite.json deleted file mode 100644 index 0a313aa0..00000000 --- a/src/test/resources/assets/strata/models/block/variolite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/variolite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/vogesite.json b/src/test/resources/assets/strata/models/block/vogesite.json deleted file mode 100644 index 721ef972..00000000 --- a/src/test/resources/assets/strata/models/block/vogesite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/vogesite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/wackestone.json b/src/test/resources/assets/strata/models/block/wackestone.json deleted file mode 100644 index 6f75fd6b..00000000 --- a/src/test/resources/assets/strata/models/block/wackestone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/wackestone" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/websterite.json b/src/test/resources/assets/strata/models/block/websterite.json deleted file mode 100644 index 63d4518c..00000000 --- a/src/test/resources/assets/strata/models/block/websterite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/websterite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/wehrlite.json b/src/test/resources/assets/strata/models/block/wehrlite.json deleted file mode 100644 index fdf74add..00000000 --- a/src/test/resources/assets/strata/models/block/wehrlite.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/wehrlite" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/block/whiteschist.json b/src/test/resources/assets/strata/models/block/whiteschist.json deleted file mode 100644 index 63166ad3..00000000 --- a/src/test/resources/assets/strata/models/block/whiteschist.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "strata:blocks/whiteschist" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/aa.json b/src/test/resources/assets/strata/models/item/aa.json deleted file mode 100644 index 4204e744..00000000 --- a/src/test/resources/assets/strata/models/item/aa.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/aa" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/aa_brick_slab.json b/src/test/resources/assets/strata/models/item/aa_brick_slab.json deleted file mode 100644 index d9fab99c..00000000 --- a/src/test/resources/assets/strata/models/item/aa_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/aa_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/aa_brick_stairs.json b/src/test/resources/assets/strata/models/item/aa_brick_stairs.json deleted file mode 100644 index fae72270..00000000 --- a/src/test/resources/assets/strata/models/item/aa_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/aa_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/aa_brick_wall.json b/src/test/resources/assets/strata/models/item/aa_brick_wall.json deleted file mode 100644 index c3fb9c65..00000000 --- a/src/test/resources/assets/strata/models/item/aa_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/aa_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/aa_bricks.json b/src/test/resources/assets/strata/models/item/aa_bricks.json deleted file mode 100644 index 410b85bb..00000000 --- a/src/test/resources/assets/strata/models/item/aa_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/aa_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/aa_button.json b/src/test/resources/assets/strata/models/item/aa_button.json deleted file mode 100644 index 551f24e4..00000000 --- a/src/test/resources/assets/strata/models/item/aa_button.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/aa_button_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/aa_cobblestone.json b/src/test/resources/assets/strata/models/item/aa_cobblestone.json deleted file mode 100644 index 8a105bb7..00000000 --- a/src/test/resources/assets/strata/models/item/aa_cobblestone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/aa_cobblestone" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/aa_cobblestone_slab.json b/src/test/resources/assets/strata/models/item/aa_cobblestone_slab.json deleted file mode 100644 index 00b875ae..00000000 --- a/src/test/resources/assets/strata/models/item/aa_cobblestone_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/aa_cobblestone_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/aa_cobblestone_stairs.json b/src/test/resources/assets/strata/models/item/aa_cobblestone_stairs.json deleted file mode 100644 index 3651c21b..00000000 --- a/src/test/resources/assets/strata/models/item/aa_cobblestone_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/aa_cobblestone_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/aa_cobblestone_wall.json b/src/test/resources/assets/strata/models/item/aa_cobblestone_wall.json deleted file mode 100644 index e8d9365b..00000000 --- a/src/test/resources/assets/strata/models/item/aa_cobblestone_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/aa_cobblestone_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/aa_pressure_plate.json b/src/test/resources/assets/strata/models/item/aa_pressure_plate.json deleted file mode 100644 index a1800451..00000000 --- a/src/test/resources/assets/strata/models/item/aa_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/aa_pressure_plate" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/aa_slab.json b/src/test/resources/assets/strata/models/item/aa_slab.json deleted file mode 100644 index 19f592e2..00000000 --- a/src/test/resources/assets/strata/models/item/aa_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/aa_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/aa_stairs.json b/src/test/resources/assets/strata/models/item/aa_stairs.json deleted file mode 100644 index 3e02de5e..00000000 --- a/src/test/resources/assets/strata/models/item/aa_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/aa_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/aa_wall.json b/src/test/resources/assets/strata/models/item/aa_wall.json deleted file mode 100644 index 0a8f2cbf..00000000 --- a/src/test/resources/assets/strata/models/item/aa_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/aa_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/adakite.json b/src/test/resources/assets/strata/models/item/adakite.json deleted file mode 100644 index b654e311..00000000 --- a/src/test/resources/assets/strata/models/item/adakite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/adakite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/adakite_brick_slab.json b/src/test/resources/assets/strata/models/item/adakite_brick_slab.json deleted file mode 100644 index 61769bd2..00000000 --- a/src/test/resources/assets/strata/models/item/adakite_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/adakite_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/adakite_brick_stairs.json b/src/test/resources/assets/strata/models/item/adakite_brick_stairs.json deleted file mode 100644 index 80b970c4..00000000 --- a/src/test/resources/assets/strata/models/item/adakite_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/adakite_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/adakite_brick_wall.json b/src/test/resources/assets/strata/models/item/adakite_brick_wall.json deleted file mode 100644 index 99c716a7..00000000 --- a/src/test/resources/assets/strata/models/item/adakite_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/adakite_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/adakite_bricks.json b/src/test/resources/assets/strata/models/item/adakite_bricks.json deleted file mode 100644 index ac5c491a..00000000 --- a/src/test/resources/assets/strata/models/item/adakite_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/adakite_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/adakite_button.json b/src/test/resources/assets/strata/models/item/adakite_button.json deleted file mode 100644 index 6f5e5889..00000000 --- a/src/test/resources/assets/strata/models/item/adakite_button.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/adakite_button_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/adakite_cobblestone.json b/src/test/resources/assets/strata/models/item/adakite_cobblestone.json deleted file mode 100644 index e5c20efd..00000000 --- a/src/test/resources/assets/strata/models/item/adakite_cobblestone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/adakite_cobblestone" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/adakite_cobblestone_slab.json b/src/test/resources/assets/strata/models/item/adakite_cobblestone_slab.json deleted file mode 100644 index 61e9f847..00000000 --- a/src/test/resources/assets/strata/models/item/adakite_cobblestone_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/adakite_cobblestone_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/adakite_cobblestone_stairs.json b/src/test/resources/assets/strata/models/item/adakite_cobblestone_stairs.json deleted file mode 100644 index c1937151..00000000 --- a/src/test/resources/assets/strata/models/item/adakite_cobblestone_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/adakite_cobblestone_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/adakite_cobblestone_wall.json b/src/test/resources/assets/strata/models/item/adakite_cobblestone_wall.json deleted file mode 100644 index 44a52a27..00000000 --- a/src/test/resources/assets/strata/models/item/adakite_cobblestone_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/adakite_cobblestone_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/adakite_pressure_plate.json b/src/test/resources/assets/strata/models/item/adakite_pressure_plate.json deleted file mode 100644 index 133d1848..00000000 --- a/src/test/resources/assets/strata/models/item/adakite_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/adakite_pressure_plate" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/adakite_slab.json b/src/test/resources/assets/strata/models/item/adakite_slab.json deleted file mode 100644 index 72eec678..00000000 --- a/src/test/resources/assets/strata/models/item/adakite_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/adakite_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/adakite_stairs.json b/src/test/resources/assets/strata/models/item/adakite_stairs.json deleted file mode 100644 index 6be04fb9..00000000 --- a/src/test/resources/assets/strata/models/item/adakite_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/adakite_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/adakite_wall.json b/src/test/resources/assets/strata/models/item/adakite_wall.json deleted file mode 100644 index c381fb50..00000000 --- a/src/test/resources/assets/strata/models/item/adakite_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/adakite_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/adamellite.json b/src/test/resources/assets/strata/models/item/adamellite.json deleted file mode 100644 index 861b7cb7..00000000 --- a/src/test/resources/assets/strata/models/item/adamellite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/adamellite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/alkali_fieldspar_granite.json b/src/test/resources/assets/strata/models/item/alkali_fieldspar_granite.json deleted file mode 100644 index e5bf45aa..00000000 --- a/src/test/resources/assets/strata/models/item/alkali_fieldspar_granite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/alkali_fieldspar_granite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/amphibolite.json b/src/test/resources/assets/strata/models/item/amphibolite.json deleted file mode 100644 index 5cc52b9f..00000000 --- a/src/test/resources/assets/strata/models/item/amphibolite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/amphibolite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/amphibolite_brick_slab.json b/src/test/resources/assets/strata/models/item/amphibolite_brick_slab.json deleted file mode 100644 index eac71da5..00000000 --- a/src/test/resources/assets/strata/models/item/amphibolite_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/amphibolite_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/amphibolite_brick_stairs.json b/src/test/resources/assets/strata/models/item/amphibolite_brick_stairs.json deleted file mode 100644 index 7f6b383d..00000000 --- a/src/test/resources/assets/strata/models/item/amphibolite_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/amphibolite_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/amphibolite_brick_wall.json b/src/test/resources/assets/strata/models/item/amphibolite_brick_wall.json deleted file mode 100644 index 195fc5dc..00000000 --- a/src/test/resources/assets/strata/models/item/amphibolite_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/amphibolite_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/amphibolite_bricks.json b/src/test/resources/assets/strata/models/item/amphibolite_bricks.json deleted file mode 100644 index 616e33da..00000000 --- a/src/test/resources/assets/strata/models/item/amphibolite_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/amphibolite_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/amphibolite_button.json b/src/test/resources/assets/strata/models/item/amphibolite_button.json deleted file mode 100644 index f5c3136e..00000000 --- a/src/test/resources/assets/strata/models/item/amphibolite_button.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/amphibolite_button_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/amphibolite_pressure_plate.json b/src/test/resources/assets/strata/models/item/amphibolite_pressure_plate.json deleted file mode 100644 index 6ce827ef..00000000 --- a/src/test/resources/assets/strata/models/item/amphibolite_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/amphibolite_pressure_plate" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/amphibolite_slab.json b/src/test/resources/assets/strata/models/item/amphibolite_slab.json deleted file mode 100644 index 6ba90a45..00000000 --- a/src/test/resources/assets/strata/models/item/amphibolite_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/amphibolite_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/amphibolite_stairs.json b/src/test/resources/assets/strata/models/item/amphibolite_stairs.json deleted file mode 100644 index 41ad6a3d..00000000 --- a/src/test/resources/assets/strata/models/item/amphibolite_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/amphibolite_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/amphibolite_wall.json b/src/test/resources/assets/strata/models/item/amphibolite_wall.json deleted file mode 100644 index eadd0455..00000000 --- a/src/test/resources/assets/strata/models/item/amphibolite_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/amphibolite_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/anorthosite.json b/src/test/resources/assets/strata/models/item/anorthosite.json deleted file mode 100644 index 48b3bf4e..00000000 --- a/src/test/resources/assets/strata/models/item/anorthosite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/anorthosite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/anthracite.json b/src/test/resources/assets/strata/models/item/anthracite.json deleted file mode 100644 index 7a5b61a0..00000000 --- a/src/test/resources/assets/strata/models/item/anthracite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/anthracite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/aphanite.json b/src/test/resources/assets/strata/models/item/aphanite.json deleted file mode 100644 index 47c84d2a..00000000 --- a/src/test/resources/assets/strata/models/item/aphanite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/aphanite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/aplite.json b/src/test/resources/assets/strata/models/item/aplite.json deleted file mode 100644 index a851aba8..00000000 --- a/src/test/resources/assets/strata/models/item/aplite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/aplite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/appinite.json b/src/test/resources/assets/strata/models/item/appinite.json deleted file mode 100644 index 88ec0e42..00000000 --- a/src/test/resources/assets/strata/models/item/appinite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/appinite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/argillite.json b/src/test/resources/assets/strata/models/item/argillite.json deleted file mode 100644 index 2226f816..00000000 --- a/src/test/resources/assets/strata/models/item/argillite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/argillite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/argillite_brick_slab.json b/src/test/resources/assets/strata/models/item/argillite_brick_slab.json deleted file mode 100644 index 3e275557..00000000 --- a/src/test/resources/assets/strata/models/item/argillite_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/argillite_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/argillite_brick_stairs.json b/src/test/resources/assets/strata/models/item/argillite_brick_stairs.json deleted file mode 100644 index d0f69eaa..00000000 --- a/src/test/resources/assets/strata/models/item/argillite_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/argillite_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/argillite_brick_wall.json b/src/test/resources/assets/strata/models/item/argillite_brick_wall.json deleted file mode 100644 index c7e03739..00000000 --- a/src/test/resources/assets/strata/models/item/argillite_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/argillite_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/argillite_bricks.json b/src/test/resources/assets/strata/models/item/argillite_bricks.json deleted file mode 100644 index 2e0bd97d..00000000 --- a/src/test/resources/assets/strata/models/item/argillite_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/argillite_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/argillite_button.json b/src/test/resources/assets/strata/models/item/argillite_button.json deleted file mode 100644 index 11293b7a..00000000 --- a/src/test/resources/assets/strata/models/item/argillite_button.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/argillite_button_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/argillite_cobblestone.json b/src/test/resources/assets/strata/models/item/argillite_cobblestone.json deleted file mode 100644 index 1ac82747..00000000 --- a/src/test/resources/assets/strata/models/item/argillite_cobblestone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/argillite_cobblestone" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/argillite_cobblestone_slab.json b/src/test/resources/assets/strata/models/item/argillite_cobblestone_slab.json deleted file mode 100644 index 6f6356ba..00000000 --- a/src/test/resources/assets/strata/models/item/argillite_cobblestone_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/argillite_cobblestone_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/argillite_cobblestone_stairs.json b/src/test/resources/assets/strata/models/item/argillite_cobblestone_stairs.json deleted file mode 100644 index 5951d57d..00000000 --- a/src/test/resources/assets/strata/models/item/argillite_cobblestone_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/argillite_cobblestone_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/argillite_cobblestone_wall.json b/src/test/resources/assets/strata/models/item/argillite_cobblestone_wall.json deleted file mode 100644 index 989bb3aa..00000000 --- a/src/test/resources/assets/strata/models/item/argillite_cobblestone_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/argillite_cobblestone_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/argillite_pressure_plate.json b/src/test/resources/assets/strata/models/item/argillite_pressure_plate.json deleted file mode 100644 index 93e019f2..00000000 --- a/src/test/resources/assets/strata/models/item/argillite_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/argillite_pressure_plate" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/argillite_slab.json b/src/test/resources/assets/strata/models/item/argillite_slab.json deleted file mode 100644 index 8122bac9..00000000 --- a/src/test/resources/assets/strata/models/item/argillite_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/argillite_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/argillite_stairs.json b/src/test/resources/assets/strata/models/item/argillite_stairs.json deleted file mode 100644 index df6ceacf..00000000 --- a/src/test/resources/assets/strata/models/item/argillite_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/argillite_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/argillite_wall.json b/src/test/resources/assets/strata/models/item/argillite_wall.json deleted file mode 100644 index 2ba60c26..00000000 --- a/src/test/resources/assets/strata/models/item/argillite_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/argillite_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/arkose.json b/src/test/resources/assets/strata/models/item/arkose.json deleted file mode 100644 index 9467160e..00000000 --- a/src/test/resources/assets/strata/models/item/arkose.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/arkose" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/basalt.json b/src/test/resources/assets/strata/models/item/basalt.json deleted file mode 100644 index d27baa66..00000000 --- a/src/test/resources/assets/strata/models/item/basalt.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/basalt" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/basalt_brick_slab.json b/src/test/resources/assets/strata/models/item/basalt_brick_slab.json deleted file mode 100644 index 6fb75a7b..00000000 --- a/src/test/resources/assets/strata/models/item/basalt_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/basalt_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/basalt_brick_stairs.json b/src/test/resources/assets/strata/models/item/basalt_brick_stairs.json deleted file mode 100644 index 9beb1359..00000000 --- a/src/test/resources/assets/strata/models/item/basalt_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/basalt_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/basalt_brick_wall.json b/src/test/resources/assets/strata/models/item/basalt_brick_wall.json deleted file mode 100644 index ae8e224b..00000000 --- a/src/test/resources/assets/strata/models/item/basalt_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/basalt_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/basalt_bricks.json b/src/test/resources/assets/strata/models/item/basalt_bricks.json deleted file mode 100644 index ce675e9d..00000000 --- a/src/test/resources/assets/strata/models/item/basalt_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/basalt_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/basalt_button.json b/src/test/resources/assets/strata/models/item/basalt_button.json deleted file mode 100644 index a302e943..00000000 --- a/src/test/resources/assets/strata/models/item/basalt_button.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/basalt_button_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/basalt_pressure_plate.json b/src/test/resources/assets/strata/models/item/basalt_pressure_plate.json deleted file mode 100644 index 3f6195e8..00000000 --- a/src/test/resources/assets/strata/models/item/basalt_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/basalt_pressure_plate" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/basalt_slab.json b/src/test/resources/assets/strata/models/item/basalt_slab.json deleted file mode 100644 index 94a833e8..00000000 --- a/src/test/resources/assets/strata/models/item/basalt_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/basalt_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/basalt_stairs.json b/src/test/resources/assets/strata/models/item/basalt_stairs.json deleted file mode 100644 index e6e8434e..00000000 --- a/src/test/resources/assets/strata/models/item/basalt_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/basalt_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/basalt_wall.json b/src/test/resources/assets/strata/models/item/basalt_wall.json deleted file mode 100644 index fc6abcde..00000000 --- a/src/test/resources/assets/strata/models/item/basalt_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/basalt_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/basaltic_trachyandesite.json b/src/test/resources/assets/strata/models/item/basaltic_trachyandesite.json deleted file mode 100644 index bf05db7c..00000000 --- a/src/test/resources/assets/strata/models/item/basaltic_trachyandesite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/basaltic_trachyandesite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/basanite.json b/src/test/resources/assets/strata/models/item/basanite.json deleted file mode 100644 index 2fde5a8e..00000000 --- a/src/test/resources/assets/strata/models/item/basanite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/basanite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/benmoreite.json b/src/test/resources/assets/strata/models/item/benmoreite.json deleted file mode 100644 index d620435a..00000000 --- a/src/test/resources/assets/strata/models/item/benmoreite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/benmoreite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/blairmorite.json b/src/test/resources/assets/strata/models/item/blairmorite.json deleted file mode 100644 index d3679e6c..00000000 --- a/src/test/resources/assets/strata/models/item/blairmorite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/blairmorite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/blue_granite.json b/src/test/resources/assets/strata/models/item/blue_granite.json deleted file mode 100644 index a70c7c25..00000000 --- a/src/test/resources/assets/strata/models/item/blue_granite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/blue_granite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/blueschist.json b/src/test/resources/assets/strata/models/item/blueschist.json deleted file mode 100644 index 87423af9..00000000 --- a/src/test/resources/assets/strata/models/item/blueschist.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/blueschist" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/boninite.json b/src/test/resources/assets/strata/models/item/boninite.json deleted file mode 100644 index fd13e769..00000000 --- a/src/test/resources/assets/strata/models/item/boninite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/boninite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/borolanite.json b/src/test/resources/assets/strata/models/item/borolanite.json deleted file mode 100644 index 9d25b763..00000000 --- a/src/test/resources/assets/strata/models/item/borolanite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/borolanite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/breccia.json b/src/test/resources/assets/strata/models/item/breccia.json deleted file mode 100644 index e3f48635..00000000 --- a/src/test/resources/assets/strata/models/item/breccia.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/breccia" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/calcarenite.json b/src/test/resources/assets/strata/models/item/calcarenite.json deleted file mode 100644 index ef914b0b..00000000 --- a/src/test/resources/assets/strata/models/item/calcarenite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/calcarenite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/calcflinta.json b/src/test/resources/assets/strata/models/item/calcflinta.json deleted file mode 100644 index c341c3df..00000000 --- a/src/test/resources/assets/strata/models/item/calcflinta.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/calcflinta" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/carbonatite.json b/src/test/resources/assets/strata/models/item/carbonatite.json deleted file mode 100644 index b6fee729..00000000 --- a/src/test/resources/assets/strata/models/item/carbonatite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/carbonatite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/cataclasite.json b/src/test/resources/assets/strata/models/item/cataclasite.json deleted file mode 100644 index 5c794780..00000000 --- a/src/test/resources/assets/strata/models/item/cataclasite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/cataclasite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chalk.json b/src/test/resources/assets/strata/models/item/chalk.json deleted file mode 100644 index 442ce479..00000000 --- a/src/test/resources/assets/strata/models/item/chalk.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chalk" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chalk_brick_slab.json b/src/test/resources/assets/strata/models/item/chalk_brick_slab.json deleted file mode 100644 index 6b72815b..00000000 --- a/src/test/resources/assets/strata/models/item/chalk_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chalk_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chalk_brick_stairs.json b/src/test/resources/assets/strata/models/item/chalk_brick_stairs.json deleted file mode 100644 index 62064dfb..00000000 --- a/src/test/resources/assets/strata/models/item/chalk_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chalk_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chalk_brick_wall.json b/src/test/resources/assets/strata/models/item/chalk_brick_wall.json deleted file mode 100644 index 53bd737e..00000000 --- a/src/test/resources/assets/strata/models/item/chalk_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chalk_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chalk_bricks.json b/src/test/resources/assets/strata/models/item/chalk_bricks.json deleted file mode 100644 index 71bdd46f..00000000 --- a/src/test/resources/assets/strata/models/item/chalk_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chalk_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chalk_button.json b/src/test/resources/assets/strata/models/item/chalk_button.json deleted file mode 100644 index e377d55a..00000000 --- a/src/test/resources/assets/strata/models/item/chalk_button.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chalk_button_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chalk_cobblestone.json b/src/test/resources/assets/strata/models/item/chalk_cobblestone.json deleted file mode 100644 index ac6bcc39..00000000 --- a/src/test/resources/assets/strata/models/item/chalk_cobblestone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chalk_cobblestone" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chalk_cobblestone_slab.json b/src/test/resources/assets/strata/models/item/chalk_cobblestone_slab.json deleted file mode 100644 index 4da412ff..00000000 --- a/src/test/resources/assets/strata/models/item/chalk_cobblestone_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chalk_cobblestone_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chalk_cobblestone_stairs.json b/src/test/resources/assets/strata/models/item/chalk_cobblestone_stairs.json deleted file mode 100644 index 63bd7dbf..00000000 --- a/src/test/resources/assets/strata/models/item/chalk_cobblestone_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chalk_cobblestone_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chalk_cobblestone_wall.json b/src/test/resources/assets/strata/models/item/chalk_cobblestone_wall.json deleted file mode 100644 index f520e4b1..00000000 --- a/src/test/resources/assets/strata/models/item/chalk_cobblestone_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chalk_cobblestone_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chalk_pressure_plate.json b/src/test/resources/assets/strata/models/item/chalk_pressure_plate.json deleted file mode 100644 index 7ea4d7e1..00000000 --- a/src/test/resources/assets/strata/models/item/chalk_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chalk_pressure_plate" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chalk_slab.json b/src/test/resources/assets/strata/models/item/chalk_slab.json deleted file mode 100644 index 736c4cae..00000000 --- a/src/test/resources/assets/strata/models/item/chalk_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chalk_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chalk_stairs.json b/src/test/resources/assets/strata/models/item/chalk_stairs.json deleted file mode 100644 index 24ae6494..00000000 --- a/src/test/resources/assets/strata/models/item/chalk_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chalk_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chalk_wall.json b/src/test/resources/assets/strata/models/item/chalk_wall.json deleted file mode 100644 index 94e941ab..00000000 --- a/src/test/resources/assets/strata/models/item/chalk_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chalk_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/charnockite.json b/src/test/resources/assets/strata/models/item/charnockite.json deleted file mode 100644 index 0e7fc084..00000000 --- a/src/test/resources/assets/strata/models/item/charnockite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/charnockite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chert.json b/src/test/resources/assets/strata/models/item/chert.json deleted file mode 100644 index 4058e7c8..00000000 --- a/src/test/resources/assets/strata/models/item/chert.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chert" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chiseled_aa_bricks.json b/src/test/resources/assets/strata/models/item/chiseled_aa_bricks.json deleted file mode 100644 index 09d611b1..00000000 --- a/src/test/resources/assets/strata/models/item/chiseled_aa_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chiseled_aa_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chiseled_adakite_bricks.json b/src/test/resources/assets/strata/models/item/chiseled_adakite_bricks.json deleted file mode 100644 index b4048f4e..00000000 --- a/src/test/resources/assets/strata/models/item/chiseled_adakite_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chiseled_adakite_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chiseled_amphibolite_bricks.json b/src/test/resources/assets/strata/models/item/chiseled_amphibolite_bricks.json deleted file mode 100644 index 5d0c101f..00000000 --- a/src/test/resources/assets/strata/models/item/chiseled_amphibolite_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chiseled_amphibolite_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chiseled_argillite_bricks.json b/src/test/resources/assets/strata/models/item/chiseled_argillite_bricks.json deleted file mode 100644 index da4c9719..00000000 --- a/src/test/resources/assets/strata/models/item/chiseled_argillite_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chiseled_argillite_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chiseled_basalt_bricks.json b/src/test/resources/assets/strata/models/item/chiseled_basalt_bricks.json deleted file mode 100644 index 6c57284d..00000000 --- a/src/test/resources/assets/strata/models/item/chiseled_basalt_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chiseled_basalt_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chiseled_chalk_bricks.json b/src/test/resources/assets/strata/models/item/chiseled_chalk_bricks.json deleted file mode 100644 index 483a043f..00000000 --- a/src/test/resources/assets/strata/models/item/chiseled_chalk_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chiseled_chalk_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chiseled_eclogite_bricks.json b/src/test/resources/assets/strata/models/item/chiseled_eclogite_bricks.json deleted file mode 100644 index c620c689..00000000 --- a/src/test/resources/assets/strata/models/item/chiseled_eclogite_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chiseled_eclogite_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chiseled_gabbro_bricks.json b/src/test/resources/assets/strata/models/item/chiseled_gabbro_bricks.json deleted file mode 100644 index bdbece65..00000000 --- a/src/test/resources/assets/strata/models/item/chiseled_gabbro_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chiseled_gabbro_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chiseled_gneiss_bricks.json b/src/test/resources/assets/strata/models/item/chiseled_gneiss_bricks.json deleted file mode 100644 index 03a4a519..00000000 --- a/src/test/resources/assets/strata/models/item/chiseled_gneiss_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chiseled_gneiss_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chiseled_jaspillite_bricks.json b/src/test/resources/assets/strata/models/item/chiseled_jaspillite_bricks.json deleted file mode 100644 index bfb39957..00000000 --- a/src/test/resources/assets/strata/models/item/chiseled_jaspillite_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chiseled_jaspillite_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chiseled_limestone_bricks.json b/src/test/resources/assets/strata/models/item/chiseled_limestone_bricks.json deleted file mode 100644 index e7018aac..00000000 --- a/src/test/resources/assets/strata/models/item/chiseled_limestone_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chiseled_limestone_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chiseled_marble_bricks.json b/src/test/resources/assets/strata/models/item/chiseled_marble_bricks.json deleted file mode 100644 index 4bac98a0..00000000 --- a/src/test/resources/assets/strata/models/item/chiseled_marble_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chiseled_marble_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chiseled_pahoehoe_bricks.json b/src/test/resources/assets/strata/models/item/chiseled_pahoehoe_bricks.json deleted file mode 100644 index 90115ab0..00000000 --- a/src/test/resources/assets/strata/models/item/chiseled_pahoehoe_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chiseled_pahoehoe_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chiseled_schist_bricks.json b/src/test/resources/assets/strata/models/item/chiseled_schist_bricks.json deleted file mode 100644 index 418bd316..00000000 --- a/src/test/resources/assets/strata/models/item/chiseled_schist_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chiseled_schist_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/chiseled_shale_bricks.json b/src/test/resources/assets/strata/models/item/chiseled_shale_bricks.json deleted file mode 100644 index 3b69c3fa..00000000 --- a/src/test/resources/assets/strata/models/item/chiseled_shale_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/chiseled_shale_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/claystone.json b/src/test/resources/assets/strata/models/item/claystone.json deleted file mode 100644 index 25632bdb..00000000 --- a/src/test/resources/assets/strata/models/item/claystone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/claystone" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/comendite.json b/src/test/resources/assets/strata/models/item/comendite.json deleted file mode 100644 index 83d4ed2d..00000000 --- a/src/test/resources/assets/strata/models/item/comendite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/comendite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/conglomerate.json b/src/test/resources/assets/strata/models/item/conglomerate.json deleted file mode 100644 index ca0e3b96..00000000 --- a/src/test/resources/assets/strata/models/item/conglomerate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/conglomerate" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/coquina.json b/src/test/resources/assets/strata/models/item/coquina.json deleted file mode 100644 index 9a65758e..00000000 --- a/src/test/resources/assets/strata/models/item/coquina.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/coquina" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/cracked_aa_bricks.json b/src/test/resources/assets/strata/models/item/cracked_aa_bricks.json deleted file mode 100644 index 147605d7..00000000 --- a/src/test/resources/assets/strata/models/item/cracked_aa_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/cracked_aa_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/cracked_adakite_bricks.json b/src/test/resources/assets/strata/models/item/cracked_adakite_bricks.json deleted file mode 100644 index 9fc1cbae..00000000 --- a/src/test/resources/assets/strata/models/item/cracked_adakite_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/cracked_adakite_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/cracked_amphibolite_bricks.json b/src/test/resources/assets/strata/models/item/cracked_amphibolite_bricks.json deleted file mode 100644 index 74c1a042..00000000 --- a/src/test/resources/assets/strata/models/item/cracked_amphibolite_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/cracked_amphibolite_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/cracked_argillite_bricks.json b/src/test/resources/assets/strata/models/item/cracked_argillite_bricks.json deleted file mode 100644 index 6bc8b960..00000000 --- a/src/test/resources/assets/strata/models/item/cracked_argillite_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/cracked_argillite_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/cracked_basalt_bricks.json b/src/test/resources/assets/strata/models/item/cracked_basalt_bricks.json deleted file mode 100644 index 195c298f..00000000 --- a/src/test/resources/assets/strata/models/item/cracked_basalt_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/cracked_basalt_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/cracked_chalk_bricks.json b/src/test/resources/assets/strata/models/item/cracked_chalk_bricks.json deleted file mode 100644 index 5b123efd..00000000 --- a/src/test/resources/assets/strata/models/item/cracked_chalk_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/cracked_chalk_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/cracked_eclogite_bricks.json b/src/test/resources/assets/strata/models/item/cracked_eclogite_bricks.json deleted file mode 100644 index 883fd673..00000000 --- a/src/test/resources/assets/strata/models/item/cracked_eclogite_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/cracked_eclogite_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/cracked_gabbro_bricks.json b/src/test/resources/assets/strata/models/item/cracked_gabbro_bricks.json deleted file mode 100644 index f4655c4e..00000000 --- a/src/test/resources/assets/strata/models/item/cracked_gabbro_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/cracked_gabbro_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/cracked_gneiss_bricks.json b/src/test/resources/assets/strata/models/item/cracked_gneiss_bricks.json deleted file mode 100644 index 1e4d2b00..00000000 --- a/src/test/resources/assets/strata/models/item/cracked_gneiss_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/cracked_gneiss_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/cracked_jaspillite_bricks.json b/src/test/resources/assets/strata/models/item/cracked_jaspillite_bricks.json deleted file mode 100644 index 6738f59c..00000000 --- a/src/test/resources/assets/strata/models/item/cracked_jaspillite_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/cracked_jaspillite_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/cracked_limestone_bricks.json b/src/test/resources/assets/strata/models/item/cracked_limestone_bricks.json deleted file mode 100644 index a16f93a4..00000000 --- a/src/test/resources/assets/strata/models/item/cracked_limestone_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/cracked_limestone_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/cracked_marble_bricks.json b/src/test/resources/assets/strata/models/item/cracked_marble_bricks.json deleted file mode 100644 index eebc7d6d..00000000 --- a/src/test/resources/assets/strata/models/item/cracked_marble_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/cracked_marble_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/cracked_pahoehoe_bricks.json b/src/test/resources/assets/strata/models/item/cracked_pahoehoe_bricks.json deleted file mode 100644 index 183939e3..00000000 --- a/src/test/resources/assets/strata/models/item/cracked_pahoehoe_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/cracked_pahoehoe_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/cracked_schist_bricks.json b/src/test/resources/assets/strata/models/item/cracked_schist_bricks.json deleted file mode 100644 index a670f274..00000000 --- a/src/test/resources/assets/strata/models/item/cracked_schist_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/cracked_schist_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/cracked_shale_bricks.json b/src/test/resources/assets/strata/models/item/cracked_shale_bricks.json deleted file mode 100644 index 7c58497a..00000000 --- a/src/test/resources/assets/strata/models/item/cracked_shale_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/cracked_shale_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/dacite.json b/src/test/resources/assets/strata/models/item/dacite.json deleted file mode 100644 index 736bff13..00000000 --- a/src/test/resources/assets/strata/models/item/dacite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/dacite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/debug_block.json b/src/test/resources/assets/strata/models/item/debug_block.json deleted file mode 100644 index 8f21a830..00000000 --- a/src/test/resources/assets/strata/models/item/debug_block.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/debug_block" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/debug_item.json b/src/test/resources/assets/strata/models/item/debug_item.json deleted file mode 100644 index f56cd8e9..00000000 --- a/src/test/resources/assets/strata/models/item/debug_item.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "strata:items/debug_item" - } -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/debug_ore.json b/src/test/resources/assets/strata/models/item/debug_ore.json deleted file mode 100644 index 54e3bc1c..00000000 --- a/src/test/resources/assets/strata/models/item/debug_ore.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/debug_ore" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/debug_slab.json b/src/test/resources/assets/strata/models/item/debug_slab.json deleted file mode 100644 index 50530f1d..00000000 --- a/src/test/resources/assets/strata/models/item/debug_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/debug_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/debug_stairs.json b/src/test/resources/assets/strata/models/item/debug_stairs.json deleted file mode 100644 index 7639b10a..00000000 --- a/src/test/resources/assets/strata/models/item/debug_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/debug_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/debug_wall.json b/src/test/resources/assets/strata/models/item/debug_wall.json deleted file mode 100644 index ed45fdda..00000000 --- a/src/test/resources/assets/strata/models/item/debug_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/debug_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/diabase.json b/src/test/resources/assets/strata/models/item/diabase.json deleted file mode 100644 index c038172f..00000000 --- a/src/test/resources/assets/strata/models/item/diabase.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/diabase" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/diamictite.json b/src/test/resources/assets/strata/models/item/diamictite.json deleted file mode 100644 index aba093ef..00000000 --- a/src/test/resources/assets/strata/models/item/diamictite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/diamictite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/diatomite.json b/src/test/resources/assets/strata/models/item/diatomite.json deleted file mode 100644 index 2f6dbf06..00000000 --- a/src/test/resources/assets/strata/models/item/diatomite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/diatomite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/dolomite.json b/src/test/resources/assets/strata/models/item/dolomite.json deleted file mode 100644 index fb86e6f4..00000000 --- a/src/test/resources/assets/strata/models/item/dolomite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/dolomite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/dunite.json b/src/test/resources/assets/strata/models/item/dunite.json deleted file mode 100644 index deb51a32..00000000 --- a/src/test/resources/assets/strata/models/item/dunite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/dunite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/eclogite.json b/src/test/resources/assets/strata/models/item/eclogite.json deleted file mode 100644 index 5fc49b95..00000000 --- a/src/test/resources/assets/strata/models/item/eclogite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/eclogite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/eclogite_brick_slab.json b/src/test/resources/assets/strata/models/item/eclogite_brick_slab.json deleted file mode 100644 index bd1bd8d6..00000000 --- a/src/test/resources/assets/strata/models/item/eclogite_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/eclogite_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/eclogite_brick_stairs.json b/src/test/resources/assets/strata/models/item/eclogite_brick_stairs.json deleted file mode 100644 index 2b3d3b4d..00000000 --- a/src/test/resources/assets/strata/models/item/eclogite_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/eclogite_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/eclogite_brick_wall.json b/src/test/resources/assets/strata/models/item/eclogite_brick_wall.json deleted file mode 100644 index 5814f150..00000000 --- a/src/test/resources/assets/strata/models/item/eclogite_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/eclogite_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/eclogite_bricks.json b/src/test/resources/assets/strata/models/item/eclogite_bricks.json deleted file mode 100644 index 99f0257a..00000000 --- a/src/test/resources/assets/strata/models/item/eclogite_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/eclogite_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/eclogite_button.json b/src/test/resources/assets/strata/models/item/eclogite_button.json deleted file mode 100644 index 100d925d..00000000 --- a/src/test/resources/assets/strata/models/item/eclogite_button.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/eclogite_button_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/eclogite_cobblestone.json b/src/test/resources/assets/strata/models/item/eclogite_cobblestone.json deleted file mode 100644 index 1edd8bce..00000000 --- a/src/test/resources/assets/strata/models/item/eclogite_cobblestone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/eclogite_cobblestone" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/eclogite_cobblestone_slab.json b/src/test/resources/assets/strata/models/item/eclogite_cobblestone_slab.json deleted file mode 100644 index 62892f06..00000000 --- a/src/test/resources/assets/strata/models/item/eclogite_cobblestone_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/eclogite_cobblestone_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/eclogite_cobblestone_stairs.json b/src/test/resources/assets/strata/models/item/eclogite_cobblestone_stairs.json deleted file mode 100644 index 95bb8d5c..00000000 --- a/src/test/resources/assets/strata/models/item/eclogite_cobblestone_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/eclogite_cobblestone_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/eclogite_cobblestone_wall.json b/src/test/resources/assets/strata/models/item/eclogite_cobblestone_wall.json deleted file mode 100644 index b3240ca7..00000000 --- a/src/test/resources/assets/strata/models/item/eclogite_cobblestone_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/eclogite_cobblestone_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/eclogite_pressure_plate.json b/src/test/resources/assets/strata/models/item/eclogite_pressure_plate.json deleted file mode 100644 index ceb00ed2..00000000 --- a/src/test/resources/assets/strata/models/item/eclogite_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/eclogite_pressure_plate" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/eclogite_slab.json b/src/test/resources/assets/strata/models/item/eclogite_slab.json deleted file mode 100644 index e4be0901..00000000 --- a/src/test/resources/assets/strata/models/item/eclogite_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/eclogite_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/eclogite_stairs.json b/src/test/resources/assets/strata/models/item/eclogite_stairs.json deleted file mode 100644 index f903da8a..00000000 --- a/src/test/resources/assets/strata/models/item/eclogite_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/eclogite_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/eclogite_wall.json b/src/test/resources/assets/strata/models/item/eclogite_wall.json deleted file mode 100644 index 08456c0b..00000000 --- a/src/test/resources/assets/strata/models/item/eclogite_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/eclogite_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/enderbite.json b/src/test/resources/assets/strata/models/item/enderbite.json deleted file mode 100644 index b47ea753..00000000 --- a/src/test/resources/assets/strata/models/item/enderbite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/enderbite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/epidosite.json b/src/test/resources/assets/strata/models/item/epidosite.json deleted file mode 100644 index 366426da..00000000 --- a/src/test/resources/assets/strata/models/item/epidosite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/epidosite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/essexite.json b/src/test/resources/assets/strata/models/item/essexite.json deleted file mode 100644 index 8974e374..00000000 --- a/src/test/resources/assets/strata/models/item/essexite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/essexite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/evaporite.json b/src/test/resources/assets/strata/models/item/evaporite.json deleted file mode 100644 index b08cc46e..00000000 --- a/src/test/resources/assets/strata/models/item/evaporite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/evaporite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/felsite.json b/src/test/resources/assets/strata/models/item/felsite.json deleted file mode 100644 index 86594aa6..00000000 --- a/src/test/resources/assets/strata/models/item/felsite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/felsite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/foidolite.json b/src/test/resources/assets/strata/models/item/foidolite.json deleted file mode 100644 index c7047244..00000000 --- a/src/test/resources/assets/strata/models/item/foidolite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/foidolite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/gabbro.json b/src/test/resources/assets/strata/models/item/gabbro.json deleted file mode 100644 index 0f286dfb..00000000 --- a/src/test/resources/assets/strata/models/item/gabbro.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/gabbro" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/gabbro_brick_slab.json b/src/test/resources/assets/strata/models/item/gabbro_brick_slab.json deleted file mode 100644 index 285c52cc..00000000 --- a/src/test/resources/assets/strata/models/item/gabbro_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/gabbro_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/gabbro_brick_stairs.json b/src/test/resources/assets/strata/models/item/gabbro_brick_stairs.json deleted file mode 100644 index 409253f6..00000000 --- a/src/test/resources/assets/strata/models/item/gabbro_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/gabbro_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/gabbro_brick_wall.json b/src/test/resources/assets/strata/models/item/gabbro_brick_wall.json deleted file mode 100644 index a6c009be..00000000 --- a/src/test/resources/assets/strata/models/item/gabbro_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/gabbro_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/gabbro_bricks.json b/src/test/resources/assets/strata/models/item/gabbro_bricks.json deleted file mode 100644 index e053aacb..00000000 --- a/src/test/resources/assets/strata/models/item/gabbro_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/gabbro_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/gabbro_button.json b/src/test/resources/assets/strata/models/item/gabbro_button.json deleted file mode 100644 index 3fd16de7..00000000 --- a/src/test/resources/assets/strata/models/item/gabbro_button.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/gabbro_button_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/gabbro_pressure_plate.json b/src/test/resources/assets/strata/models/item/gabbro_pressure_plate.json deleted file mode 100644 index 57417486..00000000 --- a/src/test/resources/assets/strata/models/item/gabbro_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/gabbro_pressure_plate" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/gabbro_slab.json b/src/test/resources/assets/strata/models/item/gabbro_slab.json deleted file mode 100644 index d9eabfb8..00000000 --- a/src/test/resources/assets/strata/models/item/gabbro_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/gabbro_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/gabbro_stairs.json b/src/test/resources/assets/strata/models/item/gabbro_stairs.json deleted file mode 100644 index f7dd4320..00000000 --- a/src/test/resources/assets/strata/models/item/gabbro_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/gabbro_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/gabbro_wall.json b/src/test/resources/assets/strata/models/item/gabbro_wall.json deleted file mode 100644 index daf13892..00000000 --- a/src/test/resources/assets/strata/models/item/gabbro_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/gabbro_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/ganister.json b/src/test/resources/assets/strata/models/item/ganister.json deleted file mode 100644 index 0ef669af..00000000 --- a/src/test/resources/assets/strata/models/item/ganister.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/ganister" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/geyserite.json b/src/test/resources/assets/strata/models/item/geyserite.json deleted file mode 100644 index 53e855dc..00000000 --- a/src/test/resources/assets/strata/models/item/geyserite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/geyserite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/gneiss.json b/src/test/resources/assets/strata/models/item/gneiss.json deleted file mode 100644 index 82773d73..00000000 --- a/src/test/resources/assets/strata/models/item/gneiss.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/gneiss" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/gneiss_brick_slab.json b/src/test/resources/assets/strata/models/item/gneiss_brick_slab.json deleted file mode 100644 index 8b760649..00000000 --- a/src/test/resources/assets/strata/models/item/gneiss_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/gneiss_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/gneiss_brick_stairs.json b/src/test/resources/assets/strata/models/item/gneiss_brick_stairs.json deleted file mode 100644 index 672e9828..00000000 --- a/src/test/resources/assets/strata/models/item/gneiss_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/gneiss_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/gneiss_brick_wall.json b/src/test/resources/assets/strata/models/item/gneiss_brick_wall.json deleted file mode 100644 index d981edfd..00000000 --- a/src/test/resources/assets/strata/models/item/gneiss_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/gneiss_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/gneiss_bricks.json b/src/test/resources/assets/strata/models/item/gneiss_bricks.json deleted file mode 100644 index 77a3b457..00000000 --- a/src/test/resources/assets/strata/models/item/gneiss_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/gneiss_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/gneiss_button.json b/src/test/resources/assets/strata/models/item/gneiss_button.json deleted file mode 100644 index 144c55ba..00000000 --- a/src/test/resources/assets/strata/models/item/gneiss_button.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/gneiss_button_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/gneiss_pressure_plate.json b/src/test/resources/assets/strata/models/item/gneiss_pressure_plate.json deleted file mode 100644 index 67715c1e..00000000 --- a/src/test/resources/assets/strata/models/item/gneiss_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/gneiss_pressure_plate" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/gneiss_slab.json b/src/test/resources/assets/strata/models/item/gneiss_slab.json deleted file mode 100644 index 0b4470fe..00000000 --- a/src/test/resources/assets/strata/models/item/gneiss_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/gneiss_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/gneiss_stairs.json b/src/test/resources/assets/strata/models/item/gneiss_stairs.json deleted file mode 100644 index 03649f8a..00000000 --- a/src/test/resources/assets/strata/models/item/gneiss_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/gneiss_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/gneiss_wall.json b/src/test/resources/assets/strata/models/item/gneiss_wall.json deleted file mode 100644 index 1a55542f..00000000 --- a/src/test/resources/assets/strata/models/item/gneiss_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/gneiss_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/gossan.json b/src/test/resources/assets/strata/models/item/gossan.json deleted file mode 100644 index 6ef2883b..00000000 --- a/src/test/resources/assets/strata/models/item/gossan.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/gossan" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/granodiorite.json b/src/test/resources/assets/strata/models/item/granodiorite.json deleted file mode 100644 index 19c482c1..00000000 --- a/src/test/resources/assets/strata/models/item/granodiorite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/granodiorite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/granophyre.json b/src/test/resources/assets/strata/models/item/granophyre.json deleted file mode 100644 index 6a685f24..00000000 --- a/src/test/resources/assets/strata/models/item/granophyre.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/granophyre" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/granulite.json b/src/test/resources/assets/strata/models/item/granulite.json deleted file mode 100644 index 6dc003f2..00000000 --- a/src/test/resources/assets/strata/models/item/granulite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/granulite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/greenschist.json b/src/test/resources/assets/strata/models/item/greenschist.json deleted file mode 100644 index 2d87e570..00000000 --- a/src/test/resources/assets/strata/models/item/greenschist.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/greenschist" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/greywacke.json b/src/test/resources/assets/strata/models/item/greywacke.json deleted file mode 100644 index 67a1b45a..00000000 --- a/src/test/resources/assets/strata/models/item/greywacke.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/greywacke" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/gritstone.json b/src/test/resources/assets/strata/models/item/gritstone.json deleted file mode 100644 index 18e1a87a..00000000 --- a/src/test/resources/assets/strata/models/item/gritstone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/gritstone" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/hawaiite.json b/src/test/resources/assets/strata/models/item/hawaiite.json deleted file mode 100644 index 42c1cb66..00000000 --- a/src/test/resources/assets/strata/models/item/hawaiite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/hawaiite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/hazburgite.json b/src/test/resources/assets/strata/models/item/hazburgite.json deleted file mode 100644 index 3001e8fd..00000000 --- a/src/test/resources/assets/strata/models/item/hazburgite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/hazburgite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/hornblendite.json b/src/test/resources/assets/strata/models/item/hornblendite.json deleted file mode 100644 index bd7e2922..00000000 --- a/src/test/resources/assets/strata/models/item/hornblendite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/hornblendite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/hornfels.json b/src/test/resources/assets/strata/models/item/hornfels.json deleted file mode 100644 index 52b47e4b..00000000 --- a/src/test/resources/assets/strata/models/item/hornfels.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/hornfels" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/hyaloclastit.json b/src/test/resources/assets/strata/models/item/hyaloclastit.json deleted file mode 100644 index f73c9b86..00000000 --- a/src/test/resources/assets/strata/models/item/hyaloclastit.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/hyaloclastit" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/hyaloclastite.json b/src/test/resources/assets/strata/models/item/hyaloclastite.json deleted file mode 100644 index e5a2af09..00000000 --- a/src/test/resources/assets/strata/models/item/hyaloclastite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/hyaloclastite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/icelandite.json b/src/test/resources/assets/strata/models/item/icelandite.json deleted file mode 100644 index ea2f9397..00000000 --- a/src/test/resources/assets/strata/models/item/icelandite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/icelandite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/ijolite.json b/src/test/resources/assets/strata/models/item/ijolite.json deleted file mode 100644 index aeec22d2..00000000 --- a/src/test/resources/assets/strata/models/item/ijolite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/ijolite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/itacolumite.json b/src/test/resources/assets/strata/models/item/itacolumite.json deleted file mode 100644 index b290acf6..00000000 --- a/src/test/resources/assets/strata/models/item/itacolumite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/itacolumite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/jadeitite.json b/src/test/resources/assets/strata/models/item/jadeitite.json deleted file mode 100644 index 55e7ba93..00000000 --- a/src/test/resources/assets/strata/models/item/jadeitite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/jadeitite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/jasperoid.json b/src/test/resources/assets/strata/models/item/jasperoid.json deleted file mode 100644 index a73968ce..00000000 --- a/src/test/resources/assets/strata/models/item/jasperoid.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/jasperoid" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/jaspillite.json b/src/test/resources/assets/strata/models/item/jaspillite.json deleted file mode 100644 index b1e5de04..00000000 --- a/src/test/resources/assets/strata/models/item/jaspillite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/jaspillite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/jaspillite_brick_slab.json b/src/test/resources/assets/strata/models/item/jaspillite_brick_slab.json deleted file mode 100644 index 64cca52b..00000000 --- a/src/test/resources/assets/strata/models/item/jaspillite_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/jaspillite_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/jaspillite_brick_stairs.json b/src/test/resources/assets/strata/models/item/jaspillite_brick_stairs.json deleted file mode 100644 index a51d9098..00000000 --- a/src/test/resources/assets/strata/models/item/jaspillite_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/jaspillite_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/jaspillite_brick_wall.json b/src/test/resources/assets/strata/models/item/jaspillite_brick_wall.json deleted file mode 100644 index 009a2841..00000000 --- a/src/test/resources/assets/strata/models/item/jaspillite_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/jaspillite_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/jaspillite_bricks.json b/src/test/resources/assets/strata/models/item/jaspillite_bricks.json deleted file mode 100644 index a70dc78d..00000000 --- a/src/test/resources/assets/strata/models/item/jaspillite_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/jaspillite_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/jaspillite_button.json b/src/test/resources/assets/strata/models/item/jaspillite_button.json deleted file mode 100644 index 9733c2ac..00000000 --- a/src/test/resources/assets/strata/models/item/jaspillite_button.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/jaspillite_button_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/jaspillite_cobblestone.json b/src/test/resources/assets/strata/models/item/jaspillite_cobblestone.json deleted file mode 100644 index d56110bc..00000000 --- a/src/test/resources/assets/strata/models/item/jaspillite_cobblestone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/jaspillite_cobblestone" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/jaspillite_cobblestone_slab.json b/src/test/resources/assets/strata/models/item/jaspillite_cobblestone_slab.json deleted file mode 100644 index 7dbdb6f4..00000000 --- a/src/test/resources/assets/strata/models/item/jaspillite_cobblestone_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/jaspillite_cobblestone_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/jaspillite_cobblestone_stairs.json b/src/test/resources/assets/strata/models/item/jaspillite_cobblestone_stairs.json deleted file mode 100644 index a4845258..00000000 --- a/src/test/resources/assets/strata/models/item/jaspillite_cobblestone_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/jaspillite_cobblestone_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/jaspillite_cobblestone_wall.json b/src/test/resources/assets/strata/models/item/jaspillite_cobblestone_wall.json deleted file mode 100644 index 9be047e7..00000000 --- a/src/test/resources/assets/strata/models/item/jaspillite_cobblestone_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/jaspillite_cobblestone_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/jaspillite_pressure_plate.json b/src/test/resources/assets/strata/models/item/jaspillite_pressure_plate.json deleted file mode 100644 index 230397ad..00000000 --- a/src/test/resources/assets/strata/models/item/jaspillite_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/jaspillite_pressure_plate" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/jaspillite_slab.json b/src/test/resources/assets/strata/models/item/jaspillite_slab.json deleted file mode 100644 index 5f22f4bb..00000000 --- a/src/test/resources/assets/strata/models/item/jaspillite_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/jaspillite_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/jaspillite_stairs.json b/src/test/resources/assets/strata/models/item/jaspillite_stairs.json deleted file mode 100644 index 1c814a6a..00000000 --- a/src/test/resources/assets/strata/models/item/jaspillite_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/jaspillite_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/jaspillite_wall.json b/src/test/resources/assets/strata/models/item/jaspillite_wall.json deleted file mode 100644 index 724d9044..00000000 --- a/src/test/resources/assets/strata/models/item/jaspillite_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/jaspillite_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/kenyte.json b/src/test/resources/assets/strata/models/item/kenyte.json deleted file mode 100644 index 87586430..00000000 --- a/src/test/resources/assets/strata/models/item/kenyte.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/kenyte" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/kimberlite.json b/src/test/resources/assets/strata/models/item/kimberlite.json deleted file mode 100644 index e3fff881..00000000 --- a/src/test/resources/assets/strata/models/item/kimberlite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/kimberlite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/komatiite.json b/src/test/resources/assets/strata/models/item/komatiite.json deleted file mode 100644 index b1604743..00000000 --- a/src/test/resources/assets/strata/models/item/komatiite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/komatiite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/lamprophyre.json b/src/test/resources/assets/strata/models/item/lamprophyre.json deleted file mode 100644 index a52bf8de..00000000 --- a/src/test/resources/assets/strata/models/item/lamprophyre.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/lamprophyre" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/larvikite.json b/src/test/resources/assets/strata/models/item/larvikite.json deleted file mode 100644 index d53e29b1..00000000 --- a/src/test/resources/assets/strata/models/item/larvikite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/larvikite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/laterite.json b/src/test/resources/assets/strata/models/item/laterite.json deleted file mode 100644 index 946ca26e..00000000 --- a/src/test/resources/assets/strata/models/item/laterite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/laterite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/latite.json b/src/test/resources/assets/strata/models/item/latite.json deleted file mode 100644 index efe3a445..00000000 --- a/src/test/resources/assets/strata/models/item/latite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/latite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/lherzolite.json b/src/test/resources/assets/strata/models/item/lherzolite.json deleted file mode 100644 index 6c53b0fb..00000000 --- a/src/test/resources/assets/strata/models/item/lherzolite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/lherzolite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/limestone.json b/src/test/resources/assets/strata/models/item/limestone.json deleted file mode 100644 index e91153d0..00000000 --- a/src/test/resources/assets/strata/models/item/limestone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/limestone" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/limestone_brick_slab.json b/src/test/resources/assets/strata/models/item/limestone_brick_slab.json deleted file mode 100644 index 629b5230..00000000 --- a/src/test/resources/assets/strata/models/item/limestone_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/limestone_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/limestone_brick_stairs.json b/src/test/resources/assets/strata/models/item/limestone_brick_stairs.json deleted file mode 100644 index e16fbe60..00000000 --- a/src/test/resources/assets/strata/models/item/limestone_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/limestone_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/limestone_brick_wall.json b/src/test/resources/assets/strata/models/item/limestone_brick_wall.json deleted file mode 100644 index e6ab345b..00000000 --- a/src/test/resources/assets/strata/models/item/limestone_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/limestone_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/limestone_bricks.json b/src/test/resources/assets/strata/models/item/limestone_bricks.json deleted file mode 100644 index dea63242..00000000 --- a/src/test/resources/assets/strata/models/item/limestone_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/limestone_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/limestone_button.json b/src/test/resources/assets/strata/models/item/limestone_button.json deleted file mode 100644 index eaa0eadf..00000000 --- a/src/test/resources/assets/strata/models/item/limestone_button.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/limestone_button_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/limestone_pressure_plate.json b/src/test/resources/assets/strata/models/item/limestone_pressure_plate.json deleted file mode 100644 index b16ed24b..00000000 --- a/src/test/resources/assets/strata/models/item/limestone_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/limestone_pressure_plate" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/limestone_slab.json b/src/test/resources/assets/strata/models/item/limestone_slab.json deleted file mode 100644 index e484a5b9..00000000 --- a/src/test/resources/assets/strata/models/item/limestone_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/limestone_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/limestone_stairs.json b/src/test/resources/assets/strata/models/item/limestone_stairs.json deleted file mode 100644 index 2670092c..00000000 --- a/src/test/resources/assets/strata/models/item/limestone_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/limestone_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/limestone_wall.json b/src/test/resources/assets/strata/models/item/limestone_wall.json deleted file mode 100644 index d987a79e..00000000 --- a/src/test/resources/assets/strata/models/item/limestone_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/limestone_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/litchfieldite.json b/src/test/resources/assets/strata/models/item/litchfieldite.json deleted file mode 100644 index 16bebebf..00000000 --- a/src/test/resources/assets/strata/models/item/litchfieldite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/litchfieldite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/llanite.json b/src/test/resources/assets/strata/models/item/llanite.json deleted file mode 100644 index 9d5eab74..00000000 --- a/src/test/resources/assets/strata/models/item/llanite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/llanite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/luxullianite.json b/src/test/resources/assets/strata/models/item/luxullianite.json deleted file mode 100644 index 52b843bc..00000000 --- a/src/test/resources/assets/strata/models/item/luxullianite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/luxullianite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mangerite.json b/src/test/resources/assets/strata/models/item/mangerite.json deleted file mode 100644 index e7f822a3..00000000 --- a/src/test/resources/assets/strata/models/item/mangerite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mangerite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/marble.json b/src/test/resources/assets/strata/models/item/marble.json deleted file mode 100644 index a4e29750..00000000 --- a/src/test/resources/assets/strata/models/item/marble.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/marble" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/marble_brick_slab.json b/src/test/resources/assets/strata/models/item/marble_brick_slab.json deleted file mode 100644 index f64364ac..00000000 --- a/src/test/resources/assets/strata/models/item/marble_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/marble_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/marble_brick_stairs.json b/src/test/resources/assets/strata/models/item/marble_brick_stairs.json deleted file mode 100644 index cd28ae23..00000000 --- a/src/test/resources/assets/strata/models/item/marble_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/marble_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/marble_brick_wall.json b/src/test/resources/assets/strata/models/item/marble_brick_wall.json deleted file mode 100644 index 023a00f4..00000000 --- a/src/test/resources/assets/strata/models/item/marble_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/marble_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/marble_bricks.json b/src/test/resources/assets/strata/models/item/marble_bricks.json deleted file mode 100644 index 87ff8234..00000000 --- a/src/test/resources/assets/strata/models/item/marble_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/marble_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/marble_button.json b/src/test/resources/assets/strata/models/item/marble_button.json deleted file mode 100644 index c7d57b4e..00000000 --- a/src/test/resources/assets/strata/models/item/marble_button.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/marble_button_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/marble_cobblestone.json b/src/test/resources/assets/strata/models/item/marble_cobblestone.json deleted file mode 100644 index 40154032..00000000 --- a/src/test/resources/assets/strata/models/item/marble_cobblestone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/marble_cobblestone" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/marble_cobblestone_slab.json b/src/test/resources/assets/strata/models/item/marble_cobblestone_slab.json deleted file mode 100644 index cc17946d..00000000 --- a/src/test/resources/assets/strata/models/item/marble_cobblestone_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/marble_cobblestone_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/marble_cobblestone_stairs.json b/src/test/resources/assets/strata/models/item/marble_cobblestone_stairs.json deleted file mode 100644 index c7ca7791..00000000 --- a/src/test/resources/assets/strata/models/item/marble_cobblestone_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/marble_cobblestone_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/marble_cobblestone_wall.json b/src/test/resources/assets/strata/models/item/marble_cobblestone_wall.json deleted file mode 100644 index 8826af97..00000000 --- a/src/test/resources/assets/strata/models/item/marble_cobblestone_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/marble_cobblestone_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/marble_pressure_plate.json b/src/test/resources/assets/strata/models/item/marble_pressure_plate.json deleted file mode 100644 index 3adfb80f..00000000 --- a/src/test/resources/assets/strata/models/item/marble_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/marble_pressure_plate" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/marble_slab.json b/src/test/resources/assets/strata/models/item/marble_slab.json deleted file mode 100644 index 4a7d1f8e..00000000 --- a/src/test/resources/assets/strata/models/item/marble_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/marble_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/marble_stairs.json b/src/test/resources/assets/strata/models/item/marble_stairs.json deleted file mode 100644 index 801f1129..00000000 --- a/src/test/resources/assets/strata/models/item/marble_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/marble_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/marble_wall.json b/src/test/resources/assets/strata/models/item/marble_wall.json deleted file mode 100644 index c4d8ec9e..00000000 --- a/src/test/resources/assets/strata/models/item/marble_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/marble_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/marl.json b/src/test/resources/assets/strata/models/item/marl.json deleted file mode 100644 index 922872ed..00000000 --- a/src/test/resources/assets/strata/models/item/marl.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/marl" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/metapelite.json b/src/test/resources/assets/strata/models/item/metapelite.json deleted file mode 100644 index 22cf039c..00000000 --- a/src/test/resources/assets/strata/models/item/metapelite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/metapelite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/metapsammite.json b/src/test/resources/assets/strata/models/item/metapsammite.json deleted file mode 100644 index 77193b24..00000000 --- a/src/test/resources/assets/strata/models/item/metapsammite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/metapsammite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/migmatite.json b/src/test/resources/assets/strata/models/item/migmatite.json deleted file mode 100644 index 26456efc..00000000 --- a/src/test/resources/assets/strata/models/item/migmatite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/migmatite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/minette.json b/src/test/resources/assets/strata/models/item/minette.json deleted file mode 100644 index 0fe0afc6..00000000 --- a/src/test/resources/assets/strata/models/item/minette.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/minette" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/monzogranite.json b/src/test/resources/assets/strata/models/item/monzogranite.json deleted file mode 100644 index 0141244c..00000000 --- a/src/test/resources/assets/strata/models/item/monzogranite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/monzogranite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/monzonite.json b/src/test/resources/assets/strata/models/item/monzonite.json deleted file mode 100644 index c2bf3c57..00000000 --- a/src/test/resources/assets/strata/models/item/monzonite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/monzonite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_aa_brick_slab.json b/src/test/resources/assets/strata/models/item/mossy_aa_brick_slab.json deleted file mode 100644 index 9bfdf99b..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_aa_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_aa_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_aa_brick_stairs.json b/src/test/resources/assets/strata/models/item/mossy_aa_brick_stairs.json deleted file mode 100644 index 3798504a..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_aa_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_aa_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_aa_brick_wall.json b/src/test/resources/assets/strata/models/item/mossy_aa_brick_wall.json deleted file mode 100644 index 2d614807..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_aa_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_aa_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_aa_bricks.json b/src/test/resources/assets/strata/models/item/mossy_aa_bricks.json deleted file mode 100644 index 7a4f3625..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_aa_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_aa_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_aa_cobblestone.json b/src/test/resources/assets/strata/models/item/mossy_aa_cobblestone.json deleted file mode 100644 index 3d96adfe..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_aa_cobblestone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_aa_cobblestone" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_aa_cobblestone_slab.json b/src/test/resources/assets/strata/models/item/mossy_aa_cobblestone_slab.json deleted file mode 100644 index 073c0fa4..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_aa_cobblestone_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_aa_cobblestone_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_aa_cobblestone_stairs.json b/src/test/resources/assets/strata/models/item/mossy_aa_cobblestone_stairs.json deleted file mode 100644 index 8a369f6a..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_aa_cobblestone_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_aa_cobblestone_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_aa_cobblestone_wall.json b/src/test/resources/assets/strata/models/item/mossy_aa_cobblestone_wall.json deleted file mode 100644 index 598a7f6c..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_aa_cobblestone_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_aa_cobblestone_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_adakite_brick_slab.json b/src/test/resources/assets/strata/models/item/mossy_adakite_brick_slab.json deleted file mode 100644 index bc3f32f5..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_adakite_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_adakite_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_adakite_brick_stairs.json b/src/test/resources/assets/strata/models/item/mossy_adakite_brick_stairs.json deleted file mode 100644 index 7236944d..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_adakite_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_adakite_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_adakite_brick_wall.json b/src/test/resources/assets/strata/models/item/mossy_adakite_brick_wall.json deleted file mode 100644 index 3860de99..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_adakite_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_adakite_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_adakite_bricks.json b/src/test/resources/assets/strata/models/item/mossy_adakite_bricks.json deleted file mode 100644 index 0e6285d9..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_adakite_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_adakite_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_adakite_cobblestone.json b/src/test/resources/assets/strata/models/item/mossy_adakite_cobblestone.json deleted file mode 100644 index 131fbd38..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_adakite_cobblestone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_adakite_cobblestone" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_adakite_cobblestone_slab.json b/src/test/resources/assets/strata/models/item/mossy_adakite_cobblestone_slab.json deleted file mode 100644 index 47e264ba..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_adakite_cobblestone_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_adakite_cobblestone_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_adakite_cobblestone_stairs.json b/src/test/resources/assets/strata/models/item/mossy_adakite_cobblestone_stairs.json deleted file mode 100644 index 507877b1..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_adakite_cobblestone_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_adakite_cobblestone_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_adakite_cobblestone_wall.json b/src/test/resources/assets/strata/models/item/mossy_adakite_cobblestone_wall.json deleted file mode 100644 index dfa7d74e..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_adakite_cobblestone_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_adakite_cobblestone_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_amphibolite_brick_slab.json b/src/test/resources/assets/strata/models/item/mossy_amphibolite_brick_slab.json deleted file mode 100644 index 5e125ba7..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_amphibolite_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_amphibolite_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_amphibolite_brick_stairs.json b/src/test/resources/assets/strata/models/item/mossy_amphibolite_brick_stairs.json deleted file mode 100644 index d63b86cb..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_amphibolite_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_amphibolite_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_amphibolite_brick_wall.json b/src/test/resources/assets/strata/models/item/mossy_amphibolite_brick_wall.json deleted file mode 100644 index d8456740..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_amphibolite_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_amphibolite_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_amphibolite_bricks.json b/src/test/resources/assets/strata/models/item/mossy_amphibolite_bricks.json deleted file mode 100644 index 4a79c2dc..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_amphibolite_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_amphibolite_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_argillite_brick_slab.json b/src/test/resources/assets/strata/models/item/mossy_argillite_brick_slab.json deleted file mode 100644 index 1c2043d2..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_argillite_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_argillite_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_argillite_brick_stairs.json b/src/test/resources/assets/strata/models/item/mossy_argillite_brick_stairs.json deleted file mode 100644 index f0558eac..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_argillite_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_argillite_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_argillite_brick_wall.json b/src/test/resources/assets/strata/models/item/mossy_argillite_brick_wall.json deleted file mode 100644 index 10b35ff0..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_argillite_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_argillite_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_argillite_bricks.json b/src/test/resources/assets/strata/models/item/mossy_argillite_bricks.json deleted file mode 100644 index 87c99c39..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_argillite_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_argillite_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_argillite_cobblestone.json b/src/test/resources/assets/strata/models/item/mossy_argillite_cobblestone.json deleted file mode 100644 index 06ffc02a..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_argillite_cobblestone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_argillite_cobblestone" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_argillite_cobblestone_slab.json b/src/test/resources/assets/strata/models/item/mossy_argillite_cobblestone_slab.json deleted file mode 100644 index b2f54bcd..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_argillite_cobblestone_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_argillite_cobblestone_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_argillite_cobblestone_stairs.json b/src/test/resources/assets/strata/models/item/mossy_argillite_cobblestone_stairs.json deleted file mode 100644 index 6cd2e079..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_argillite_cobblestone_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_argillite_cobblestone_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_argillite_cobblestone_wall.json b/src/test/resources/assets/strata/models/item/mossy_argillite_cobblestone_wall.json deleted file mode 100644 index 9daee6ac..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_argillite_cobblestone_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_argillite_cobblestone_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_basalt_brick_slab.json b/src/test/resources/assets/strata/models/item/mossy_basalt_brick_slab.json deleted file mode 100644 index 416e28ca..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_basalt_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_basalt_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_basalt_brick_stairs.json b/src/test/resources/assets/strata/models/item/mossy_basalt_brick_stairs.json deleted file mode 100644 index 6468a833..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_basalt_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_basalt_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_basalt_brick_wall.json b/src/test/resources/assets/strata/models/item/mossy_basalt_brick_wall.json deleted file mode 100644 index 557fa2a6..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_basalt_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_basalt_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_basalt_bricks.json b/src/test/resources/assets/strata/models/item/mossy_basalt_bricks.json deleted file mode 100644 index 5810723e..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_basalt_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_basalt_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_chalk_brick_slab.json b/src/test/resources/assets/strata/models/item/mossy_chalk_brick_slab.json deleted file mode 100644 index f2659d9a..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_chalk_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_chalk_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_chalk_brick_stairs.json b/src/test/resources/assets/strata/models/item/mossy_chalk_brick_stairs.json deleted file mode 100644 index 89fbfad6..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_chalk_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_chalk_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_chalk_brick_wall.json b/src/test/resources/assets/strata/models/item/mossy_chalk_brick_wall.json deleted file mode 100644 index 35f2fc6c..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_chalk_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_chalk_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_chalk_bricks.json b/src/test/resources/assets/strata/models/item/mossy_chalk_bricks.json deleted file mode 100644 index 4d6674ed..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_chalk_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_chalk_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_chalk_cobblestone.json b/src/test/resources/assets/strata/models/item/mossy_chalk_cobblestone.json deleted file mode 100644 index 9cb1e6b1..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_chalk_cobblestone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_chalk_cobblestone" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_chalk_cobblestone_slab.json b/src/test/resources/assets/strata/models/item/mossy_chalk_cobblestone_slab.json deleted file mode 100644 index 10e78724..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_chalk_cobblestone_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_chalk_cobblestone_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_chalk_cobblestone_stairs.json b/src/test/resources/assets/strata/models/item/mossy_chalk_cobblestone_stairs.json deleted file mode 100644 index fc30e9bc..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_chalk_cobblestone_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_chalk_cobblestone_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_chalk_cobblestone_wall.json b/src/test/resources/assets/strata/models/item/mossy_chalk_cobblestone_wall.json deleted file mode 100644 index ec95b333..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_chalk_cobblestone_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_chalk_cobblestone_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_eclogite_brick_slab.json b/src/test/resources/assets/strata/models/item/mossy_eclogite_brick_slab.json deleted file mode 100644 index 6d704812..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_eclogite_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_eclogite_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_eclogite_brick_stairs.json b/src/test/resources/assets/strata/models/item/mossy_eclogite_brick_stairs.json deleted file mode 100644 index 2f12f683..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_eclogite_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_eclogite_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_eclogite_brick_wall.json b/src/test/resources/assets/strata/models/item/mossy_eclogite_brick_wall.json deleted file mode 100644 index 6c76db7c..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_eclogite_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_eclogite_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_eclogite_bricks.json b/src/test/resources/assets/strata/models/item/mossy_eclogite_bricks.json deleted file mode 100644 index 18faad92..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_eclogite_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_eclogite_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_eclogite_cobblestone.json b/src/test/resources/assets/strata/models/item/mossy_eclogite_cobblestone.json deleted file mode 100644 index 6d0a3e03..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_eclogite_cobblestone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_eclogite_cobblestone" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_eclogite_cobblestone_slab.json b/src/test/resources/assets/strata/models/item/mossy_eclogite_cobblestone_slab.json deleted file mode 100644 index e3321fb7..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_eclogite_cobblestone_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_eclogite_cobblestone_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_eclogite_cobblestone_stairs.json b/src/test/resources/assets/strata/models/item/mossy_eclogite_cobblestone_stairs.json deleted file mode 100644 index 1a887b14..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_eclogite_cobblestone_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_eclogite_cobblestone_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_eclogite_cobblestone_wall.json b/src/test/resources/assets/strata/models/item/mossy_eclogite_cobblestone_wall.json deleted file mode 100644 index 5186a1d2..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_eclogite_cobblestone_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_eclogite_cobblestone_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_gabbro_brick_slab.json b/src/test/resources/assets/strata/models/item/mossy_gabbro_brick_slab.json deleted file mode 100644 index 73f042ae..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_gabbro_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_gabbro_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_gabbro_brick_stairs.json b/src/test/resources/assets/strata/models/item/mossy_gabbro_brick_stairs.json deleted file mode 100644 index 79c22c3f..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_gabbro_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_gabbro_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_gabbro_brick_wall.json b/src/test/resources/assets/strata/models/item/mossy_gabbro_brick_wall.json deleted file mode 100644 index 22943595..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_gabbro_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_gabbro_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_gabbro_bricks.json b/src/test/resources/assets/strata/models/item/mossy_gabbro_bricks.json deleted file mode 100644 index ff9f97f2..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_gabbro_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_gabbro_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_gneiss_brick_slab.json b/src/test/resources/assets/strata/models/item/mossy_gneiss_brick_slab.json deleted file mode 100644 index e39ac6ab..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_gneiss_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_gneiss_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_gneiss_brick_stairs.json b/src/test/resources/assets/strata/models/item/mossy_gneiss_brick_stairs.json deleted file mode 100644 index 29a84742..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_gneiss_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_gneiss_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_gneiss_brick_wall.json b/src/test/resources/assets/strata/models/item/mossy_gneiss_brick_wall.json deleted file mode 100644 index b8737fcd..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_gneiss_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_gneiss_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_gneiss_bricks.json b/src/test/resources/assets/strata/models/item/mossy_gneiss_bricks.json deleted file mode 100644 index 44a98dc8..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_gneiss_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_gneiss_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_jaspillite_brick_slab.json b/src/test/resources/assets/strata/models/item/mossy_jaspillite_brick_slab.json deleted file mode 100644 index b1d7dbeb..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_jaspillite_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_jaspillite_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_jaspillite_brick_stairs.json b/src/test/resources/assets/strata/models/item/mossy_jaspillite_brick_stairs.json deleted file mode 100644 index 75661be7..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_jaspillite_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_jaspillite_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_jaspillite_brick_wall.json b/src/test/resources/assets/strata/models/item/mossy_jaspillite_brick_wall.json deleted file mode 100644 index d05c7c5c..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_jaspillite_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_jaspillite_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_jaspillite_bricks.json b/src/test/resources/assets/strata/models/item/mossy_jaspillite_bricks.json deleted file mode 100644 index 67de029c..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_jaspillite_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_jaspillite_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_jaspillite_cobblestone.json b/src/test/resources/assets/strata/models/item/mossy_jaspillite_cobblestone.json deleted file mode 100644 index 46e436a0..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_jaspillite_cobblestone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_jaspillite_cobblestone" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_jaspillite_cobblestone_slab.json b/src/test/resources/assets/strata/models/item/mossy_jaspillite_cobblestone_slab.json deleted file mode 100644 index 8db21739..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_jaspillite_cobblestone_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_jaspillite_cobblestone_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_jaspillite_cobblestone_stairs.json b/src/test/resources/assets/strata/models/item/mossy_jaspillite_cobblestone_stairs.json deleted file mode 100644 index adb4bc26..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_jaspillite_cobblestone_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_jaspillite_cobblestone_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_jaspillite_cobblestone_wall.json b/src/test/resources/assets/strata/models/item/mossy_jaspillite_cobblestone_wall.json deleted file mode 100644 index 0b93e070..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_jaspillite_cobblestone_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_jaspillite_cobblestone_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_limestone_brick_slab.json b/src/test/resources/assets/strata/models/item/mossy_limestone_brick_slab.json deleted file mode 100644 index 4536e585..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_limestone_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_limestone_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_limestone_brick_stairs.json b/src/test/resources/assets/strata/models/item/mossy_limestone_brick_stairs.json deleted file mode 100644 index 521a5e7f..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_limestone_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_limestone_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_limestone_brick_wall.json b/src/test/resources/assets/strata/models/item/mossy_limestone_brick_wall.json deleted file mode 100644 index 735fb22c..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_limestone_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_limestone_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_limestone_bricks.json b/src/test/resources/assets/strata/models/item/mossy_limestone_bricks.json deleted file mode 100644 index 8ac4b8a0..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_limestone_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_limestone_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_marble_brick_slab.json b/src/test/resources/assets/strata/models/item/mossy_marble_brick_slab.json deleted file mode 100644 index 1a3d17a4..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_marble_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_marble_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_marble_brick_stairs.json b/src/test/resources/assets/strata/models/item/mossy_marble_brick_stairs.json deleted file mode 100644 index 58a309e9..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_marble_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_marble_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_marble_brick_wall.json b/src/test/resources/assets/strata/models/item/mossy_marble_brick_wall.json deleted file mode 100644 index 3163887e..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_marble_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_marble_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_marble_bricks.json b/src/test/resources/assets/strata/models/item/mossy_marble_bricks.json deleted file mode 100644 index 88bd6a12..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_marble_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_marble_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_marble_cobblestone.json b/src/test/resources/assets/strata/models/item/mossy_marble_cobblestone.json deleted file mode 100644 index 64bc61db..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_marble_cobblestone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_marble_cobblestone" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_marble_cobblestone_slab.json b/src/test/resources/assets/strata/models/item/mossy_marble_cobblestone_slab.json deleted file mode 100644 index 317406aa..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_marble_cobblestone_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_marble_cobblestone_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_marble_cobblestone_stairs.json b/src/test/resources/assets/strata/models/item/mossy_marble_cobblestone_stairs.json deleted file mode 100644 index cc223395..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_marble_cobblestone_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_marble_cobblestone_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_marble_cobblestone_wall.json b/src/test/resources/assets/strata/models/item/mossy_marble_cobblestone_wall.json deleted file mode 100644 index fc32cedf..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_marble_cobblestone_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_marble_cobblestone_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_pahoehoe_brick_slab.json b/src/test/resources/assets/strata/models/item/mossy_pahoehoe_brick_slab.json deleted file mode 100644 index 2ad925e2..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_pahoehoe_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_pahoehoe_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_pahoehoe_brick_stairs.json b/src/test/resources/assets/strata/models/item/mossy_pahoehoe_brick_stairs.json deleted file mode 100644 index f64222f3..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_pahoehoe_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_pahoehoe_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_pahoehoe_brick_wall.json b/src/test/resources/assets/strata/models/item/mossy_pahoehoe_brick_wall.json deleted file mode 100644 index d532417d..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_pahoehoe_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_pahoehoe_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_pahoehoe_bricks.json b/src/test/resources/assets/strata/models/item/mossy_pahoehoe_bricks.json deleted file mode 100644 index 6df217a1..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_pahoehoe_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_pahoehoe_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_pahoehoe_cobblestone.json b/src/test/resources/assets/strata/models/item/mossy_pahoehoe_cobblestone.json deleted file mode 100644 index 615ab19c..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_pahoehoe_cobblestone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_pahoehoe_cobblestone" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_pahoehoe_cobblestone_slab.json b/src/test/resources/assets/strata/models/item/mossy_pahoehoe_cobblestone_slab.json deleted file mode 100644 index e1add9e5..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_pahoehoe_cobblestone_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_pahoehoe_cobblestone_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_pahoehoe_cobblestone_stairs.json b/src/test/resources/assets/strata/models/item/mossy_pahoehoe_cobblestone_stairs.json deleted file mode 100644 index 74e19880..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_pahoehoe_cobblestone_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_pahoehoe_cobblestone_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_pahoehoe_cobblestone_wall.json b/src/test/resources/assets/strata/models/item/mossy_pahoehoe_cobblestone_wall.json deleted file mode 100644 index a26629e9..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_pahoehoe_cobblestone_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_pahoehoe_cobblestone_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_schist_brick_slab.json b/src/test/resources/assets/strata/models/item/mossy_schist_brick_slab.json deleted file mode 100644 index 60847e21..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_schist_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_schist_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_schist_brick_stairs.json b/src/test/resources/assets/strata/models/item/mossy_schist_brick_stairs.json deleted file mode 100644 index d308ed35..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_schist_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_schist_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_schist_brick_wall.json b/src/test/resources/assets/strata/models/item/mossy_schist_brick_wall.json deleted file mode 100644 index d44d7a2a..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_schist_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_schist_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_schist_bricks.json b/src/test/resources/assets/strata/models/item/mossy_schist_bricks.json deleted file mode 100644 index cd201947..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_schist_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_schist_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_shale_brick_slab.json b/src/test/resources/assets/strata/models/item/mossy_shale_brick_slab.json deleted file mode 100644 index edc196fb..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_shale_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_shale_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_shale_brick_stairs.json b/src/test/resources/assets/strata/models/item/mossy_shale_brick_stairs.json deleted file mode 100644 index fe8764e6..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_shale_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_shale_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_shale_brick_wall.json b/src/test/resources/assets/strata/models/item/mossy_shale_brick_wall.json deleted file mode 100644 index eba8168d..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_shale_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_shale_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mossy_shale_bricks.json b/src/test/resources/assets/strata/models/item/mossy_shale_bricks.json deleted file mode 100644 index 673350be..00000000 --- a/src/test/resources/assets/strata/models/item/mossy_shale_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mossy_shale_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mudstone.json b/src/test/resources/assets/strata/models/item/mudstone.json deleted file mode 100644 index 8c7d4cb8..00000000 --- a/src/test/resources/assets/strata/models/item/mudstone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mudstone" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mugearite.json b/src/test/resources/assets/strata/models/item/mugearite.json deleted file mode 100644 index 0194b0f6..00000000 --- a/src/test/resources/assets/strata/models/item/mugearite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mugearite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/mylonite.json b/src/test/resources/assets/strata/models/item/mylonite.json deleted file mode 100644 index e586783f..00000000 --- a/src/test/resources/assets/strata/models/item/mylonite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/mylonite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/napoleonite.json b/src/test/resources/assets/strata/models/item/napoleonite.json deleted file mode 100644 index 5b6f3820..00000000 --- a/src/test/resources/assets/strata/models/item/napoleonite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/napoleonite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/nephelinite.json b/src/test/resources/assets/strata/models/item/nephelinite.json deleted file mode 100644 index 8b65fbdf..00000000 --- a/src/test/resources/assets/strata/models/item/nephelinite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/nephelinite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/norite.json b/src/test/resources/assets/strata/models/item/norite.json deleted file mode 100644 index 99bee0c6..00000000 --- a/src/test/resources/assets/strata/models/item/norite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/norite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/novaculite.json b/src/test/resources/assets/strata/models/item/novaculite.json deleted file mode 100644 index c144a707..00000000 --- a/src/test/resources/assets/strata/models/item/novaculite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/novaculite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/oil_shale.json b/src/test/resources/assets/strata/models/item/oil_shale.json deleted file mode 100644 index aaf7c3e5..00000000 --- a/src/test/resources/assets/strata/models/item/oil_shale.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/oil_shale" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/oolite.json b/src/test/resources/assets/strata/models/item/oolite.json deleted file mode 100644 index cb4795eb..00000000 --- a/src/test/resources/assets/strata/models/item/oolite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/oolite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/pahoehoe.json b/src/test/resources/assets/strata/models/item/pahoehoe.json deleted file mode 100644 index 9e3c75fb..00000000 --- a/src/test/resources/assets/strata/models/item/pahoehoe.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/pahoehoe" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/pahoehoe_brick_slab.json b/src/test/resources/assets/strata/models/item/pahoehoe_brick_slab.json deleted file mode 100644 index a7db5d03..00000000 --- a/src/test/resources/assets/strata/models/item/pahoehoe_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/pahoehoe_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/pahoehoe_brick_stairs.json b/src/test/resources/assets/strata/models/item/pahoehoe_brick_stairs.json deleted file mode 100644 index 4c5a3cc4..00000000 --- a/src/test/resources/assets/strata/models/item/pahoehoe_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/pahoehoe_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/pahoehoe_brick_wall.json b/src/test/resources/assets/strata/models/item/pahoehoe_brick_wall.json deleted file mode 100644 index a6fc7325..00000000 --- a/src/test/resources/assets/strata/models/item/pahoehoe_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/pahoehoe_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/pahoehoe_bricks.json b/src/test/resources/assets/strata/models/item/pahoehoe_bricks.json deleted file mode 100644 index e4cad57c..00000000 --- a/src/test/resources/assets/strata/models/item/pahoehoe_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/pahoehoe_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/pahoehoe_button.json b/src/test/resources/assets/strata/models/item/pahoehoe_button.json deleted file mode 100644 index d66a77e1..00000000 --- a/src/test/resources/assets/strata/models/item/pahoehoe_button.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/pahoehoe_button_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/pahoehoe_cobblestone.json b/src/test/resources/assets/strata/models/item/pahoehoe_cobblestone.json deleted file mode 100644 index 838616a3..00000000 --- a/src/test/resources/assets/strata/models/item/pahoehoe_cobblestone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/pahoehoe_cobblestone" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/pahoehoe_cobblestone_slab.json b/src/test/resources/assets/strata/models/item/pahoehoe_cobblestone_slab.json deleted file mode 100644 index fc64f023..00000000 --- a/src/test/resources/assets/strata/models/item/pahoehoe_cobblestone_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/pahoehoe_cobblestone_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/pahoehoe_cobblestone_stairs.json b/src/test/resources/assets/strata/models/item/pahoehoe_cobblestone_stairs.json deleted file mode 100644 index be138609..00000000 --- a/src/test/resources/assets/strata/models/item/pahoehoe_cobblestone_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/pahoehoe_cobblestone_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/pahoehoe_cobblestone_wall.json b/src/test/resources/assets/strata/models/item/pahoehoe_cobblestone_wall.json deleted file mode 100644 index c8e4faed..00000000 --- a/src/test/resources/assets/strata/models/item/pahoehoe_cobblestone_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/pahoehoe_cobblestone_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/pahoehoe_pressure_plate.json b/src/test/resources/assets/strata/models/item/pahoehoe_pressure_plate.json deleted file mode 100644 index e7df55bb..00000000 --- a/src/test/resources/assets/strata/models/item/pahoehoe_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/pahoehoe_pressure_plate" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/pahoehoe_slab.json b/src/test/resources/assets/strata/models/item/pahoehoe_slab.json deleted file mode 100644 index 52e588e0..00000000 --- a/src/test/resources/assets/strata/models/item/pahoehoe_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/pahoehoe_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/pahoehoe_stairs.json b/src/test/resources/assets/strata/models/item/pahoehoe_stairs.json deleted file mode 100644 index b28e0d02..00000000 --- a/src/test/resources/assets/strata/models/item/pahoehoe_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/pahoehoe_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/pahoehoe_wall.json b/src/test/resources/assets/strata/models/item/pahoehoe_wall.json deleted file mode 100644 index f320fff9..00000000 --- a/src/test/resources/assets/strata/models/item/pahoehoe_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/pahoehoe_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/pantellerite.json b/src/test/resources/assets/strata/models/item/pantellerite.json deleted file mode 100644 index 81cf5b02..00000000 --- a/src/test/resources/assets/strata/models/item/pantellerite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/pantellerite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/pegmatite.json b/src/test/resources/assets/strata/models/item/pegmatite.json deleted file mode 100644 index eb8415c2..00000000 --- a/src/test/resources/assets/strata/models/item/pegmatite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/pegmatite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/peridotite.json b/src/test/resources/assets/strata/models/item/peridotite.json deleted file mode 100644 index 0b90016b..00000000 --- a/src/test/resources/assets/strata/models/item/peridotite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/peridotite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/phonolite.json b/src/test/resources/assets/strata/models/item/phonolite.json deleted file mode 100644 index 89260ed4..00000000 --- a/src/test/resources/assets/strata/models/item/phonolite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/phonolite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/phonotephrite.json b/src/test/resources/assets/strata/models/item/phonotephrite.json deleted file mode 100644 index 73a713c0..00000000 --- a/src/test/resources/assets/strata/models/item/phonotephrite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/phonotephrite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/phosphorite.json b/src/test/resources/assets/strata/models/item/phosphorite.json deleted file mode 100644 index b514b5fb..00000000 --- a/src/test/resources/assets/strata/models/item/phosphorite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/phosphorite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/phyllite.json b/src/test/resources/assets/strata/models/item/phyllite.json deleted file mode 100644 index 392197c7..00000000 --- a/src/test/resources/assets/strata/models/item/phyllite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/phyllite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/picrite.json b/src/test/resources/assets/strata/models/item/picrite.json deleted file mode 100644 index 10530fb0..00000000 --- a/src/test/resources/assets/strata/models/item/picrite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/picrite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/pietersite.json b/src/test/resources/assets/strata/models/item/pietersite.json deleted file mode 100644 index 0bf96dbe..00000000 --- a/src/test/resources/assets/strata/models/item/pietersite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/pietersite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_aa.json b/src/test/resources/assets/strata/models/item/polished_aa.json deleted file mode 100644 index 4112d74e..00000000 --- a/src/test/resources/assets/strata/models/item/polished_aa.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_aa" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_aa_slab.json b/src/test/resources/assets/strata/models/item/polished_aa_slab.json deleted file mode 100644 index 1e6539fb..00000000 --- a/src/test/resources/assets/strata/models/item/polished_aa_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_aa_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_aa_stairs.json b/src/test/resources/assets/strata/models/item/polished_aa_stairs.json deleted file mode 100644 index fcf8d7c9..00000000 --- a/src/test/resources/assets/strata/models/item/polished_aa_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_aa_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_adakite.json b/src/test/resources/assets/strata/models/item/polished_adakite.json deleted file mode 100644 index 100a3d3c..00000000 --- a/src/test/resources/assets/strata/models/item/polished_adakite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_adakite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_adakite_slab.json b/src/test/resources/assets/strata/models/item/polished_adakite_slab.json deleted file mode 100644 index f8e44dce..00000000 --- a/src/test/resources/assets/strata/models/item/polished_adakite_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_adakite_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_adakite_stairs.json b/src/test/resources/assets/strata/models/item/polished_adakite_stairs.json deleted file mode 100644 index 7b464a24..00000000 --- a/src/test/resources/assets/strata/models/item/polished_adakite_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_adakite_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_amphibolite.json b/src/test/resources/assets/strata/models/item/polished_amphibolite.json deleted file mode 100644 index e4075f61..00000000 --- a/src/test/resources/assets/strata/models/item/polished_amphibolite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_amphibolite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_amphibolite_slab.json b/src/test/resources/assets/strata/models/item/polished_amphibolite_slab.json deleted file mode 100644 index 6d48d9f0..00000000 --- a/src/test/resources/assets/strata/models/item/polished_amphibolite_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_amphibolite_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_amphibolite_stairs.json b/src/test/resources/assets/strata/models/item/polished_amphibolite_stairs.json deleted file mode 100644 index 0d5e0c21..00000000 --- a/src/test/resources/assets/strata/models/item/polished_amphibolite_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_amphibolite_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_argillite.json b/src/test/resources/assets/strata/models/item/polished_argillite.json deleted file mode 100644 index e66707e7..00000000 --- a/src/test/resources/assets/strata/models/item/polished_argillite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_argillite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_argillite_slab.json b/src/test/resources/assets/strata/models/item/polished_argillite_slab.json deleted file mode 100644 index 4be561d7..00000000 --- a/src/test/resources/assets/strata/models/item/polished_argillite_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_argillite_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_argillite_stairs.json b/src/test/resources/assets/strata/models/item/polished_argillite_stairs.json deleted file mode 100644 index b4b01e29..00000000 --- a/src/test/resources/assets/strata/models/item/polished_argillite_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_argillite_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_basalt.json b/src/test/resources/assets/strata/models/item/polished_basalt.json deleted file mode 100644 index 78caa436..00000000 --- a/src/test/resources/assets/strata/models/item/polished_basalt.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_basalt" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_basalt_slab.json b/src/test/resources/assets/strata/models/item/polished_basalt_slab.json deleted file mode 100644 index d44e66e8..00000000 --- a/src/test/resources/assets/strata/models/item/polished_basalt_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_basalt_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_basalt_stairs.json b/src/test/resources/assets/strata/models/item/polished_basalt_stairs.json deleted file mode 100644 index cc0efde6..00000000 --- a/src/test/resources/assets/strata/models/item/polished_basalt_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_basalt_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_chalk.json b/src/test/resources/assets/strata/models/item/polished_chalk.json deleted file mode 100644 index 276016bb..00000000 --- a/src/test/resources/assets/strata/models/item/polished_chalk.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_chalk" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_chalk_slab.json b/src/test/resources/assets/strata/models/item/polished_chalk_slab.json deleted file mode 100644 index 9da99a04..00000000 --- a/src/test/resources/assets/strata/models/item/polished_chalk_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_chalk_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_chalk_stairs.json b/src/test/resources/assets/strata/models/item/polished_chalk_stairs.json deleted file mode 100644 index bb93985b..00000000 --- a/src/test/resources/assets/strata/models/item/polished_chalk_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_chalk_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_eclogite.json b/src/test/resources/assets/strata/models/item/polished_eclogite.json deleted file mode 100644 index 111f6c21..00000000 --- a/src/test/resources/assets/strata/models/item/polished_eclogite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_eclogite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_eclogite_slab.json b/src/test/resources/assets/strata/models/item/polished_eclogite_slab.json deleted file mode 100644 index 89ad60ae..00000000 --- a/src/test/resources/assets/strata/models/item/polished_eclogite_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_eclogite_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_eclogite_stairs.json b/src/test/resources/assets/strata/models/item/polished_eclogite_stairs.json deleted file mode 100644 index 59d8b354..00000000 --- a/src/test/resources/assets/strata/models/item/polished_eclogite_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_eclogite_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_gabbro.json b/src/test/resources/assets/strata/models/item/polished_gabbro.json deleted file mode 100644 index b64a36b5..00000000 --- a/src/test/resources/assets/strata/models/item/polished_gabbro.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_gabbro" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_gabbro_slab.json b/src/test/resources/assets/strata/models/item/polished_gabbro_slab.json deleted file mode 100644 index 6ae29fb9..00000000 --- a/src/test/resources/assets/strata/models/item/polished_gabbro_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_gabbro_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_gabbro_stairs.json b/src/test/resources/assets/strata/models/item/polished_gabbro_stairs.json deleted file mode 100644 index 180c83f9..00000000 --- a/src/test/resources/assets/strata/models/item/polished_gabbro_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_gabbro_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_gneiss.json b/src/test/resources/assets/strata/models/item/polished_gneiss.json deleted file mode 100644 index 3ded417c..00000000 --- a/src/test/resources/assets/strata/models/item/polished_gneiss.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_gneiss" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_gneiss_slab.json b/src/test/resources/assets/strata/models/item/polished_gneiss_slab.json deleted file mode 100644 index 8f2909ab..00000000 --- a/src/test/resources/assets/strata/models/item/polished_gneiss_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_gneiss_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_gneiss_stairs.json b/src/test/resources/assets/strata/models/item/polished_gneiss_stairs.json deleted file mode 100644 index db28f8d1..00000000 --- a/src/test/resources/assets/strata/models/item/polished_gneiss_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_gneiss_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_jaspillite.json b/src/test/resources/assets/strata/models/item/polished_jaspillite.json deleted file mode 100644 index 170f06b3..00000000 --- a/src/test/resources/assets/strata/models/item/polished_jaspillite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_jaspillite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_jaspillite_slab.json b/src/test/resources/assets/strata/models/item/polished_jaspillite_slab.json deleted file mode 100644 index 6292a38c..00000000 --- a/src/test/resources/assets/strata/models/item/polished_jaspillite_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_jaspillite_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_jaspillite_stairs.json b/src/test/resources/assets/strata/models/item/polished_jaspillite_stairs.json deleted file mode 100644 index a322ed4e..00000000 --- a/src/test/resources/assets/strata/models/item/polished_jaspillite_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_jaspillite_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_limestone.json b/src/test/resources/assets/strata/models/item/polished_limestone.json deleted file mode 100644 index e6949d2f..00000000 --- a/src/test/resources/assets/strata/models/item/polished_limestone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_limestone" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_limestone_slab.json b/src/test/resources/assets/strata/models/item/polished_limestone_slab.json deleted file mode 100644 index 48f60bbd..00000000 --- a/src/test/resources/assets/strata/models/item/polished_limestone_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_limestone_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_limestone_stairs.json b/src/test/resources/assets/strata/models/item/polished_limestone_stairs.json deleted file mode 100644 index d22855dd..00000000 --- a/src/test/resources/assets/strata/models/item/polished_limestone_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_limestone_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_marble.json b/src/test/resources/assets/strata/models/item/polished_marble.json deleted file mode 100644 index a50160a2..00000000 --- a/src/test/resources/assets/strata/models/item/polished_marble.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_marble" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_marble_slab.json b/src/test/resources/assets/strata/models/item/polished_marble_slab.json deleted file mode 100644 index c8e66c4a..00000000 --- a/src/test/resources/assets/strata/models/item/polished_marble_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_marble_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_marble_stairs.json b/src/test/resources/assets/strata/models/item/polished_marble_stairs.json deleted file mode 100644 index 85288b3c..00000000 --- a/src/test/resources/assets/strata/models/item/polished_marble_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_marble_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_pahoehoe.json b/src/test/resources/assets/strata/models/item/polished_pahoehoe.json deleted file mode 100644 index 6dd5427f..00000000 --- a/src/test/resources/assets/strata/models/item/polished_pahoehoe.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_pahoehoe" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_pahoehoe_slab.json b/src/test/resources/assets/strata/models/item/polished_pahoehoe_slab.json deleted file mode 100644 index 1efb5ed2..00000000 --- a/src/test/resources/assets/strata/models/item/polished_pahoehoe_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_pahoehoe_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_pahoehoe_stairs.json b/src/test/resources/assets/strata/models/item/polished_pahoehoe_stairs.json deleted file mode 100644 index e9ed62c4..00000000 --- a/src/test/resources/assets/strata/models/item/polished_pahoehoe_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_pahoehoe_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_schist.json b/src/test/resources/assets/strata/models/item/polished_schist.json deleted file mode 100644 index 5e8937fb..00000000 --- a/src/test/resources/assets/strata/models/item/polished_schist.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_schist" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_schist_slab.json b/src/test/resources/assets/strata/models/item/polished_schist_slab.json deleted file mode 100644 index 77658bbc..00000000 --- a/src/test/resources/assets/strata/models/item/polished_schist_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_schist_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_schist_stairs.json b/src/test/resources/assets/strata/models/item/polished_schist_stairs.json deleted file mode 100644 index c403d6b3..00000000 --- a/src/test/resources/assets/strata/models/item/polished_schist_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_schist_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_shale.json b/src/test/resources/assets/strata/models/item/polished_shale.json deleted file mode 100644 index 200321b3..00000000 --- a/src/test/resources/assets/strata/models/item/polished_shale.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_shale" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_shale_slab.json b/src/test/resources/assets/strata/models/item/polished_shale_slab.json deleted file mode 100644 index 7ab865f5..00000000 --- a/src/test/resources/assets/strata/models/item/polished_shale_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_shale_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/polished_shale_stairs.json b/src/test/resources/assets/strata/models/item/polished_shale_stairs.json deleted file mode 100644 index 80b7e4c5..00000000 --- a/src/test/resources/assets/strata/models/item/polished_shale_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/polished_shale_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/porphyry.json b/src/test/resources/assets/strata/models/item/porphyry.json deleted file mode 100644 index 36dddc7b..00000000 --- a/src/test/resources/assets/strata/models/item/porphyry.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/porphyry" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/pumice.json b/src/test/resources/assets/strata/models/item/pumice.json deleted file mode 100644 index da2b1d01..00000000 --- a/src/test/resources/assets/strata/models/item/pumice.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/pumice" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/pyrolite.json b/src/test/resources/assets/strata/models/item/pyrolite.json deleted file mode 100644 index dddfb7dd..00000000 --- a/src/test/resources/assets/strata/models/item/pyrolite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/pyrolite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/pyroxenite.json b/src/test/resources/assets/strata/models/item/pyroxenite.json deleted file mode 100644 index 6b665520..00000000 --- a/src/test/resources/assets/strata/models/item/pyroxenite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/pyroxenite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/quartz_diorite.json b/src/test/resources/assets/strata/models/item/quartz_diorite.json deleted file mode 100644 index d9e18a7b..00000000 --- a/src/test/resources/assets/strata/models/item/quartz_diorite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/quartz_diorite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/quartz_monzonite.json b/src/test/resources/assets/strata/models/item/quartz_monzonite.json deleted file mode 100644 index 06fcb93f..00000000 --- a/src/test/resources/assets/strata/models/item/quartz_monzonite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/quartz_monzonite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/quartzite.json b/src/test/resources/assets/strata/models/item/quartzite.json deleted file mode 100644 index 6cd45d40..00000000 --- a/src/test/resources/assets/strata/models/item/quartzite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/quartzite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/quartzolite.json b/src/test/resources/assets/strata/models/item/quartzolite.json deleted file mode 100644 index 8ac5fce1..00000000 --- a/src/test/resources/assets/strata/models/item/quartzolite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/quartzolite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/rapakivi_granite.json b/src/test/resources/assets/strata/models/item/rapakivi_granite.json deleted file mode 100644 index 09e28afa..00000000 --- a/src/test/resources/assets/strata/models/item/rapakivi_granite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/rapakivi_granite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/rhomb_porphyry.json b/src/test/resources/assets/strata/models/item/rhomb_porphyry.json deleted file mode 100644 index 83c535ed..00000000 --- a/src/test/resources/assets/strata/models/item/rhomb_porphyry.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/rhomb_porphyry" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/rhyodacite.json b/src/test/resources/assets/strata/models/item/rhyodacite.json deleted file mode 100644 index bcab8688..00000000 --- a/src/test/resources/assets/strata/models/item/rhyodacite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/rhyodacite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/rhyolite.json b/src/test/resources/assets/strata/models/item/rhyolite.json deleted file mode 100644 index a0a79251..00000000 --- a/src/test/resources/assets/strata/models/item/rhyolite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/rhyolite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/rodingite.json b/src/test/resources/assets/strata/models/item/rodingite.json deleted file mode 100644 index af8eb5f4..00000000 --- a/src/test/resources/assets/strata/models/item/rodingite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/rodingite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/schist.json b/src/test/resources/assets/strata/models/item/schist.json deleted file mode 100644 index 3477b123..00000000 --- a/src/test/resources/assets/strata/models/item/schist.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/schist" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/schist_brick_slab.json b/src/test/resources/assets/strata/models/item/schist_brick_slab.json deleted file mode 100644 index d302b128..00000000 --- a/src/test/resources/assets/strata/models/item/schist_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/schist_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/schist_brick_stairs.json b/src/test/resources/assets/strata/models/item/schist_brick_stairs.json deleted file mode 100644 index 56c39860..00000000 --- a/src/test/resources/assets/strata/models/item/schist_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/schist_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/schist_brick_wall.json b/src/test/resources/assets/strata/models/item/schist_brick_wall.json deleted file mode 100644 index c438e494..00000000 --- a/src/test/resources/assets/strata/models/item/schist_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/schist_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/schist_bricks.json b/src/test/resources/assets/strata/models/item/schist_bricks.json deleted file mode 100644 index 0cbe6882..00000000 --- a/src/test/resources/assets/strata/models/item/schist_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/schist_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/schist_button.json b/src/test/resources/assets/strata/models/item/schist_button.json deleted file mode 100644 index 0a23821e..00000000 --- a/src/test/resources/assets/strata/models/item/schist_button.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/schist_button_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/schist_pressure_plate.json b/src/test/resources/assets/strata/models/item/schist_pressure_plate.json deleted file mode 100644 index e872f80f..00000000 --- a/src/test/resources/assets/strata/models/item/schist_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/schist_pressure_plate" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/schist_slab.json b/src/test/resources/assets/strata/models/item/schist_slab.json deleted file mode 100644 index e474fa0a..00000000 --- a/src/test/resources/assets/strata/models/item/schist_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/schist_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/schist_stairs.json b/src/test/resources/assets/strata/models/item/schist_stairs.json deleted file mode 100644 index 5095534f..00000000 --- a/src/test/resources/assets/strata/models/item/schist_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/schist_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/schist_wall.json b/src/test/resources/assets/strata/models/item/schist_wall.json deleted file mode 100644 index 87b43e07..00000000 --- a/src/test/resources/assets/strata/models/item/schist_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/schist_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/scoria.json b/src/test/resources/assets/strata/models/item/scoria.json deleted file mode 100644 index 2ab18d9b..00000000 --- a/src/test/resources/assets/strata/models/item/scoria.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/scoria" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/serpentinite.json b/src/test/resources/assets/strata/models/item/serpentinite.json deleted file mode 100644 index 7033e90e..00000000 --- a/src/test/resources/assets/strata/models/item/serpentinite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/serpentinite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/shale.json b/src/test/resources/assets/strata/models/item/shale.json deleted file mode 100644 index e7ce855c..00000000 --- a/src/test/resources/assets/strata/models/item/shale.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/shale" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/shale_brick_slab.json b/src/test/resources/assets/strata/models/item/shale_brick_slab.json deleted file mode 100644 index 9d2915ad..00000000 --- a/src/test/resources/assets/strata/models/item/shale_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/shale_brick_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/shale_brick_stairs.json b/src/test/resources/assets/strata/models/item/shale_brick_stairs.json deleted file mode 100644 index c8ba9493..00000000 --- a/src/test/resources/assets/strata/models/item/shale_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/shale_brick_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/shale_brick_wall.json b/src/test/resources/assets/strata/models/item/shale_brick_wall.json deleted file mode 100644 index 77384587..00000000 --- a/src/test/resources/assets/strata/models/item/shale_brick_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/shale_brick_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/shale_bricks.json b/src/test/resources/assets/strata/models/item/shale_bricks.json deleted file mode 100644 index 74217d8a..00000000 --- a/src/test/resources/assets/strata/models/item/shale_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/shale_bricks" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/shale_button.json b/src/test/resources/assets/strata/models/item/shale_button.json deleted file mode 100644 index 4523c47e..00000000 --- a/src/test/resources/assets/strata/models/item/shale_button.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/shale_button_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/shale_pressure_plate.json b/src/test/resources/assets/strata/models/item/shale_pressure_plate.json deleted file mode 100644 index 2e537426..00000000 --- a/src/test/resources/assets/strata/models/item/shale_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/shale_pressure_plate" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/shale_slab.json b/src/test/resources/assets/strata/models/item/shale_slab.json deleted file mode 100644 index 83cfbde5..00000000 --- a/src/test/resources/assets/strata/models/item/shale_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/shale_slab" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/shale_stairs.json b/src/test/resources/assets/strata/models/item/shale_stairs.json deleted file mode 100644 index 1d81462c..00000000 --- a/src/test/resources/assets/strata/models/item/shale_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/shale_stairs" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/shale_wall.json b/src/test/resources/assets/strata/models/item/shale_wall.json deleted file mode 100644 index afd09147..00000000 --- a/src/test/resources/assets/strata/models/item/shale_wall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/shale_wall_inventory" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/shonkinite.json b/src/test/resources/assets/strata/models/item/shonkinite.json deleted file mode 100644 index f4896b4d..00000000 --- a/src/test/resources/assets/strata/models/item/shonkinite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/shonkinite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/shoshonite.json b/src/test/resources/assets/strata/models/item/shoshonite.json deleted file mode 100644 index 1dfc417f..00000000 --- a/src/test/resources/assets/strata/models/item/shoshonite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/shoshonite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/siltstone.json b/src/test/resources/assets/strata/models/item/siltstone.json deleted file mode 100644 index a2ceace7..00000000 --- a/src/test/resources/assets/strata/models/item/siltstone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/siltstone" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/skarn.json b/src/test/resources/assets/strata/models/item/skarn.json deleted file mode 100644 index 1354127e..00000000 --- a/src/test/resources/assets/strata/models/item/skarn.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/skarn" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/slate.json b/src/test/resources/assets/strata/models/item/slate.json deleted file mode 100644 index b128e85f..00000000 --- a/src/test/resources/assets/strata/models/item/slate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/slate" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/soapstone.json b/src/test/resources/assets/strata/models/item/soapstone.json deleted file mode 100644 index b53cda31..00000000 --- a/src/test/resources/assets/strata/models/item/soapstone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/soapstone" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/sovite.json b/src/test/resources/assets/strata/models/item/sovite.json deleted file mode 100644 index 1157077b..00000000 --- a/src/test/resources/assets/strata/models/item/sovite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/sovite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/suevite.json b/src/test/resources/assets/strata/models/item/suevite.json deleted file mode 100644 index da365c21..00000000 --- a/src/test/resources/assets/strata/models/item/suevite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/suevite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/syenite.json b/src/test/resources/assets/strata/models/item/syenite.json deleted file mode 100644 index f86b5903..00000000 --- a/src/test/resources/assets/strata/models/item/syenite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/syenite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/sylvinite.json b/src/test/resources/assets/strata/models/item/sylvinite.json deleted file mode 100644 index 67b7d580..00000000 --- a/src/test/resources/assets/strata/models/item/sylvinite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/sylvinite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/tachylite.json b/src/test/resources/assets/strata/models/item/tachylite.json deleted file mode 100644 index 779340b1..00000000 --- a/src/test/resources/assets/strata/models/item/tachylite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/tachylite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/taconite.json b/src/test/resources/assets/strata/models/item/taconite.json deleted file mode 100644 index 47772976..00000000 --- a/src/test/resources/assets/strata/models/item/taconite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/taconite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/talc_carbonate.json b/src/test/resources/assets/strata/models/item/talc_carbonate.json deleted file mode 100644 index 537db499..00000000 --- a/src/test/resources/assets/strata/models/item/talc_carbonate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/talc_carbonate" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/tectonite.json b/src/test/resources/assets/strata/models/item/tectonite.json deleted file mode 100644 index 3d3ed582..00000000 --- a/src/test/resources/assets/strata/models/item/tectonite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/tectonite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/tephriphonolite.json b/src/test/resources/assets/strata/models/item/tephriphonolite.json deleted file mode 100644 index afd1a13f..00000000 --- a/src/test/resources/assets/strata/models/item/tephriphonolite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/tephriphonolite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/tephrite.json b/src/test/resources/assets/strata/models/item/tephrite.json deleted file mode 100644 index 6809d961..00000000 --- a/src/test/resources/assets/strata/models/item/tephrite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/tephrite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/teschenite.json b/src/test/resources/assets/strata/models/item/teschenite.json deleted file mode 100644 index c227215b..00000000 --- a/src/test/resources/assets/strata/models/item/teschenite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/teschenite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/theralite.json b/src/test/resources/assets/strata/models/item/theralite.json deleted file mode 100644 index 263b94a9..00000000 --- a/src/test/resources/assets/strata/models/item/theralite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/theralite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/tillite.json b/src/test/resources/assets/strata/models/item/tillite.json deleted file mode 100644 index 8f608894..00000000 --- a/src/test/resources/assets/strata/models/item/tillite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/tillite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/tonalite.json b/src/test/resources/assets/strata/models/item/tonalite.json deleted file mode 100644 index 11df741a..00000000 --- a/src/test/resources/assets/strata/models/item/tonalite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/tonalite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/trachyandesite.json b/src/test/resources/assets/strata/models/item/trachyandesite.json deleted file mode 100644 index b2a5d692..00000000 --- a/src/test/resources/assets/strata/models/item/trachyandesite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/trachyandesite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/trachybasalt.json b/src/test/resources/assets/strata/models/item/trachybasalt.json deleted file mode 100644 index 01951689..00000000 --- a/src/test/resources/assets/strata/models/item/trachybasalt.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/trachybasalt" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/trachyte.json b/src/test/resources/assets/strata/models/item/trachyte.json deleted file mode 100644 index 95be26c6..00000000 --- a/src/test/resources/assets/strata/models/item/trachyte.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/trachyte" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/travertine.json b/src/test/resources/assets/strata/models/item/travertine.json deleted file mode 100644 index e067778c..00000000 --- a/src/test/resources/assets/strata/models/item/travertine.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/travertine" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/troctolite.json b/src/test/resources/assets/strata/models/item/troctolite.json deleted file mode 100644 index ff971577..00000000 --- a/src/test/resources/assets/strata/models/item/troctolite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/troctolite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/trondhjemite.json b/src/test/resources/assets/strata/models/item/trondhjemite.json deleted file mode 100644 index e351d257..00000000 --- a/src/test/resources/assets/strata/models/item/trondhjemite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/trondhjemite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/tuff.json b/src/test/resources/assets/strata/models/item/tuff.json deleted file mode 100644 index 8e55682b..00000000 --- a/src/test/resources/assets/strata/models/item/tuff.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/tuff" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/turbidite.json b/src/test/resources/assets/strata/models/item/turbidite.json deleted file mode 100644 index 2150b384..00000000 --- a/src/test/resources/assets/strata/models/item/turbidite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/turbidite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/unakite.json b/src/test/resources/assets/strata/models/item/unakite.json deleted file mode 100644 index 28cfce05..00000000 --- a/src/test/resources/assets/strata/models/item/unakite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/unakite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/variolite.json b/src/test/resources/assets/strata/models/item/variolite.json deleted file mode 100644 index 005616e4..00000000 --- a/src/test/resources/assets/strata/models/item/variolite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/variolite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/vogesite.json b/src/test/resources/assets/strata/models/item/vogesite.json deleted file mode 100644 index 56acbf83..00000000 --- a/src/test/resources/assets/strata/models/item/vogesite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/vogesite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/wackestone.json b/src/test/resources/assets/strata/models/item/wackestone.json deleted file mode 100644 index 24eb091b..00000000 --- a/src/test/resources/assets/strata/models/item/wackestone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/wackestone" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/websterite.json b/src/test/resources/assets/strata/models/item/websterite.json deleted file mode 100644 index 2ee54588..00000000 --- a/src/test/resources/assets/strata/models/item/websterite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/websterite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/wehrlite.json b/src/test/resources/assets/strata/models/item/wehrlite.json deleted file mode 100644 index 874e79d3..00000000 --- a/src/test/resources/assets/strata/models/item/wehrlite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/wehrlite" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/models/item/whiteschist.json b/src/test/resources/assets/strata/models/item/whiteschist.json deleted file mode 100644 index 9ae0c627..00000000 --- a/src/test/resources/assets/strata/models/item/whiteschist.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "strata:block/whiteschist" -} \ No newline at end of file diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/aa.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/aa.png deleted file mode 100644 index bc6f4063..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/aa.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/aa_bricks.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/aa_bricks.png deleted file mode 100644 index 169b83c4..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/aa_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/aa_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/aa_cobblestone.png deleted file mode 100644 index f3e3431d..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/aa_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/adakite.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/adakite.png deleted file mode 100644 index 7f628781..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/adakite.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/adakite_bricks.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/adakite_bricks.png deleted file mode 100644 index eb876652..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/adakite_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/adakite_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/adakite_cobblestone.png deleted file mode 100644 index 51e62245..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/adakite_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/basalt.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/basalt.png deleted file mode 100644 index 652fa2d8..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/basalt.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/basalt_bricks.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/basalt_bricks.png deleted file mode 100644 index 4768ab7f..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/basalt_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/basalt_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/basalt_cobblestone.png deleted file mode 100644 index a50eeaec..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/basalt_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/chiseled_aa_bricks.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/chiseled_aa_bricks.png deleted file mode 100644 index 50eadc88..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/chiseled_aa_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/chiseled_adakite_bricks.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/chiseled_adakite_bricks.png deleted file mode 100644 index c466fab2..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/chiseled_adakite_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/chiseled_basalt_bricks.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/chiseled_basalt_bricks.png deleted file mode 100644 index 7ec72650..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/chiseled_basalt_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/chiseled_gabbro_bricks.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/chiseled_gabbro_bricks.png deleted file mode 100644 index 290a84c1..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/chiseled_gabbro_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/chiseled_pahoehoe_bricks.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/chiseled_pahoehoe_bricks.png deleted file mode 100644 index 864fe545..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/chiseled_pahoehoe_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/cracked_aa_bricks.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/cracked_aa_bricks.png deleted file mode 100644 index 99a7e263..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/cracked_aa_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/cracked_adakite_bricks.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/cracked_adakite_bricks.png deleted file mode 100644 index dfe0938a..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/cracked_adakite_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/cracked_basalt_bricks.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/cracked_basalt_bricks.png deleted file mode 100644 index 0a72a431..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/cracked_basalt_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/cracked_gabbro_bricks.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/cracked_gabbro_bricks.png deleted file mode 100644 index a0195376..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/cracked_gabbro_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/cracked_pahoehoe_bricks.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/cracked_pahoehoe_bricks.png deleted file mode 100644 index a7b3c759..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/cracked_pahoehoe_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/gabbro.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/gabbro.png deleted file mode 100644 index 32bbdcb8..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/gabbro.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/gabbro_bricks.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/gabbro_bricks.png deleted file mode 100644 index e63e245a..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/gabbro_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/gabbro_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/gabbro_cobblestone.png deleted file mode 100644 index 2e9ea431..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/gabbro_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_aa_bricks.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_aa_bricks.png deleted file mode 100644 index 1977001a..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_aa_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_aa_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_aa_cobblestone.png deleted file mode 100644 index c4e3d1c5..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_aa_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_adakite_bricks.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_adakite_bricks.png deleted file mode 100644 index 68376551..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_adakite_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_adakite_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_adakite_cobblestone.png deleted file mode 100644 index c84c38b4..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_adakite_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_basalt_bricks.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_basalt_bricks.png deleted file mode 100644 index 99ad00f0..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_basalt_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_basalt_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_basalt_cobblestone.png deleted file mode 100644 index d1a22492..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_basalt_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_gabbro_bricks.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_gabbro_bricks.png deleted file mode 100644 index 44d970c5..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_gabbro_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_gabbro_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_gabbro_cobblestone.png deleted file mode 100644 index fa0a5c88..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_gabbro_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_pahoehoe_bricks.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_pahoehoe_bricks.png deleted file mode 100644 index 5d4cf2c3..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_pahoehoe_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_pahoehoe_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_pahoehoe_cobblestone.png deleted file mode 100644 index cba4b401..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/mossy_pahoehoe_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/pahoehoe.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/pahoehoe.png deleted file mode 100644 index 584de25c..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/pahoehoe.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/pahoehoe_bricks.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/pahoehoe_bricks.png deleted file mode 100644 index b76f5aad..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/pahoehoe_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/pahoehoe_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/pahoehoe_cobblestone.png deleted file mode 100644 index b4af7441..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/pahoehoe_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/polished_aa.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/polished_aa.png deleted file mode 100644 index b2cb4562..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/polished_aa.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/polished_adakite.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/polished_adakite.png deleted file mode 100644 index f33f9660..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/polished_adakite.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/polished_basalt.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/polished_basalt.png deleted file mode 100644 index 86e0f7c0..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/polished_basalt.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/polished_gabbro.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/polished_gabbro.png deleted file mode 100644 index 0d5bcbc4..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/polished_gabbro.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/polished_pahoehoe.png b/src/test/resources/assets/strata/textures/blocks/igneous_rocks/polished_pahoehoe.png deleted file mode 100644 index f1d8ff0d..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/igneous_rocks/polished_pahoehoe.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/amphibolite.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/amphibolite.png deleted file mode 100644 index 96c30c1f..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/amphibolite.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/amphibolite_bricks.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/amphibolite_bricks.png deleted file mode 100644 index d64b0255..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/amphibolite_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/amphibolite_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/amphibolite_cobblestone.png deleted file mode 100644 index b2f47f86..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/amphibolite_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_amphibolite_bricks.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_amphibolite_bricks.png deleted file mode 100644 index 17e57a25..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_amphibolite_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_argillite_bricks.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_argillite_bricks.png deleted file mode 100644 index 15caeb22..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_argillite_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_chalk_bricks.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_chalk_bricks.png deleted file mode 100644 index 66b98a20..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_chalk_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_eclogite_bricks.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_eclogite_bricks.png deleted file mode 100644 index 55a9d648..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_eclogite_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_gneiss_bricks.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_gneiss_bricks.png deleted file mode 100644 index 8f96138f..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_gneiss_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_jasillite_bricks.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_jasillite_bricks.png deleted file mode 100644 index d2ce117d..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_jasillite_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_marble_bricks.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_marble_bricks.png deleted file mode 100644 index 88d9be55..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_marble_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_schist_bricks.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_schist_bricks.png deleted file mode 100644 index 9c5522e0..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/chiseled_schist_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/cracked_amphibolite_bricks.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/cracked_amphibolite_bricks.png deleted file mode 100644 index 6a1af63f..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/cracked_amphibolite_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/cracked_eclogite_bricks.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/cracked_eclogite_bricks.png deleted file mode 100644 index 1a94822d..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/cracked_eclogite_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/cracked_gneiss_bricks.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/cracked_gneiss_bricks.png deleted file mode 100644 index 2e266375..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/cracked_gneiss_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/cracked_marble_bricks.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/cracked_marble_bricks.png deleted file mode 100644 index 3a061e42..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/cracked_marble_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/cracked_schist_bricks.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/cracked_schist_bricks.png deleted file mode 100644 index f649b06a..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/cracked_schist_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/eclogite.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/eclogite.png deleted file mode 100644 index e931d51f..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/eclogite.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/eclogite_bricks.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/eclogite_bricks.png deleted file mode 100644 index fc20f37d..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/eclogite_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/eclogite_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/eclogite_cobblestone.png deleted file mode 100644 index 290cbbd1..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/eclogite_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/gneiss.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/gneiss.png deleted file mode 100644 index c7076c3d..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/gneiss.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/gneiss_bricks.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/gneiss_bricks.png deleted file mode 100644 index 8bd9b6bd..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/gneiss_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/gneiss_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/gneiss_cobblestone.png deleted file mode 100644 index cab0932d..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/gneiss_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/marble.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/marble.png deleted file mode 100644 index b9dd6f24..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/marble.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/marble_bricks.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/marble_bricks.png deleted file mode 100644 index 3b477770..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/marble_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/marble_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/marble_cobblestone.png deleted file mode 100644 index 37926030..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/marble_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_amphibolite_bricks.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_amphibolite_bricks.png deleted file mode 100644 index b9c33a50..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_amphibolite_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_amphibolite_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_amphibolite_cobblestone.png deleted file mode 100644 index 5070e2b5..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_amphibolite_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_eclogite_bricks.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_eclogite_bricks.png deleted file mode 100644 index b17b2bb8..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_eclogite_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_eclogite_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_eclogite_cobblestone.png deleted file mode 100644 index 6d8b4509..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_eclogite_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_gneiss_bricks.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_gneiss_bricks.png deleted file mode 100644 index fa5066c9..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_gneiss_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_gneiss_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_gneiss_cobblestone.png deleted file mode 100644 index 0db1d43c..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_gneiss_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_marble_bricks.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_marble_bricks.png deleted file mode 100644 index 4acbbe05..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_marble_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_marble_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_marble_cobblestone.png deleted file mode 100644 index c0b582c6..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_marble_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_schist_bricks.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_schist_bricks.png deleted file mode 100644 index 3ed261fa..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_schist_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_schist_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_schist_cobblestone.png deleted file mode 100644 index 32275c1e..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/mossy_schist_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/polished_amphibolite.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/polished_amphibolite.png deleted file mode 100644 index 4bc85c3a..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/polished_amphibolite.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/polished_eclogite.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/polished_eclogite.png deleted file mode 100644 index b4bd3aa1..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/polished_eclogite.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/polished_gneiss.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/polished_gneiss.png deleted file mode 100644 index ac4613af..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/polished_gneiss.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/polished_marble.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/polished_marble.png deleted file mode 100644 index ca6f8fa8..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/polished_marble.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/polished_schist.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/polished_schist.png deleted file mode 100644 index 548c8b43..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/polished_schist.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/schist.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/schist.png deleted file mode 100644 index 0f82f5fa..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/schist.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/schist_bricks.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/schist_bricks.png deleted file mode 100644 index 5ba01ad3..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/schist_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/schist_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/schist_cobblestone.png deleted file mode 100644 index ba59256d..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/metamorphic_rocks/schist_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/argillite.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/argillite.png deleted file mode 100644 index 65e0adf1..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/argillite.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/argillite_bricks.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/argillite_bricks.png deleted file mode 100644 index 9afcf966..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/argillite_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/argillite_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/argillite_cobblestone.png deleted file mode 100644 index ab300755..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/argillite_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/chalk.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/chalk.png deleted file mode 100644 index 288275de..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/chalk.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/chalk_bricks.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/chalk_bricks.png deleted file mode 100644 index 47b42d22..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/chalk_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/chalk_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/chalk_cobblestone.png deleted file mode 100644 index 3c372451..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/chalk_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/chiseled_limestone_bricks.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/chiseled_limestone_bricks.png deleted file mode 100644 index 64e3623d..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/chiseled_limestone_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/chiseled_shale_bricks.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/chiseled_shale_bricks.png deleted file mode 100644 index 07fc02dd..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/chiseled_shale_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/cracked_argillite_bricks.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/cracked_argillite_bricks.png deleted file mode 100644 index 7574793c..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/cracked_argillite_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/cracked_chalk_bricks.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/cracked_chalk_bricks.png deleted file mode 100644 index af28bac4..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/cracked_chalk_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/cracked_jaspillite_bricks.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/cracked_jaspillite_bricks.png deleted file mode 100644 index 10326786..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/cracked_jaspillite_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/cracked_limestone_bricks.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/cracked_limestone_bricks.png deleted file mode 100644 index f95e2b78..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/cracked_limestone_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/cracked_shale_bricks.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/cracked_shale_bricks.png deleted file mode 100644 index d15da0a3..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/cracked_shale_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/jaspillite.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/jaspillite.png deleted file mode 100644 index d1291ab5..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/jaspillite.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/jaspillite_bricks.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/jaspillite_bricks.png deleted file mode 100644 index fbc60450..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/jaspillite_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/jaspillite_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/jaspillite_cobblestone.png deleted file mode 100644 index 8a9f1812..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/jaspillite_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/limestone.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/limestone.png deleted file mode 100644 index 380657de..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/limestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/limestone_bricks.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/limestone_bricks.png deleted file mode 100644 index c1f04484..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/limestone_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/limestone_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/limestone_cobblestone.png deleted file mode 100644 index cb05c48e..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/limestone_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_argillite_bricks.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_argillite_bricks.png deleted file mode 100644 index 13d231c3..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_argillite_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_argillite_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_argillite_cobblestone.png deleted file mode 100644 index e0559c50..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_argillite_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_chalk_bricks.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_chalk_bricks.png deleted file mode 100644 index 5b1713d0..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_chalk_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_chalk_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_chalk_cobblestone.png deleted file mode 100644 index 45e73812..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_chalk_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_jaspillite_bricks.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_jaspillite_bricks.png deleted file mode 100644 index ade7b59b..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_jaspillite_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_jaspillite_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_jaspillite_cobblestone.png deleted file mode 100644 index da4e6165..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_jaspillite_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_limestone_bricks.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_limestone_bricks.png deleted file mode 100644 index 330a2595..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_limestone_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_limestone_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_limestone_cobblestone.png deleted file mode 100644 index 0f274523..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_limestone_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_shale_bricks.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_shale_bricks.png deleted file mode 100644 index 78fbeada..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_shale_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_shale_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_shale_cobblestone.png deleted file mode 100644 index b0f48b3e..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/mossy_shale_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/polished_argillite.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/polished_argillite.png deleted file mode 100644 index 0462e3ca..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/polished_argillite.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/polished_jaspillite.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/polished_jaspillite.png deleted file mode 100644 index f3d6abdd..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/polished_jaspillite.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/polished_limestone.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/polished_limestone.png deleted file mode 100644 index f98b56e8..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/polished_limestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/polished_shale.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/polished_shale.png deleted file mode 100644 index a728792c..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/polished_shale.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/shale.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/shale.png deleted file mode 100644 index 121ad8ac..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/shale.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/shale_bricks.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/shale_bricks.png deleted file mode 100644 index a9d56ed7..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/shale_bricks.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/shale_cobblestone.png b/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/shale_cobblestone.png deleted file mode 100644 index 4acfb2ac..00000000 Binary files a/src/test/resources/assets/strata/textures/blocks/sedimentary_rocks/shale_cobblestone.png and /dev/null differ diff --git a/src/test/resources/assets/strata/textures/items/debug_item.png b/src/test/resources/assets/strata/textures/items/debug_item.png deleted file mode 100644 index ac5dbdb2..00000000 Binary files a/src/test/resources/assets/strata/textures/items/debug_item.png and /dev/null differ diff --git a/src/test/resources/data/forge/tags/blocks/wg_sediment.json b/src/test/resources/data/forge/tags/blocks/wg_sediment.json deleted file mode 100644 index e9f3b4c3..00000000 --- a/src/test/resources/data/forge/tags/blocks/wg_sediment.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "strata:limestone", - "strata:shale" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/forge/tags/blocks/wg_stone.json b/src/test/resources/data/forge/tags/blocks/wg_stone.json deleted file mode 100644 index 4df7755a..00000000 --- a/src/test/resources/data/forge/tags/blocks/wg_stone.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "replace": false, - "values": [ - "strata:gabbro", - "strata:basalt", - "strata:gneiss", - "strata:schist", - "strata:amphibolite", - "strata:limestone", - "strata:shale" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/acacia_logs.json b/src/test/resources/data/minecraft/tags/blocks/acacia_logs.json deleted file mode 100644 index 2aa36aea..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/acacia_logs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:acacia_log", - "minecraft:acacia_wood", - "minecraft:stripped_acacia_log", - "minecraft:stripped_acacia_wood" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/anvil.json b/src/test/resources/data/minecraft/tags/blocks/anvil.json deleted file mode 100644 index d69773e1..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/anvil.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:anvil", - "minecraft:chipped_anvil", - "minecraft:damaged_anvil" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/bamboo_plantable_on.json b/src/test/resources/data/minecraft/tags/blocks/bamboo_plantable_on.json deleted file mode 100644 index b390cb0c..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/bamboo_plantable_on.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:bamboo", - "minecraft:bamboo_sapling", - "minecraft:gravel", - "#minecraft:sand", - "#minecraft:dirt_like" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/banners.json b/src/test/resources/data/minecraft/tags/blocks/banners.json deleted file mode 100644 index df4ebc27..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/banners.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:white_banner", - "minecraft:orange_banner", - "minecraft:magenta_banner", - "minecraft:light_blue_banner", - "minecraft:yellow_banner", - "minecraft:lime_banner", - "minecraft:pink_banner", - "minecraft:gray_banner", - "minecraft:light_gray_banner", - "minecraft:cyan_banner", - "minecraft:purple_banner", - "minecraft:blue_banner", - "minecraft:brown_banner", - "minecraft:green_banner", - "minecraft:red_banner", - "minecraft:black_banner", - "minecraft:white_wall_banner", - "minecraft:orange_wall_banner", - "minecraft:magenta_wall_banner", - "minecraft:light_blue_wall_banner", - "minecraft:yellow_wall_banner", - "minecraft:lime_wall_banner", - "minecraft:pink_wall_banner", - "minecraft:gray_wall_banner", - "minecraft:light_gray_wall_banner", - "minecraft:cyan_wall_banner", - "minecraft:purple_wall_banner", - "minecraft:blue_wall_banner", - "minecraft:brown_wall_banner", - "minecraft:green_wall_banner", - "minecraft:red_wall_banner", - "minecraft:black_wall_banner" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/beds.json b/src/test/resources/data/minecraft/tags/blocks/beds.json deleted file mode 100644 index 2e031f30..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/beds.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:red_bed", - "minecraft:black_bed", - "minecraft:blue_bed", - "minecraft:brown_bed", - "minecraft:cyan_bed", - "minecraft:gray_bed", - "minecraft:green_bed", - "minecraft:light_blue_bed", - "minecraft:light_gray_bed", - "minecraft:lime_bed", - "minecraft:magenta_bed", - "minecraft:orange_bed", - "minecraft:pink_bed", - "minecraft:purple_bed", - "minecraft:white_bed", - "minecraft:yellow_bed" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/birch_logs.json b/src/test/resources/data/minecraft/tags/blocks/birch_logs.json deleted file mode 100644 index 7be61059..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/birch_logs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:birch_log", - "minecraft:birch_wood", - "minecraft:stripped_birch_log", - "minecraft:stripped_birch_wood" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/buttons.json b/src/test/resources/data/minecraft/tags/blocks/buttons.json deleted file mode 100644 index 1247256e..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/buttons.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "_comment": "Stone Buttons maybe?", - "replace": false, - "values": [ - "#minecraft:wooden_buttons", - "minecraft:stone_button" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/carpets.json b/src/test/resources/data/minecraft/tags/blocks/carpets.json deleted file mode 100644 index 9b28b1fd..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/carpets.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:white_carpet", - "minecraft:orange_carpet", - "minecraft:magenta_carpet", - "minecraft:light_blue_carpet", - "minecraft:yellow_carpet", - "minecraft:lime_carpet", - "minecraft:pink_carpet", - "minecraft:gray_carpet", - "minecraft:light_gray_carpet", - "minecraft:cyan_carpet", - "minecraft:purple_carpet", - "minecraft:blue_carpet", - "minecraft:brown_carpet", - "minecraft:green_carpet", - "minecraft:red_carpet", - "minecraft:black_carpet" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/coral_blocks.json b/src/test/resources/data/minecraft/tags/blocks/coral_blocks.json deleted file mode 100644 index e2e55241..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/coral_blocks.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:tube_coral_block", - "minecraft:brain_coral_block", - "minecraft:bubble_coral_block", - "minecraft:fire_coral_block", - "minecraft:horn_coral_block" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/coral_plants.json b/src/test/resources/data/minecraft/tags/blocks/coral_plants.json deleted file mode 100644 index 0aa32f52..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/coral_plants.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:tube_coral", - "minecraft:brain_coral", - "minecraft:bubble_coral", - "minecraft:fire_coral", - "minecraft:horn_coral" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/corals.json b/src/test/resources/data/minecraft/tags/blocks/corals.json deleted file mode 100644 index 649b6ebc..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/corals.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "#minecraft:coral_plants", - "minecraft:tube_coral_fan", - "minecraft:brain_coral_fan", - "minecraft:bubble_coral_fan", - "minecraft:fire_coral_fan", - "minecraft:horn_coral_fan" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/dark_oak_logs.json b/src/test/resources/data/minecraft/tags/blocks/dark_oak_logs.json deleted file mode 100644 index e1e3e165..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/dark_oak_logs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:dark_oak_log", - "minecraft:dark_oak_wood", - "minecraft:stripped_dark_oak_log", - "minecraft:stripped_dark_oak_wood" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/dirt_like.json b/src/test/resources/data/minecraft/tags/blocks/dirt_like.json deleted file mode 100644 index 5e9ae12b..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/dirt_like.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:dirt", - "minecraft:grass_block", - "minecraft:podzol", - "minecraft:coarse_dirt", - "minecraft:mycelium" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/doors.json b/src/test/resources/data/minecraft/tags/blocks/doors.json deleted file mode 100644 index 0f9fe980..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/doors.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "#minecraft:wooden_doors", - "minecraft:iron_door" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/dragon_immune.json b/src/test/resources/data/minecraft/tags/blocks/dragon_immune.json deleted file mode 100644 index b11e9412..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/dragon_immune.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:barrier", - "minecraft:bedrock", - "minecraft:end_portal", - "minecraft:end_portal_frame", - "minecraft:end_gateway", - "minecraft:command_block", - "minecraft:repeating_command_block", - "minecraft:chain_command_block", - "minecraft:structure_block", - "minecraft:jigsaw", - "minecraft:moving_piston", - "minecraft:obsidian", - "minecraft:end_stone", - "minecraft:iron_bars" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/enderman_holdable.json b/src/test/resources/data/minecraft/tags/blocks/enderman_holdable.json deleted file mode 100644 index 723b590f..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/enderman_holdable.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "replace": false, - "values": [ - "#minecraft:small_flowers", - "minecraft:grass_block", - "minecraft:dirt", - "minecraft:coarse_dirt", - "minecraft:podzol", - "minecraft:sand", - "minecraft:red_sand", - "minecraft:gravel", - "minecraft:brown_mushroom", - "minecraft:red_mushroom", - "minecraft:tnt", - "minecraft:cactus", - "minecraft:clay", - "minecraft:pumpkin", - "minecraft:carved_pumpkin", - "minecraft:melon", - "minecraft:mycelium", - "minecraft:netherrack" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/fences.json b/src/test/resources/data/minecraft/tags/blocks/fences.json deleted file mode 100644 index 0ef08473..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/fences.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "#minecraft:wooden_fences", - "minecraft:nether_brick_fence" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/flower_pots.json b/src/test/resources/data/minecraft/tags/blocks/flower_pots.json deleted file mode 100644 index 81109fb8..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/flower_pots.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:flower_pot", - "minecraft:potted_poppy", - "minecraft:potted_blue_orchid", - "minecraft:potted_allium", - "minecraft:potted_azure_bluet", - "minecraft:potted_red_tulip", - "minecraft:potted_orange_tulip", - "minecraft:potted_white_tulip", - "minecraft:potted_pink_tulip", - "minecraft:potted_oxeye_daisy", - "minecraft:potted_dandelion", - "minecraft:potted_oak_sapling", - "minecraft:potted_spruce_sapling", - "minecraft:potted_birch_sapling", - "minecraft:potted_jungle_sapling", - "minecraft:potted_acacia_sapling", - "minecraft:potted_dark_oak_sapling", - "minecraft:potted_red_mushroom", - "minecraft:potted_brown_mushroom", - "minecraft:potted_dead_bush", - "minecraft:potted_fern", - "minecraft:potted_cactus", - "minecraft:potted_cornflower", - "minecraft:potted_lily_of_the_valley", - "minecraft:potted_wither_rose", - "minecraft:potted_bamboo" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/ice.json b/src/test/resources/data/minecraft/tags/blocks/ice.json deleted file mode 100644 index c5f45013..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/ice.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:ice", - "minecraft:packed_ice", - "minecraft:blue_ice", - "minecraft:frosted_ice" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/impermeable.json b/src/test/resources/data/minecraft/tags/blocks/impermeable.json deleted file mode 100644 index 9a23d087..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/impermeable.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:glass", - "minecraft:white_stained_glass", - "minecraft:orange_stained_glass", - "minecraft:magenta_stained_glass", - "minecraft:light_blue_stained_glass", - "minecraft:yellow_stained_glass", - "minecraft:lime_stained_glass", - "minecraft:pink_stained_glass", - "minecraft:gray_stained_glass", - "minecraft:light_gray_stained_glass", - "minecraft:cyan_stained_glass", - "minecraft:purple_stained_glass", - "minecraft:blue_stained_glass", - "minecraft:brown_stained_glass", - "minecraft:green_stained_glass", - "minecraft:red_stained_glass", - "minecraft:black_stained_glass" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/jungle_logs.json b/src/test/resources/data/minecraft/tags/blocks/jungle_logs.json deleted file mode 100644 index ec51d638..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/jungle_logs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:jungle_log", - "minecraft:jungle_wood", - "minecraft:stripped_jungle_log", - "minecraft:stripped_jungle_wood" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/leaves.json b/src/test/resources/data/minecraft/tags/blocks/leaves.json deleted file mode 100644 index 036ec387..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/leaves.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:jungle_leaves", - "minecraft:oak_leaves", - "minecraft:spruce_leaves", - "minecraft:dark_oak_leaves", - "minecraft:acacia_leaves", - "minecraft:birch_leaves" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/logs.json b/src/test/resources/data/minecraft/tags/blocks/logs.json deleted file mode 100644 index e5a8d0fc..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/logs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "#minecraft:dark_oak_logs", - "#minecraft:oak_logs", - "#minecraft:acacia_logs", - "#minecraft:birch_logs", - "#minecraft:jungle_logs", - "#minecraft:spruce_logs" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/oak_logs.json b/src/test/resources/data/minecraft/tags/blocks/oak_logs.json deleted file mode 100644 index 927086f6..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/oak_logs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_log", - "minecraft:oak_wood", - "minecraft:stripped_oak_log", - "minecraft:stripped_oak_wood" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/planks.json b/src/test/resources/data/minecraft/tags/blocks/planks.json deleted file mode 100644 index 72942d25..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/planks.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_planks", - "minecraft:spruce_planks", - "minecraft:birch_planks", - "minecraft:jungle_planks", - "minecraft:acacia_planks", - "minecraft:dark_oak_planks" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/rails.json b/src/test/resources/data/minecraft/tags/blocks/rails.json deleted file mode 100644 index 036ac7fc..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/rails.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:rail", - "minecraft:powered_rail", - "minecraft:detector_rail", - "minecraft:activator_rail" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/sand.json b/src/test/resources/data/minecraft/tags/blocks/sand.json deleted file mode 100644 index fa7a9c4a..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/sand.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:sand", - "minecraft:red_sand" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/saplings.json b/src/test/resources/data/minecraft/tags/blocks/saplings.json deleted file mode 100644 index 04fe81f9..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/saplings.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_sapling", - "minecraft:spruce_sapling", - "minecraft:birch_sapling", - "minecraft:jungle_sapling", - "minecraft:acacia_sapling", - "minecraft:dark_oak_sapling" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/signs.json b/src/test/resources/data/minecraft/tags/blocks/signs.json deleted file mode 100644 index 7677a609..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/signs.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "#minecraft:standing_signs", - "#minecraft:wall_signs" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/slabs.json b/src/test/resources/data/minecraft/tags/blocks/slabs.json deleted file mode 100644 index fed1c200..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/slabs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "replace": false, - "values": [ - "strata:amphibolite_slab", - "strata:basalt_slab", - "strata:gabbro_slab", - "strata:gneiss_slab", - "strata:limestone_slab", - "strata:schist_slab", - "strata:shale_slab", - "strata:amphibolite_brick_slab", - "strata:basalt_brick_slab", - "strata:gabbro_brick_slab", - "strata:gneiss_brick_slab", - "strata:limestone_brick_slab", - "strata:schist_brick_slab", - "strata:shale_brick_slab", - "strata:mossy_amphibolite_brick_slab", - "strata:mossy_basalt_brick_slab", - "strata:mossy_gabbro_brick_slab", - "strata:mossy_gneiss_brick_slab", - "strata:mossy_limestone_brick_slab", - "strata:mossy_schist_brick_slab", - "strata:mossy_shale_brick_slab", - "strata:polished_amphibolite_slab", - "strata:polished_basalt_slab", - "strata:polished_gabbro_slab", - "strata:polished_gneiss_slab", - "strata:polished_limestone_slab", - "strata:polished_schist_slab", - "strata:polished_shale_slab" - - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/small_flowers.json b/src/test/resources/data/minecraft/tags/blocks/small_flowers.json deleted file mode 100644 index 395128a6..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/small_flowers.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:dandelion", - "minecraft:poppy", - "minecraft:blue_orchid", - "minecraft:allium", - "minecraft:azure_bluet", - "minecraft:red_tulip", - "minecraft:orange_tulip", - "minecraft:white_tulip", - "minecraft:pink_tulip", - "minecraft:oxeye_daisy", - "minecraft:cornflower", - "minecraft:lily_of_the_valley", - "minecraft:wither_rose" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/spruce_logs.json b/src/test/resources/data/minecraft/tags/blocks/spruce_logs.json deleted file mode 100644 index 87b5caf6..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/spruce_logs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:spruce_log", - "minecraft:spruce_wood", - "minecraft:stripped_spruce_log", - "minecraft:stripped_spruce_wood" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/stairs.json b/src/test/resources/data/minecraft/tags/blocks/stairs.json deleted file mode 100644 index 9b40cb06..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/stairs.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "replace": false, - "values": [ - "strata:amphibolite_stairs", - "strata:basalt_stairs", - "strata:gabbro_stairs", - "strata:gneiss_stairs", - "strata:limestone_stairs", - "strata:schist_stairs", - "strata:shale_stairs", - "strata:amphibolite_brick_stairs", - "strata:basalt_brick_stairs", - "strata:gabbro_brick_stairs", - "strata:gneiss_brick_stairs", - "strata:limestone_brick_stairs", - "strata:schist_brick_stairs", - "strata:shale_brick_stairs", - "strata:mossy_amphibolite_brick_stairs", - "strata:mossy_basalt_brick_stairs", - "strata:mossy_gabbro_brick_stairs", - "strata:mossy_gneiss_brick_stairs", - "strata:mossy_limestone_brick_stairs", - "strata:mossy_schist_brick_stairs", - "strata:mossy_shale_brick_stairs", - "strata:polished_amphibolite_stairs", - "strata:polished_basalt_stairs", - "strata:polished_gabbro_stairs", - "strata:polished_gneiss_stairs", - "strata:polished_limestone_stairs", - "strata:polished_schist_stairs", - "strata:polished_shale_stairs" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/standing_signs.json b/src/test/resources/data/minecraft/tags/blocks/standing_signs.json deleted file mode 100644 index aeee8038..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/standing_signs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_sign", - "minecraft:spruce_sign", - "minecraft:birch_sign", - "minecraft:acacia_sign", - "minecraft:jungle_sign", - "minecraft:dark_oak_sign" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/stone_bricks.json b/src/test/resources/data/minecraft/tags/blocks/stone_bricks.json deleted file mode 100644 index 7cec36c5..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/stone_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:stone_bricks", - "minecraft:mossy_stone_bricks", - "minecraft:cracked_stone_bricks", - "minecraft:chiseled_stone_bricks" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/trapdoors.json b/src/test/resources/data/minecraft/tags/blocks/trapdoors.json deleted file mode 100644 index d9625857..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/trapdoors.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "#minecraft:wooden_trapdoors", - "minecraft:iron_trapdoor" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/underwater_bonemeals.json b/src/test/resources/data/minecraft/tags/blocks/underwater_bonemeals.json deleted file mode 100644 index c1245146..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/underwater_bonemeals.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:seagrass", - "#minecraft:corals", - "#minecraft:wall_corals" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/valid_spawn.json b/src/test/resources/data/minecraft/tags/blocks/valid_spawn.json deleted file mode 100644 index bcbc42e1..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/valid_spawn.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:grass_block", - "minecraft:podzol" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/wall_corals.json b/src/test/resources/data/minecraft/tags/blocks/wall_corals.json deleted file mode 100644 index db2c3304..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/wall_corals.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:tube_coral_wall_fan", - "minecraft:brain_coral_wall_fan", - "minecraft:bubble_coral_wall_fan", - "minecraft:fire_coral_wall_fan", - "minecraft:horn_coral_wall_fan" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/wall_signs.json b/src/test/resources/data/minecraft/tags/blocks/wall_signs.json deleted file mode 100644 index cace0078..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/wall_signs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_wall_sign", - "minecraft:spruce_wall_sign", - "minecraft:birch_wall_sign", - "minecraft:acacia_wall_sign", - "minecraft:jungle_wall_sign", - "minecraft:dark_oak_wall_sign" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/walls.json b/src/test/resources/data/minecraft/tags/blocks/walls.json deleted file mode 100644 index df9f2278..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/walls.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "replace": false, - "values": [ - "strata:amphibolite_wall", - "strata:basalt_wall", - "strata:gabbro_wall", - "strata:gneiss_wall", - "strata:limestone_wall", - "strata:schist_wall", - "strata:shale_wall", - "strata:amphibolite_brick_wall", - "strata:basalt_brick_wall", - "strata:gabbro_brick_wall", - "strata:gneiss_brick_wall", - "strata:limestone_brick_wall", - "strata:schist_brick_wall", - "strata:shale_brick_wall", - "strata:mossy_amphibolite_brick_wall", - "strata:mossy_basalt_brick_wall", - "strata:mossy_gabbro_brick_wall", - "strata:mossy_gneiss_brick_wall", - "strata:mossy_limestone_brick_wall", - "strata:mossy_schist_brick_wall", - "strata:mossy_shale_brick_wall" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/wither_immune.json b/src/test/resources/data/minecraft/tags/blocks/wither_immune.json deleted file mode 100644 index 995c6486..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/wither_immune.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:barrier", - "minecraft:bedrock", - "minecraft:end_portal", - "minecraft:end_portal_frame", - "minecraft:end_gateway", - "minecraft:command_block", - "minecraft:repeating_command_block", - "minecraft:chain_command_block", - "minecraft:structure_block", - "minecraft:jigsaw", - "minecraft:moving_piston" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/wooden_buttons.json b/src/test/resources/data/minecraft/tags/blocks/wooden_buttons.json deleted file mode 100644 index 5b09c902..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/wooden_buttons.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_button", - "minecraft:spruce_button", - "minecraft:birch_button", - "minecraft:jungle_button", - "minecraft:acacia_button", - "minecraft:dark_oak_button" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/wooden_doors.json b/src/test/resources/data/minecraft/tags/blocks/wooden_doors.json deleted file mode 100644 index b43e2368..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/wooden_doors.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_door", - "minecraft:spruce_door", - "minecraft:birch_door", - "minecraft:jungle_door", - "minecraft:acacia_door", - "minecraft:dark_oak_door" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/wooden_fences.json b/src/test/resources/data/minecraft/tags/blocks/wooden_fences.json deleted file mode 100644 index b6c73a9c..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/wooden_fences.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_fence", - "minecraft:acacia_fence", - "minecraft:dark_oak_fence", - "minecraft:spruce_fence", - "minecraft:birch_fence", - "minecraft:jungle_fence" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/wooden_pressure_plates.json b/src/test/resources/data/minecraft/tags/blocks/wooden_pressure_plates.json deleted file mode 100644 index 72570f15..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/wooden_pressure_plates.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_pressure_plate", - "minecraft:spruce_pressure_plate", - "minecraft:birch_pressure_plate", - "minecraft:jungle_pressure_plate", - "minecraft:acacia_pressure_plate", - "minecraft:dark_oak_pressure_plate" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/wooden_slabs.json b/src/test/resources/data/minecraft/tags/blocks/wooden_slabs.json deleted file mode 100644 index 62c848d6..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/wooden_slabs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_slab", - "minecraft:spruce_slab", - "minecraft:birch_slab", - "minecraft:jungle_slab", - "minecraft:acacia_slab", - "minecraft:dark_oak_slab" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/wooden_stairs.json b/src/test/resources/data/minecraft/tags/blocks/wooden_stairs.json deleted file mode 100644 index c3af3bf4..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/wooden_stairs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_stairs", - "minecraft:spruce_stairs", - "minecraft:birch_stairs", - "minecraft:jungle_stairs", - "minecraft:acacia_stairs", - "minecraft:dark_oak_stairs" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/wooden_trapdoors.json b/src/test/resources/data/minecraft/tags/blocks/wooden_trapdoors.json deleted file mode 100644 index bc8b2f4a..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/wooden_trapdoors.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:acacia_trapdoor", - "minecraft:birch_trapdoor", - "minecraft:dark_oak_trapdoor", - "minecraft:jungle_trapdoor", - "minecraft:oak_trapdoor", - "minecraft:spruce_trapdoor" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/blocks/wool.json b/src/test/resources/data/minecraft/tags/blocks/wool.json deleted file mode 100644 index c39732fc..00000000 --- a/src/test/resources/data/minecraft/tags/blocks/wool.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:white_wool", - "minecraft:orange_wool", - "minecraft:magenta_wool", - "minecraft:light_blue_wool", - "minecraft:yellow_wool", - "minecraft:lime_wool", - "minecraft:pink_wool", - "minecraft:gray_wool", - "minecraft:light_gray_wool", - "minecraft:cyan_wool", - "minecraft:purple_wool", - "minecraft:blue_wool", - "minecraft:brown_wool", - "minecraft:green_wool", - "minecraft:red_wool", - "minecraft:black_wool" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/entity_types/raiders.json b/src/test/resources/data/minecraft/tags/entity_types/raiders.json deleted file mode 100644 index 8eefee28..00000000 --- a/src/test/resources/data/minecraft/tags/entity_types/raiders.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:evoker", - "minecraft:pillager", - "minecraft:ravager", - "minecraft:vindicator", - "minecraft:illusioner", - "minecraft:witch" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/entity_types/skeletons.json b/src/test/resources/data/minecraft/tags/entity_types/skeletons.json deleted file mode 100644 index 27b34650..00000000 --- a/src/test/resources/data/minecraft/tags/entity_types/skeletons.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:skeleton", - "minecraft:stray", - "minecraft:wither_skeleton" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/fluids/lava.json b/src/test/resources/data/minecraft/tags/fluids/lava.json deleted file mode 100644 index a21400bd..00000000 --- a/src/test/resources/data/minecraft/tags/fluids/lava.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:lava", - "minecraft:flowing_lava" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/fluids/water.json b/src/test/resources/data/minecraft/tags/fluids/water.json deleted file mode 100644 index 75417261..00000000 --- a/src/test/resources/data/minecraft/tags/fluids/water.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:water", - "minecraft:flowing_water" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/acacia_logs.json b/src/test/resources/data/minecraft/tags/items/acacia_logs.json deleted file mode 100644 index 2aa36aea..00000000 --- a/src/test/resources/data/minecraft/tags/items/acacia_logs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:acacia_log", - "minecraft:acacia_wood", - "minecraft:stripped_acacia_log", - "minecraft:stripped_acacia_wood" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/anvil.json b/src/test/resources/data/minecraft/tags/items/anvil.json deleted file mode 100644 index d69773e1..00000000 --- a/src/test/resources/data/minecraft/tags/items/anvil.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:anvil", - "minecraft:chipped_anvil", - "minecraft:damaged_anvil" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/arrows.json b/src/test/resources/data/minecraft/tags/items/arrows.json deleted file mode 100644 index 69ebb0d5..00000000 --- a/src/test/resources/data/minecraft/tags/items/arrows.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:arrow", - "minecraft:tipped_arrow", - "minecraft:spectral_arrow" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/banners.json b/src/test/resources/data/minecraft/tags/items/banners.json deleted file mode 100644 index 228a4e9e..00000000 --- a/src/test/resources/data/minecraft/tags/items/banners.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:white_banner", - "minecraft:orange_banner", - "minecraft:magenta_banner", - "minecraft:light_blue_banner", - "minecraft:yellow_banner", - "minecraft:lime_banner", - "minecraft:pink_banner", - "minecraft:gray_banner", - "minecraft:light_gray_banner", - "minecraft:cyan_banner", - "minecraft:purple_banner", - "minecraft:blue_banner", - "minecraft:brown_banner", - "minecraft:green_banner", - "minecraft:red_banner", - "minecraft:black_banner" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/beds.json b/src/test/resources/data/minecraft/tags/items/beds.json deleted file mode 100644 index 2e031f30..00000000 --- a/src/test/resources/data/minecraft/tags/items/beds.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:red_bed", - "minecraft:black_bed", - "minecraft:blue_bed", - "minecraft:brown_bed", - "minecraft:cyan_bed", - "minecraft:gray_bed", - "minecraft:green_bed", - "minecraft:light_blue_bed", - "minecraft:light_gray_bed", - "minecraft:lime_bed", - "minecraft:magenta_bed", - "minecraft:orange_bed", - "minecraft:pink_bed", - "minecraft:purple_bed", - "minecraft:white_bed", - "minecraft:yellow_bed" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/birch_logs.json b/src/test/resources/data/minecraft/tags/items/birch_logs.json deleted file mode 100644 index 7be61059..00000000 --- a/src/test/resources/data/minecraft/tags/items/birch_logs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:birch_log", - "minecraft:birch_wood", - "minecraft:stripped_birch_log", - "minecraft:stripped_birch_wood" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/boats.json b/src/test/resources/data/minecraft/tags/items/boats.json deleted file mode 100644 index 03a21c61..00000000 --- a/src/test/resources/data/minecraft/tags/items/boats.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_boat", - "minecraft:spruce_boat", - "minecraft:birch_boat", - "minecraft:jungle_boat", - "minecraft:acacia_boat", - "minecraft:dark_oak_boat" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/buttons.json b/src/test/resources/data/minecraft/tags/items/buttons.json deleted file mode 100644 index c516f401..00000000 --- a/src/test/resources/data/minecraft/tags/items/buttons.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "#minecraft:wooden_buttons", - "minecraft:stone_button" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/carpets.json b/src/test/resources/data/minecraft/tags/items/carpets.json deleted file mode 100644 index 9b28b1fd..00000000 --- a/src/test/resources/data/minecraft/tags/items/carpets.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:white_carpet", - "minecraft:orange_carpet", - "minecraft:magenta_carpet", - "minecraft:light_blue_carpet", - "minecraft:yellow_carpet", - "minecraft:lime_carpet", - "minecraft:pink_carpet", - "minecraft:gray_carpet", - "minecraft:light_gray_carpet", - "minecraft:cyan_carpet", - "minecraft:purple_carpet", - "minecraft:blue_carpet", - "minecraft:brown_carpet", - "minecraft:green_carpet", - "minecraft:red_carpet", - "minecraft:black_carpet" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/coals.json b/src/test/resources/data/minecraft/tags/items/coals.json deleted file mode 100644 index e809f0b5..00000000 --- a/src/test/resources/data/minecraft/tags/items/coals.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:coal", - "minecraft:charcoal" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/dark_oak_logs.json b/src/test/resources/data/minecraft/tags/items/dark_oak_logs.json deleted file mode 100644 index e1e3e165..00000000 --- a/src/test/resources/data/minecraft/tags/items/dark_oak_logs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:dark_oak_log", - "minecraft:dark_oak_wood", - "minecraft:stripped_dark_oak_log", - "minecraft:stripped_dark_oak_wood" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/doors.json b/src/test/resources/data/minecraft/tags/items/doors.json deleted file mode 100644 index 0f9fe980..00000000 --- a/src/test/resources/data/minecraft/tags/items/doors.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "#minecraft:wooden_doors", - "minecraft:iron_door" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/fences.json b/src/test/resources/data/minecraft/tags/items/fences.json deleted file mode 100644 index 0ef08473..00000000 --- a/src/test/resources/data/minecraft/tags/items/fences.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "#minecraft:wooden_fences", - "minecraft:nether_brick_fence" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/fishes.json b/src/test/resources/data/minecraft/tags/items/fishes.json deleted file mode 100644 index 4582fb0a..00000000 --- a/src/test/resources/data/minecraft/tags/items/fishes.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:cod", - "minecraft:cooked_cod", - "minecraft:salmon", - "minecraft:cooked_salmon", - "minecraft:pufferfish", - "minecraft:tropical_fish" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/jungle_logs.json b/src/test/resources/data/minecraft/tags/items/jungle_logs.json deleted file mode 100644 index ec51d638..00000000 --- a/src/test/resources/data/minecraft/tags/items/jungle_logs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:jungle_log", - "minecraft:jungle_wood", - "minecraft:stripped_jungle_log", - "minecraft:stripped_jungle_wood" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/leaves.json b/src/test/resources/data/minecraft/tags/items/leaves.json deleted file mode 100644 index 036ec387..00000000 --- a/src/test/resources/data/minecraft/tags/items/leaves.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:jungle_leaves", - "minecraft:oak_leaves", - "minecraft:spruce_leaves", - "minecraft:dark_oak_leaves", - "minecraft:acacia_leaves", - "minecraft:birch_leaves" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/logs.json b/src/test/resources/data/minecraft/tags/items/logs.json deleted file mode 100644 index e5a8d0fc..00000000 --- a/src/test/resources/data/minecraft/tags/items/logs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "#minecraft:dark_oak_logs", - "#minecraft:oak_logs", - "#minecraft:acacia_logs", - "#minecraft:birch_logs", - "#minecraft:jungle_logs", - "#minecraft:spruce_logs" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/music_discs.json b/src/test/resources/data/minecraft/tags/items/music_discs.json deleted file mode 100644 index 2809edff..00000000 --- a/src/test/resources/data/minecraft/tags/items/music_discs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:music_disc_13", - "minecraft:music_disc_cat", - "minecraft:music_disc_blocks", - "minecraft:music_disc_chirp", - "minecraft:music_disc_far", - "minecraft:music_disc_mall", - "minecraft:music_disc_mellohi", - "minecraft:music_disc_stal", - "minecraft:music_disc_strad", - "minecraft:music_disc_ward", - "minecraft:music_disc_11", - "minecraft:music_disc_wait" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/oak_logs.json b/src/test/resources/data/minecraft/tags/items/oak_logs.json deleted file mode 100644 index 927086f6..00000000 --- a/src/test/resources/data/minecraft/tags/items/oak_logs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_log", - "minecraft:oak_wood", - "minecraft:stripped_oak_log", - "minecraft:stripped_oak_wood" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/planks.json b/src/test/resources/data/minecraft/tags/items/planks.json deleted file mode 100644 index 72942d25..00000000 --- a/src/test/resources/data/minecraft/tags/items/planks.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_planks", - "minecraft:spruce_planks", - "minecraft:birch_planks", - "minecraft:jungle_planks", - "minecraft:acacia_planks", - "minecraft:dark_oak_planks" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/rails.json b/src/test/resources/data/minecraft/tags/items/rails.json deleted file mode 100644 index 036ac7fc..00000000 --- a/src/test/resources/data/minecraft/tags/items/rails.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:rail", - "minecraft:powered_rail", - "minecraft:detector_rail", - "minecraft:activator_rail" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/sand.json b/src/test/resources/data/minecraft/tags/items/sand.json deleted file mode 100644 index fa7a9c4a..00000000 --- a/src/test/resources/data/minecraft/tags/items/sand.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:sand", - "minecraft:red_sand" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/saplings.json b/src/test/resources/data/minecraft/tags/items/saplings.json deleted file mode 100644 index 04fe81f9..00000000 --- a/src/test/resources/data/minecraft/tags/items/saplings.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_sapling", - "minecraft:spruce_sapling", - "minecraft:birch_sapling", - "minecraft:jungle_sapling", - "minecraft:acacia_sapling", - "minecraft:dark_oak_sapling" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/signs.json b/src/test/resources/data/minecraft/tags/items/signs.json deleted file mode 100644 index aeee8038..00000000 --- a/src/test/resources/data/minecraft/tags/items/signs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_sign", - "minecraft:spruce_sign", - "minecraft:birch_sign", - "minecraft:acacia_sign", - "minecraft:jungle_sign", - "minecraft:dark_oak_sign" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/slabs.json b/src/test/resources/data/minecraft/tags/items/slabs.json deleted file mode 100644 index fed1c200..00000000 --- a/src/test/resources/data/minecraft/tags/items/slabs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "replace": false, - "values": [ - "strata:amphibolite_slab", - "strata:basalt_slab", - "strata:gabbro_slab", - "strata:gneiss_slab", - "strata:limestone_slab", - "strata:schist_slab", - "strata:shale_slab", - "strata:amphibolite_brick_slab", - "strata:basalt_brick_slab", - "strata:gabbro_brick_slab", - "strata:gneiss_brick_slab", - "strata:limestone_brick_slab", - "strata:schist_brick_slab", - "strata:shale_brick_slab", - "strata:mossy_amphibolite_brick_slab", - "strata:mossy_basalt_brick_slab", - "strata:mossy_gabbro_brick_slab", - "strata:mossy_gneiss_brick_slab", - "strata:mossy_limestone_brick_slab", - "strata:mossy_schist_brick_slab", - "strata:mossy_shale_brick_slab", - "strata:polished_amphibolite_slab", - "strata:polished_basalt_slab", - "strata:polished_gabbro_slab", - "strata:polished_gneiss_slab", - "strata:polished_limestone_slab", - "strata:polished_schist_slab", - "strata:polished_shale_slab" - - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/small_flowers.json b/src/test/resources/data/minecraft/tags/items/small_flowers.json deleted file mode 100644 index 395128a6..00000000 --- a/src/test/resources/data/minecraft/tags/items/small_flowers.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:dandelion", - "minecraft:poppy", - "minecraft:blue_orchid", - "minecraft:allium", - "minecraft:azure_bluet", - "minecraft:red_tulip", - "minecraft:orange_tulip", - "minecraft:white_tulip", - "minecraft:pink_tulip", - "minecraft:oxeye_daisy", - "minecraft:cornflower", - "minecraft:lily_of_the_valley", - "minecraft:wither_rose" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/spruce_logs.json b/src/test/resources/data/minecraft/tags/items/spruce_logs.json deleted file mode 100644 index 87b5caf6..00000000 --- a/src/test/resources/data/minecraft/tags/items/spruce_logs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:spruce_log", - "minecraft:spruce_wood", - "minecraft:stripped_spruce_log", - "minecraft:stripped_spruce_wood" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/stairs.json b/src/test/resources/data/minecraft/tags/items/stairs.json deleted file mode 100644 index 9b40cb06..00000000 --- a/src/test/resources/data/minecraft/tags/items/stairs.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "replace": false, - "values": [ - "strata:amphibolite_stairs", - "strata:basalt_stairs", - "strata:gabbro_stairs", - "strata:gneiss_stairs", - "strata:limestone_stairs", - "strata:schist_stairs", - "strata:shale_stairs", - "strata:amphibolite_brick_stairs", - "strata:basalt_brick_stairs", - "strata:gabbro_brick_stairs", - "strata:gneiss_brick_stairs", - "strata:limestone_brick_stairs", - "strata:schist_brick_stairs", - "strata:shale_brick_stairs", - "strata:mossy_amphibolite_brick_stairs", - "strata:mossy_basalt_brick_stairs", - "strata:mossy_gabbro_brick_stairs", - "strata:mossy_gneiss_brick_stairs", - "strata:mossy_limestone_brick_stairs", - "strata:mossy_schist_brick_stairs", - "strata:mossy_shale_brick_stairs", - "strata:polished_amphibolite_stairs", - "strata:polished_basalt_stairs", - "strata:polished_gabbro_stairs", - "strata:polished_gneiss_stairs", - "strata:polished_limestone_stairs", - "strata:polished_schist_stairs", - "strata:polished_shale_stairs" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/stone_bricks.json b/src/test/resources/data/minecraft/tags/items/stone_bricks.json deleted file mode 100644 index 7cec36c5..00000000 --- a/src/test/resources/data/minecraft/tags/items/stone_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:stone_bricks", - "minecraft:mossy_stone_bricks", - "minecraft:cracked_stone_bricks", - "minecraft:chiseled_stone_bricks" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/trapdoors.json b/src/test/resources/data/minecraft/tags/items/trapdoors.json deleted file mode 100644 index d9625857..00000000 --- a/src/test/resources/data/minecraft/tags/items/trapdoors.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "#minecraft:wooden_trapdoors", - "minecraft:iron_trapdoor" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/walls.json b/src/test/resources/data/minecraft/tags/items/walls.json deleted file mode 100644 index df9f2278..00000000 --- a/src/test/resources/data/minecraft/tags/items/walls.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "replace": false, - "values": [ - "strata:amphibolite_wall", - "strata:basalt_wall", - "strata:gabbro_wall", - "strata:gneiss_wall", - "strata:limestone_wall", - "strata:schist_wall", - "strata:shale_wall", - "strata:amphibolite_brick_wall", - "strata:basalt_brick_wall", - "strata:gabbro_brick_wall", - "strata:gneiss_brick_wall", - "strata:limestone_brick_wall", - "strata:schist_brick_wall", - "strata:shale_brick_wall", - "strata:mossy_amphibolite_brick_wall", - "strata:mossy_basalt_brick_wall", - "strata:mossy_gabbro_brick_wall", - "strata:mossy_gneiss_brick_wall", - "strata:mossy_limestone_brick_wall", - "strata:mossy_schist_brick_wall", - "strata:mossy_shale_brick_wall" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/wooden_buttons.json b/src/test/resources/data/minecraft/tags/items/wooden_buttons.json deleted file mode 100644 index 5b09c902..00000000 --- a/src/test/resources/data/minecraft/tags/items/wooden_buttons.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_button", - "minecraft:spruce_button", - "minecraft:birch_button", - "minecraft:jungle_button", - "minecraft:acacia_button", - "minecraft:dark_oak_button" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/wooden_doors.json b/src/test/resources/data/minecraft/tags/items/wooden_doors.json deleted file mode 100644 index b43e2368..00000000 --- a/src/test/resources/data/minecraft/tags/items/wooden_doors.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_door", - "minecraft:spruce_door", - "minecraft:birch_door", - "minecraft:jungle_door", - "minecraft:acacia_door", - "minecraft:dark_oak_door" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/wooden_fences.json b/src/test/resources/data/minecraft/tags/items/wooden_fences.json deleted file mode 100644 index b6c73a9c..00000000 --- a/src/test/resources/data/minecraft/tags/items/wooden_fences.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_fence", - "minecraft:acacia_fence", - "minecraft:dark_oak_fence", - "minecraft:spruce_fence", - "minecraft:birch_fence", - "minecraft:jungle_fence" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/wooden_pressure_plates.json b/src/test/resources/data/minecraft/tags/items/wooden_pressure_plates.json deleted file mode 100644 index 72570f15..00000000 --- a/src/test/resources/data/minecraft/tags/items/wooden_pressure_plates.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_pressure_plate", - "minecraft:spruce_pressure_plate", - "minecraft:birch_pressure_plate", - "minecraft:jungle_pressure_plate", - "minecraft:acacia_pressure_plate", - "minecraft:dark_oak_pressure_plate" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/wooden_slabs.json b/src/test/resources/data/minecraft/tags/items/wooden_slabs.json deleted file mode 100644 index 62c848d6..00000000 --- a/src/test/resources/data/minecraft/tags/items/wooden_slabs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_slab", - "minecraft:spruce_slab", - "minecraft:birch_slab", - "minecraft:jungle_slab", - "minecraft:acacia_slab", - "minecraft:dark_oak_slab" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/wooden_stairs.json b/src/test/resources/data/minecraft/tags/items/wooden_stairs.json deleted file mode 100644 index c3af3bf4..00000000 --- a/src/test/resources/data/minecraft/tags/items/wooden_stairs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:oak_stairs", - "minecraft:spruce_stairs", - "minecraft:birch_stairs", - "minecraft:jungle_stairs", - "minecraft:acacia_stairs", - "minecraft:dark_oak_stairs" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/wooden_trapdoors.json b/src/test/resources/data/minecraft/tags/items/wooden_trapdoors.json deleted file mode 100644 index bc8b2f4a..00000000 --- a/src/test/resources/data/minecraft/tags/items/wooden_trapdoors.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:acacia_trapdoor", - "minecraft:birch_trapdoor", - "minecraft:dark_oak_trapdoor", - "minecraft:jungle_trapdoor", - "minecraft:oak_trapdoor", - "minecraft:spruce_trapdoor" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/minecraft/tags/items/wool.json b/src/test/resources/data/minecraft/tags/items/wool.json deleted file mode 100644 index c39732fc..00000000 --- a/src/test/resources/data/minecraft/tags/items/wool.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:white_wool", - "minecraft:orange_wool", - "minecraft:magenta_wool", - "minecraft:light_blue_wool", - "minecraft:yellow_wool", - "minecraft:lime_wool", - "minecraft:pink_wool", - "minecraft:gray_wool", - "minecraft:light_gray_wool", - "minecraft:cyan_wool", - "minecraft:purple_wool", - "minecraft:blue_wool", - "minecraft:brown_wool", - "minecraft:green_wool", - "minecraft:red_wool", - "minecraft:black_wool" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/quark/tags/items/stone_tool_materials.json b/src/test/resources/data/quark/tags/items/stone_tool_materials.json deleted file mode 100644 index 3a6a82c0..00000000 --- a/src/test/resources/data/quark/tags/items/stone_tool_materials.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "replace": false, - "values": [ - "strata:basalt", - "strata:gabbro", - "strata:amphibolite", - "strata:gneiss", - "strata:schist", - "strata:limestone", - "strata:shale" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/argillite_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/argillite_bricks.json deleted file mode 100644 index 900e30d9..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/argillite_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/argillite_bricks" - ] - }, - "criteria": { - "has_polished_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_bricks" - } - } - }, - "requirements": [ - [ - "has_polished_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/basalt_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/basalt_bricks.json deleted file mode 100644 index 6f16df52..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/basalt_bricks.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/basalt_bricks" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_bricks" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/chalk_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/chalk_bricks.json deleted file mode 100644 index 566b1f7c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/chalk_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/chalk_bricks" - ] - }, - "criteria": { - "has_polished_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_bricks" - } - } - }, - "requirements": [ - [ - "has_polished_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/chiseled_aa_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/chiseled_aa_bricks.json deleted file mode 100644 index ecc06025..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/chiseled_aa_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/chiseled_aa_bricks" - ] - }, - "criteria": { - "has_aa_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:aa_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_aa_bricks" - } - } - }, - "requirements": [ - [ - "has_aa_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/chiseled_adakite_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/chiseled_adakite_bricks.json deleted file mode 100644 index b686db57..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/chiseled_adakite_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/chiseled_adakite_bricks" - ] - }, - "criteria": { - "has_adakite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:adakite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_adakite_bricks" - } - } - }, - "requirements": [ - [ - "has_adakite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/chiseled_basalt_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/chiseled_basalt_bricks.json deleted file mode 100644 index 1c26312d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/chiseled_basalt_bricks.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/chiseled_basalt_bricks" - ] - }, - "criteria": { - "has_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_basalt_bricks" - } - } - }, - "requirements": [ - [ - "has_basalt_bricks", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/chiseled_gabbro_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/chiseled_gabbro_bricks.json deleted file mode 100644 index 5002d674..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/chiseled_gabbro_bricks.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/chiseled_gabbro_bricks" - ] - }, - "criteria": { - "has_gabbro_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_gabbro_bricks" - } - } - }, - "requirements": [ - [ - "has_gabbro_bricks", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/chiseled_pahoehoe_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/chiseled_pahoehoe_bricks.json deleted file mode 100644 index 889ca00e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/chiseled_pahoehoe_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/chiseled_pahoehoe_bricks" - ] - }, - "criteria": { - "has_pahoehoe_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:pahoehoe_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_pahoehoe_bricks" - } - } - }, - "requirements": [ - [ - "has_pahoehoe_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/gabbro_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/gabbro_bricks.json deleted file mode 100644 index 78aadfcf..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/gabbro_bricks.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/gabbro_bricks" - ] - }, - "criteria": { - "has_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gabbro_bricks" - } - } - }, - "requirements": [ - [ - "has_gabbro", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/jaspillite_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/jaspillite_bricks.json deleted file mode 100644 index b03c06a2..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/jaspillite_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/jaspillite_bricks" - ] - }, - "criteria": { - "has_polished_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_bricks" - } - } - }, - "requirements": [ - [ - "has_polished_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/mossy_aa_cobblestone.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/mossy_aa_cobblestone.json deleted file mode 100644 index 844723e7..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/mossy_aa_cobblestone.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/mossy_aa_cobblestone" - ] - }, - "criteria": { - "has_vine": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:vine" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_aa_cobblestone" - } - } - }, - "requirements": [ - [ - "has_vine", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/mossy_adakite_cobblestone.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/mossy_adakite_cobblestone.json deleted file mode 100644 index 587aaa31..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/mossy_adakite_cobblestone.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/mossy_adakite_cobblestone" - ] - }, - "criteria": { - "has_vine": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:vine" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_adakite_cobblestone" - } - } - }, - "requirements": [ - [ - "has_vine", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/mossy_pahoehoe_cobblestone.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/mossy_pahoehoe_cobblestone.json deleted file mode 100644 index f19ca88e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/mossy_pahoehoe_cobblestone.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/mossy_pahoehoe_cobblestone" - ] - }, - "criteria": { - "has_vine": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:vine" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_pahoehoe_cobblestone" - } - } - }, - "requirements": [ - [ - "has_vine", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/polished_aa.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/polished_aa.json deleted file mode 100644 index 5e43629c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/polished_aa.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/polished_aa" - ] - }, - "criteria": { - "has_aa": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:aa" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_aa" - } - } - }, - "requirements": [ - [ - "has_aa", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/polished_adakite.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/polished_adakite.json deleted file mode 100644 index bcc28866..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/polished_adakite.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/polished_adakite" - ] - }, - "criteria": { - "has_adakite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:adakite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_adakite" - } - } - }, - "requirements": [ - [ - "has_adakite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/polished_basalt.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/polished_basalt.json deleted file mode 100644 index e2ea2bbc..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/polished_basalt.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/polished_basalt" - ] - }, - "criteria": { - "has_polished_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_basalt" - } - } - }, - "requirements": [ - [ - "has_polished_basalt", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/polished_gabbro.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/polished_gabbro.json deleted file mode 100644 index 52ce9f5d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/polished_gabbro.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/polished_gabbro" - ] - }, - "criteria": { - "has_polished_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_gabbro" - } - } - }, - "requirements": [ - [ - "has_polished_gabbro", - "has_the_recipe" - ] - ] - } diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/polished_pahoehoe.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/polished_pahoehoe.json deleted file mode 100644 index c7800bb2..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/polished_pahoehoe.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/polished_pahoehoe" - ] - }, - "criteria": { - "has_pahoehoe": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:pahoehoe" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_pahoehoe" - } - } - }, - "requirements": [ - [ - "has_pahoehoe", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/aa_cobblestone_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/aa_cobblestone_slab.json deleted file mode 100644 index 42fcfd47..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/aa_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/aa_cobblestone_slab" - ] - }, - "criteria": { - "has_aa_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:aa_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:aa_cobblestone_slab" - } - } - }, - "requirements": [ - [ - "has_aa_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/aa_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/aa_slab.json deleted file mode 100644 index ffb79a85..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/aa_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/aa_slab" - ] - }, - "criteria": { - "has_aa": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:aa" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:aa_slab" - } - } - }, - "requirements": [ - [ - "has_aa", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/adakite_cobblestone_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/adakite_cobblestone_slab.json deleted file mode 100644 index 0d28dd1b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/adakite_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/adakite_cobblestone_slab" - ] - }, - "criteria": { - "has_adakite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:adakite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:adakite_cobblestone_slab" - } - } - }, - "requirements": [ - [ - "has_adakite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/adakite_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/adakite_slab.json deleted file mode 100644 index f0e760b4..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/adakite_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/adakite_slab" - ] - }, - "criteria": { - "has_adakite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:adakite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:adakite_slab" - } - } - }, - "requirements": [ - [ - "has_adakite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/argillite_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/argillite_brick_slab.json deleted file mode 100644 index 5c87b968..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/argillite_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/argillite_brick_slab" - ] - }, - "criteria": { - "has_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_slab" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/basalt_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/basalt_brick_slab.json deleted file mode 100644 index c36ccd80..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/basalt_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/basalt_brick_slab" - ] - }, - "criteria": { - "has_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_brick_slab" - } - } - }, - "requirements": [ - [ - "has_basalt_bricks", - "has_the_recipe" - ] - ] -} diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/basalt_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/basalt_slab.json deleted file mode 100644 index b9c5959f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/basalt_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/basalt_slab" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_slab" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/chalk_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/chalk_brick_slab.json deleted file mode 100644 index cc44c0d3..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/chalk_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/chalk_brick_slab" - ] - }, - "criteria": { - "has_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_slab" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/gabbro_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/gabbro_brick_slab.json deleted file mode 100644 index 000000b5..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/gabbro_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/gabbro_brick_slab" - ] - }, - "criteria": { - "has_gabbro_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gabbro_brick_slab" - } - } - }, - "requirements": [ - [ - "has_gabbro_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/gabbro_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/gabbro_slab.json deleted file mode 100644 index 7cd48b8d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/gabbro_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/gabbro_slab" - ] - }, - "criteria": { - "has_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gabbro_slab" - } - } - }, - "requirements": [ - [ - "has_gabbro", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/jaspillite_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/jaspillite_brick_slab.json deleted file mode 100644 index 1e0dd7dc..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/jaspillite_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/jaspillite_brick_slab" - ] - }, - "criteria": { - "has_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_slab" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_aa_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_aa_brick_slab.json deleted file mode 100644 index 5cf412a2..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_aa_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/mossy_aa_brick_slab" - ] - }, - "criteria": { - "has_mossy_aa_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_aa_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_aa_brick_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_aa_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_aa_cobblestone_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_aa_cobblestone_slab.json deleted file mode 100644 index 993f0716..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_aa_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/mossy_aa_cobblestone_slab" - ] - }, - "criteria": { - "has_mossy_aa_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_aa_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_aa_cobblestone_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_aa_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_adakite_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_adakite_brick_slab.json deleted file mode 100644 index 41748781..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_adakite_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/mossy_adakite_brick_slab" - ] - }, - "criteria": { - "has_mossy_adakite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_adakite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_adakite_brick_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_adakite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_adakite_cobblestone_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_adakite_cobblestone_slab.json deleted file mode 100644 index d49ad3c2..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_adakite_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/mossy_adakite_cobblestone_slab" - ] - }, - "criteria": { - "has_mossy_adakite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_adakite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_adakite_cobblestone_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_adakite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_basalt_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_basalt_brick_slab.json deleted file mode 100644 index a667dd75..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_basalt_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/mossy_basalt_brick_slab" - ] - }, - "criteria": { - "has_mossy_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_basalt_brick_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_basalt_bricks", - "has_the_recipe" - ] - ] -} diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_gabbro_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_gabbro_brick_slab.json deleted file mode 100644 index 14ceb6b8..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_gabbro_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/mossy_gabbro_brick_slab" - ] - }, - "criteria": { - "has_mossy_gabbro_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_gabbro_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_gabbro_brick_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_gabbro_bricks", - "has_the_recipe" - ] - ] -} diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_pahoehoe_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_pahoehoe_brick_slab.json deleted file mode 100644 index cb216a5a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_pahoehoe_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/mossy_pahoehoe_brick_slab" - ] - }, - "criteria": { - "has_mossy_pahoehoe_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_pahoehoe_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_pahoehoe_brick_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_pahoehoe_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_pahoehoe_cobblestone_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_pahoehoe_cobblestone_slab.json deleted file mode 100644 index 02813017..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/mossy_pahoehoe_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/mossy_pahoehoe_cobblestone_slab" - ] - }, - "criteria": { - "has_mossy_pahoehoe_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_pahoehoe_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_pahoehoe_cobblestone_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_pahoehoe_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/pahoehoe_cobblestone_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/pahoehoe_cobblestone_slab.json deleted file mode 100644 index d3cf479d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/pahoehoe_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/pahoehoe_cobblestone_slab" - ] - }, - "criteria": { - "has_pahoehoe_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:pahoehoe_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:pahoehoe_cobblestone_slab" - } - } - }, - "requirements": [ - [ - "has_pahoehoe_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/pahoehoe_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/pahoehoe_slab.json deleted file mode 100644 index 3cf8650d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/pahoehoe_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/pahoehoe_slab" - ] - }, - "criteria": { - "has_pahoehoe": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:pahoehoe" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:pahoehoe_slab" - } - } - }, - "requirements": [ - [ - "has_pahoehoe", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/polished_aa_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/polished_aa_slab.json deleted file mode 100644 index 8b41bb32..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/polished_aa_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/polished_aa_slab" - ] - }, - "criteria": { - "has_polished_aa": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_aa" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_aa_slab" - } - } - }, - "requirements": [ - [ - "has_polished_aa", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/polished_adakite_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/polished_adakite_slab.json deleted file mode 100644 index f4f9c464..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/polished_adakite_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/polished_adakite_slab" - ] - }, - "criteria": { - "has_polished_adakite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_adakite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_adakite_slab" - } - } - }, - "requirements": [ - [ - "has_polished_adakite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/polished_basalt_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/polished_basalt_slab.json deleted file mode 100644 index 2a220918..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/polished_basalt_slab.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/polished_basalt_slab" - ] - }, - "criteria": { - "has_polished_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_basalt_slab" - } - } - }, - "requirements": [ - [ - "has_polished_basalt", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/polished_gabbro_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/polished_gabbro_slab.json deleted file mode 100644 index 2dd0ecef..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/polished_gabbro_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/polished_gabbro_slab" - ] - }, - "criteria": { - "has_polished_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_gabbro_slab" - } - } - }, - "requirements": [ - [ - "has_polished_gabbro", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/polished_pahoehoe_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/polished_pahoehoe_slab.json deleted file mode 100644 index c4025dbf..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/slab/polished_pahoehoe_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/slab/polished_pahoehoe_slab" - ] - }, - "criteria": { - "has_polished_pahoehoe": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_pahoehoe" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_pahoehoe_slab" - } - } - }, - "requirements": [ - [ - "has_polished_pahoehoe", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/aa_cobblestone_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/aa_cobblestone_stairs.json deleted file mode 100644 index 37dbd5b7..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/aa_cobblestone_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/aa_cobblestone_stairs" - ] - }, - "criteria": { - "has_aa_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:aa_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:aa_cobblestone_stairs" - } - } - }, - "requirements": [ - [ - "has_aa_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/aa_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/aa_stairs.json deleted file mode 100644 index 78fe6e33..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/aa_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/aa_stairs" - ] - }, - "criteria": { - "has_aa": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:aa" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:aa_stairs" - } - } - }, - "requirements": [ - [ - "has_aa", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/adakite_cobblestone_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/adakite_cobblestone_stairs.json deleted file mode 100644 index 68c27f8a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/adakite_cobblestone_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/adakite_cobblestone_stairs" - ] - }, - "criteria": { - "has_adakite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:adakite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:adakite_cobblestone_stairs" - } - } - }, - "requirements": [ - [ - "has_adakite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/adakite_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/adakite_stairs.json deleted file mode 100644 index 953b185d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/adakite_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/adakite_stairs" - ] - }, - "criteria": { - "has_adakite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:adakite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:adakite_stairs" - } - } - }, - "requirements": [ - [ - "has_adakite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/argillite_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/argillite_brick_stairs.json deleted file mode 100644 index a3cbbc1e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/argillite_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/argillite_brick_stairs" - ] - }, - "criteria": { - "has_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/basalt_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/basalt_brick_stairs.json deleted file mode 100644 index 8178f1f2..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/basalt_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/basalt_brick_stairs" - ] - }, - "criteria": { - "has_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_basalt_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/basalt_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/basalt_stairs.json deleted file mode 100644 index b462c6d4..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/basalt_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/basalt_stairs" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_stairs" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/chalk_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/chalk_brick_stairs.json deleted file mode 100644 index e2d8ba93..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/chalk_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/chalk_brick_stairs" - ] - }, - "criteria": { - "has_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/gabbro_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/gabbro_brick_stairs.json deleted file mode 100644 index ecc1ef23..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/gabbro_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/gabbro_brick_stairs" - ] - }, - "criteria": { - "has_gabbro_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gabbro_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_gabbro_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/gabbro_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/gabbro_stairs.json deleted file mode 100644 index 8ffc24ac..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/gabbro_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/gabbro_stairs" - ] - }, - "criteria": { - "has_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gabbro_stairs" - } - } - }, - "requirements": [ - [ - "has_gabbro", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/jaspillite_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/jaspillite_brick_stairs.json deleted file mode 100644 index 41f89337..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/jaspillite_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/jaspillite_brick_stairs" - ] - }, - "criteria": { - "has_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_aa_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_aa_brick_stairs.json deleted file mode 100644 index 32e2659d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_aa_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/mossy_aa_brick_stairs" - ] - }, - "criteria": { - "has_mossy_aa_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_aa_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_aa_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_aa_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_aa_cobblestone_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_aa_cobblestone_stairs.json deleted file mode 100644 index a59a2ae2..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_aa_cobblestone_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/mossy_aa_cobblestone_stairs" - ] - }, - "criteria": { - "has_mossy_aa_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_aa_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_aa_cobblestone_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_aa_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_adakite_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_adakite_brick_stairs.json deleted file mode 100644 index fcc5b101..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_adakite_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/mossy_adakite_brick_stairs" - ] - }, - "criteria": { - "has_mossy_adakite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_adakite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_adakite_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_adakite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_adakite_cobblestone_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_adakite_cobblestone_stairs.json deleted file mode 100644 index 997d16d2..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_adakite_cobblestone_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/mossy_adakite_cobblestone_stairs" - ] - }, - "criteria": { - "has_mossy_adakite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_adakite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_adakite_cobblestone_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_adakite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_basalt_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_basalt_brick_stairs.json deleted file mode 100644 index 3cc3167f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_basalt_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/mossy_basalt_brick_stairs" - ] - }, - "criteria": { - "has_mossy_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_basalt_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_basalt_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_gabbro_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_gabbro_brick_stairs.json deleted file mode 100644 index 8604017f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_gabbro_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/mossy_gabbro_brick_stairs" - ] - }, - "criteria": { - "has_mossy_gabbro_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_gabbro_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_gabbro_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_gabbro_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_pahoehoe_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_pahoehoe_brick_stairs.json deleted file mode 100644 index 45effa28..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_pahoehoe_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/mossy_pahoehoe_brick_stairs" - ] - }, - "criteria": { - "has_mossy_pahoehoe_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_pahoehoe_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_pahoehoe_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_pahoehoe_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_pahoehoe_cobblestone_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_pahoehoe_cobblestone_stairs.json deleted file mode 100644 index 5677a870..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/mossy_pahoehoe_cobblestone_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/mossy_pahoehoe_cobblestone_stairs" - ] - }, - "criteria": { - "has_mossy_pahoehoe_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_pahoehoe_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_pahoehoe_cobblestone_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_pahoehoe_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/pahoehoe_cobblestone_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/pahoehoe_cobblestone_stairs.json deleted file mode 100644 index c71d0ec6..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/pahoehoe_cobblestone_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/pahoehoe_cobblestone_stairs" - ] - }, - "criteria": { - "has_pahoehoe_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:pahoehoe_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:pahoehoe_cobblestone_stairs" - } - } - }, - "requirements": [ - [ - "has_pahoehoe_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/pahoehoe_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/pahoehoe_stairs.json deleted file mode 100644 index d1525f5b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/pahoehoe_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/pahoehoe_stairs" - ] - }, - "criteria": { - "has_pahoehoe": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:pahoehoe" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:pahoehoe_stairs" - } - } - }, - "requirements": [ - [ - "has_pahoehoe", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/polished_aa_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/polished_aa_stairs.json deleted file mode 100644 index 450a3b47..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/polished_aa_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/polished_aa_stairs" - ] - }, - "criteria": { - "has_polished_aa": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_aa" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_aa_stairs" - } - } - }, - "requirements": [ - [ - "has_polished_aa", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/polished_adakite_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/polished_adakite_stairs.json deleted file mode 100644 index 6e398eb9..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/polished_adakite_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/polished_adakite_stairs" - ] - }, - "criteria": { - "has_polished_adakite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_adakite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_adakite_stairs" - } - } - }, - "requirements": [ - [ - "has_polished_adakite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/polished_basalt_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/polished_basalt_stairs.json deleted file mode 100644 index d1ea6219..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/polished_basalt_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/polished_basalt_stairs" - ] - }, - "criteria": { - "has_polished_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_basalt_stairs" - } - } - }, - "requirements": [ - [ - "has_polished_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/polished_gabbro_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/polished_gabbro_stairs.json deleted file mode 100644 index 7ecfaee8..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/polished_gabbro_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/polished_gabbro_stairs" - ] - }, - "criteria": { - "has_polished_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_gabbro_stairs" - } - } - }, - "requirements": [ - [ - "has_polished_gabbro", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/polished_pahoehoe_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/polished_pahoehoe_stairs.json deleted file mode 100644 index 200dc18f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/stairs/polished_pahoehoe_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/stairs/polished_pahoehoe_stairs" - ] - }, - "criteria": { - "has_polished_pahoehoe": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_pahoehoe" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_pahoehoe_stairs" - } - } - }, - "requirements": [ - [ - "has_polished_pahoehoe", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/aa_cobblestone_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/aa_cobblestone_wall.json deleted file mode 100644 index 77355ef2..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/aa_cobblestone_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/aa_cobblestone_wall" - ] - }, - "criteria": { - "has_aa_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:aa_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:aa_cobblestone_wall" - } - } - }, - "requirements": [ - [ - "has_aa_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/aa_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/aa_wall.json deleted file mode 100644 index 117e9e0d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/aa_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/aa_wall" - ] - }, - "criteria": { - "has_aa": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:aa" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:aa_wall" - } - } - }, - "requirements": [ - [ - "has_aa", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/adakite_cobblestone_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/adakite_cobblestone_wall.json deleted file mode 100644 index eb30a8dd..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/adakite_cobblestone_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/adakite_cobblestone_wall" - ] - }, - "criteria": { - "has_adakite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:adakite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:adakite_cobblestone_wall" - } - } - }, - "requirements": [ - [ - "has_adakite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/adakite_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/adakite_wall.json deleted file mode 100644 index 673a45b5..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/adakite_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/adakite_wall" - ] - }, - "criteria": { - "has_adakite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:adakite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:adakite_wall" - } - } - }, - "requirements": [ - [ - "has_adakite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/argillite_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/argillite_brick_wall.json deleted file mode 100644 index 4d47b533..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/argillite_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/argillite_brick_wall" - ] - }, - "criteria": { - "has_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_wall" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/basalt_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/basalt_brick_wall.json deleted file mode 100644 index d825ae8a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/basalt_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/basalt_brick_wall" - ] - }, - "criteria": { - "has_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_brick_wall" - } - } - }, - "requirements": [ - [ - "has_basalt_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/basalt_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/basalt_wall.json deleted file mode 100644 index a47a044f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/basalt_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/basalt_wall" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_wall" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/chalk_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/chalk_brick_wall.json deleted file mode 100644 index 11c95a01..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/chalk_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/chalk_brick_wall" - ] - }, - "criteria": { - "has_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_wall" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/gabbro_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/gabbro_brick_wall.json deleted file mode 100644 index 5234c756..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/gabbro_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/gabbro_brick_wall" - ] - }, - "criteria": { - "has_gabbro_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gabbro_brick_wall" - } - } - }, - "requirements": [ - [ - "has_gabbro_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/gabbro_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/gabbro_wall.json deleted file mode 100644 index 85d08eb1..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/gabbro_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/gabbro_wall" - ] - }, - "criteria": { - "has_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gabbro_wall" - } - } - }, - "requirements": [ - [ - "has_gabbro", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/jaspillite_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/jaspillite_brick_wall.json deleted file mode 100644 index 12c4ee90..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/jaspillite_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/jaspillite_brick_wall" - ] - }, - "criteria": { - "has_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_wall" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_aa_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_aa_brick_wall.json deleted file mode 100644 index f647a3ae..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_aa_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/mossy_aa_brick_wall" - ] - }, - "criteria": { - "has_mossy_aa_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_aa_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_aa_brick_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_aa_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_aa_cobblestone_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_aa_cobblestone_wall.json deleted file mode 100644 index 52970626..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_aa_cobblestone_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/mossy_aa_cobblestone_wall" - ] - }, - "criteria": { - "has_mossy_aa_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_aa_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_aa_cobblestone_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_aa_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_adakite_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_adakite_brick_wall.json deleted file mode 100644 index a3600f17..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_adakite_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/mossy_adakite_brick_wall" - ] - }, - "criteria": { - "has_mossy_adakite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_adakite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_adakite_brick_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_adakite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_adakite_cobblestone_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_adakite_cobblestone_wall.json deleted file mode 100644 index 1eb23b46..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_adakite_cobblestone_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/mossy_adakite_cobblestone_wall" - ] - }, - "criteria": { - "has_mossy_adakite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_adakite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_adakite_cobblestone_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_adakite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_basalt_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_basalt_brick_wall.json deleted file mode 100644 index 96eae78d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_basalt_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/mossy_basalt_brick_wall" - ] - }, - "criteria": { - "has_mossy_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_basalt_brick_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_basalt_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_gabbro_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_gabbro_brick_wall.json deleted file mode 100644 index f5035154..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_gabbro_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/mossy_gabbro_brick_wall" - ] - }, - "criteria": { - "has_mossy_gabbro_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_gabbro_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_gabbro_brick_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_gabbro_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_pahoehoe_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_pahoehoe_brick_wall.json deleted file mode 100644 index e27918ab..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_pahoehoe_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/mossy_pahoehoe_brick_wall" - ] - }, - "criteria": { - "has_mossy_pahoehoe_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_pahoehoe_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_pahoehoe_brick_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_pahoehoe_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_pahoehoe_cobblestone_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_pahoehoe_cobblestone_wall.json deleted file mode 100644 index 59997128..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/mossy_pahoehoe_cobblestone_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/mossy_pahoehoe_cobblestone_wall" - ] - }, - "criteria": { - "has_mossy_pahoehoe_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_pahoehoe_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_pahoehoe_cobblestone_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_pahoehoe_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/pahoehoe_cobblestone_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/pahoehoe_cobblestone_wall.json deleted file mode 100644 index 8583e66c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/pahoehoe_cobblestone_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/pahoehoe_cobblestone_wall" - ] - }, - "criteria": { - "has_pahoehoe_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:pahoehoe_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:pahoehoe_cobblestone_wall" - } - } - }, - "requirements": [ - [ - "has_pahoehoe_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/pahoehoe_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/pahoehoe_wall.json deleted file mode 100644 index 8ead8528..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/crafting/block/wall/pahoehoe_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/block/wall/pahoehoe_wall" - ] - }, - "criteria": { - "has_pahoehoe": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:pahoehoe" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:pahoehoe_wall" - } - } - }, - "requirements": [ - [ - "has_pahoehoe", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/aa.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/aa.json deleted file mode 100644 index f49403f5..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/aa.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/smelting/block/aa" - ] - }, - "criteria": { - "has_aa_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:aa_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:aa" - } - } - }, - "requirements": [ - [ - "has_aa_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/adakite.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/adakite.json deleted file mode 100644 index a8197c69..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/adakite.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/smelting/block/adakite" - ] - }, - "criteria": { - "has_adakite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:adakite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:adakite" - } - } - }, - "requirements": [ - [ - "has_adakite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/cracked_aa_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/cracked_aa_bricks.json deleted file mode 100644 index 62e44d4f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/cracked_aa_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/smelting/block/cracked_aa_bricks" - ] - }, - "criteria": { - "has_aa_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:aa_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:cracked_aa_bricks" - } - } - }, - "requirements": [ - [ - "has_aa_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/cracked_adakite_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/cracked_adakite_bricks.json deleted file mode 100644 index a5dea83e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/cracked_adakite_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/smelting/block/cracked_adakite_bricks" - ] - }, - "criteria": { - "has_adakite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:adakite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:cracked_adakite_bricks" - } - } - }, - "requirements": [ - [ - "has_adakite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/cracked_basalt_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/cracked_basalt_bricks.json deleted file mode 100644 index 96ba759d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/cracked_basalt_bricks.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/smelting/block/cracked_basalt_bricks" - ] - }, - "criteria": { - "has_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:cracked_basalt_bricks" - } - } - }, - "requirements": [ - [ - "has_basalt_bricks", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/cracked_gabbro_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/cracked_gabbro_bricks.json deleted file mode 100644 index 21928a14..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/cracked_gabbro_bricks.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/smelting/block/cracked_gabbro_bricks" - ] - }, - "criteria": { - "has_gabbro_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:cracked_gabbro_bricks" - } - } - }, - "requirements": [ - [ - "has_gabbro_bricks", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/cracked_pahoehoe_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/cracked_pahoehoe_bricks.json deleted file mode 100644 index 8ddc0be8..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/cracked_pahoehoe_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/smelting/block/cracked_pahoehoe_bricks" - ] - }, - "criteria": { - "has_pahoehoe_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:pahoehoe_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:cracked_pahoehoe_bricks" - } - } - }, - "requirements": [ - [ - "has_pahoehoe_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/pahoehoe.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/pahoehoe.json deleted file mode 100644 index a9f225b0..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/smelting/block/pahoehoe.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/smelting/block/pahoehoe" - ] - }, - "criteria": { - "has_pahoehoe_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:pahoehoe_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:pahoehoe" - } - } - }, - "requirements": [ - [ - "has_pahoehoe_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/argillite_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/argillite_bricks_polished_stonecutting.json deleted file mode 100644 index 9ba96ba3..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/argillite_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/argillite_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/argillite_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/argillite_bricks_stone_stonecutting.json deleted file mode 100644 index 3637d58c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/argillite_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/argillite_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_bricks_stonecutting.json deleted file mode 100644 index 38dc6e69..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/basalt_bricks_bricks_stonecutting" - ] - }, - "criteria": { - "has_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_bricks_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_basalt_bricks", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_polished_stonecutting.json deleted file mode 100644 index 3be81fb6..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_polished_stonecutting.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/basalt_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_basalt", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_stone_stonecutting.json deleted file mode 100644 index 8eb0c8e6..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_stone_stonecutting.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/basalt_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chalk_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chalk_bricks_polished_stonecutting.json deleted file mode 100644 index 29ef9681..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chalk_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/chalk_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chalk_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chalk_bricks_stone_stonecutting.json deleted file mode 100644 index 2e86b8e3..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chalk_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/chalk_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_aa_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_aa_bricks_bricks_stonecutting.json deleted file mode 100644 index f9c7345e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_aa_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/chiseled_aa_bricks_bricks_stonecutting" - ] - }, - "criteria": { - "has_aa_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:aa_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_aa_bricks_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_aa_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_aa_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_aa_bricks_polished_stonecutting.json deleted file mode 100644 index 684a59d3..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_aa_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/chiseled_aa_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_aa": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_aa" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_aa_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_aa", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_aa_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_aa_bricks_stone_stonecutting.json deleted file mode 100644 index 42df71c1..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_aa_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/chiseled_aa_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_aa": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:aa" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_aa_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_aa", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_adakite_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_adakite_bricks_bricks_stonecutting.json deleted file mode 100644 index e179c5c2..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_adakite_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/chiseled_adakite_bricks_bricks_stonecutting" - ] - }, - "criteria": { - "has_adakite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:adakite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_adakite_bricks_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_adakite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_adakite_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_adakite_bricks_polished_stonecutting.json deleted file mode 100644 index 895964a0..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_adakite_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/chiseled_adakite_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_adakite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_adakite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_adakite_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_adakite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_adakite_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_adakite_bricks_stone_stonecutting.json deleted file mode 100644 index 49bd0e50..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_adakite_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/chiseled_adakite_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_adakite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:adakite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_adakite_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_adakite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_bricks_stonecutting.json deleted file mode 100644 index fdb0d25c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_bricks_stonecutting" - ] - }, - "criteria": { - "has_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_basalt_bricks_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_basalt_bricks", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_polished_stonecutting.json deleted file mode 100644 index fb8d5216..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_polished_stonecutting.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_basalt_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_basalt", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_stone_stonecutting.json deleted file mode 100644 index 4f983bcc..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_stone_stonecutting.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_basalt_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_gabbro_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_gabbro_bricks_bricks_stonecutting.json deleted file mode 100644 index 1f6063e0..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_gabbro_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/chiseled_gabbro_bricks_bricks_stonecutting" - ] - }, - "criteria": { - "has_gabbro_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_gabbro_bricks_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_gabbro_bricks", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_gabbro_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_gabbro_bricks_polished_stonecutting.json deleted file mode 100644 index ee1c4ce4..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_gabbro_bricks_polished_stonecutting.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/chiseled_gabbro_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_gabbro_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_gabbro", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_gabbro_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_gabbro_bricks_stone_stonecutting.json deleted file mode 100644 index 68fe3b13..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_gabbro_bricks_stone_stonecutting.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/chiseled_gabbro_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_gabbro_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_gabbro", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_pahoehoe_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_pahoehoe_bricks_bricks_stonecutting.json deleted file mode 100644 index c768e36a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_pahoehoe_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/chiseled_pahoehoe_bricks_bricks_stonecutting" - ] - }, - "criteria": { - "has_pahoehoe_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:pahoehoe_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_pahoehoe_bricks_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_pahoehoe_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_pahoehoe_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_pahoehoe_bricks_polished_stonecutting.json deleted file mode 100644 index ef6a7598..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_pahoehoe_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/chiseled_pahoehoe_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_pahoehoe": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_pahoehoe" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_pahoehoe_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_pahoehoe", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_pahoehoe_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_pahoehoe_bricks_stone_stonecutting.json deleted file mode 100644 index 79579db4..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/chiseled_pahoehoe_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/chiseled_pahoehoe_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_pahoehoe": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:pahoehoe" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_pahoehoe_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_pahoehoe", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/gabbro_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/gabbro_bricks_bricks_stonecutting.json deleted file mode 100644 index 565fbd80..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/gabbro_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/gabbro_bricks_bricks_stonecutting" - ] - }, - "criteria": { - "has_gabbro_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gabbro_bricks_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_gabbro_bricks", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/gabbro_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/gabbro_bricks_polished_stonecutting.json deleted file mode 100644 index d329a9f3..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/gabbro_bricks_polished_stonecutting.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/gabbro_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gabbro_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_gabbro", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/gabbro_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/gabbro_bricks_stone_stonecutting.json deleted file mode 100644 index c2454877..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/gabbro_bricks_stone_stonecutting.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/gabbro_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gabbro_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_gabbro", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/jaspillite_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/jaspillite_bricks_polished_stonecutting.json deleted file mode 100644 index 393c3ad4..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/jaspillite_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/jaspillite_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/jaspillite_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/jaspillite_bricks_stone_stonecutting.json deleted file mode 100644 index 60c27792..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/jaspillite_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/jaspillite_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/mossy_basalt_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/mossy_basalt_bricks_stonecutting.json deleted file mode 100644 index 51f00ee0..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/mossy_basalt_bricks_stonecutting.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/mossy_basalt_bricks_stonecutting" - ] - }, - "criteria": { - "has_mossy_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_basalt_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_basalt_bricks", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/mossy_gabbro_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/mossy_gabbro_bricks_stonecutting.json deleted file mode 100644 index e67d74c8..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/mossy_gabbro_bricks_stonecutting.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/mossy_gabbro_bricks_stonecutting" - ] - }, - "criteria": { - "has_mossy_gabbro_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_gabbro_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_gabbro_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_gabbro_bricks", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/polished_aa_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/polished_aa_stonecutting.json deleted file mode 100644 index 4df3f70c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/polished_aa_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/polished_aa_stonecutting" - ] - }, - "criteria": { - "has_aa": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:aa" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_aa_stonecutting" - } - } - }, - "requirements": [ - [ - "has_aa", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/polished_adakite_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/polished_adakite_stonecutting.json deleted file mode 100644 index 69bccb53..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/polished_adakite_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/polished_adakite_stonecutting" - ] - }, - "criteria": { - "has_adakite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:adakite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_adakite_stonecutting" - } - } - }, - "requirements": [ - [ - "has_adakite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/polished_basalt_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/polished_basalt_stonecutting.json deleted file mode 100644 index 4863ff43..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/polished_basalt_stonecutting.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/polished_basalt_stonecutting" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_basalt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/polished_gabbro_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/polished_gabbro_stonecutting.json deleted file mode 100644 index 24fafb65..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/polished_gabbro_stonecutting.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/polished_gabbro_stonecutting" - ] - }, - "criteria": { - "has_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_gabbro_stonecutting" - } - } - }, - "requirements": [ - [ - "has_gabbro", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/polished_pahoehoe_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/polished_pahoehoe_stonecutting.json deleted file mode 100644 index 352da3b4..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/polished_pahoehoe_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/polished_pahoehoe_stonecutting" - ] - }, - "criteria": { - "has_pahoehoe": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:pahoehoe" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_pahoehoe_stonecutting" - } - } - }, - "requirements": [ - [ - "has_pahoehoe", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/aa_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/aa_cobblestone_slab_stonecutting.json deleted file mode 100644 index d4f85a7b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/aa_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/aa_cobblestone_slab_stonecutting" - ] - }, - "criteria": { - "has_aa_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:aa_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:aa_cobblestone_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_aa_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/aa_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/aa_slab_stonecutting.json deleted file mode 100644 index e0f3f4d4..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/aa_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/aa_slab_stonecutting" - ] - }, - "criteria": { - "has_aa": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:aa" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:aa_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_aa", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/adakite_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/adakite_cobblestone_slab_stonecutting.json deleted file mode 100644 index bff4986b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/adakite_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/adakite_cobblestone_slab_stonecutting" - ] - }, - "criteria": { - "has_adakite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:adakite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:adakite_cobblestone_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_adakite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/adakite_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/adakite_slab_stonecutting.json deleted file mode 100644 index d30fc39e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/adakite_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/adakite_slab_stonecutting" - ] - }, - "criteria": { - "has_adakite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:adakite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:adakite_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_adakite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/argillite_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/argillite_brick_slab_bricks_stonecutting.json deleted file mode 100644 index ba816999..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/argillite_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/argillite_brick_slab_bricks_stonecutting" - ] - }, - "criteria": { - "has_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_slab_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/argillite_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/argillite_brick_slab_polished_stonecutting.json deleted file mode 100644 index c3c3d465..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/argillite_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/argillite_brick_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_slab_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/argillite_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/argillite_brick_slab_stone_stonecutting.json deleted file mode 100644 index 8ffbe578..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/argillite_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/argillite_brick_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_slab_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_bricks_stonecutting.json deleted file mode 100644 index 07ad0b6c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_bricks_stonecutting" - ] - }, - "criteria": { - "has_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "basalt_brick_slab_bricks_stonecutting" - }, - "requirements": [ - [ - "has_basalt_bricks", - "has_the_recipe" - ] - ] - } - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_polished_stonecutting.json deleted file mode 100644 index 80e7138a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "basalt_brick_slab_polished_stonecutting" - }, - "requirements": [ - [ - "has_polished_basalt", - "has_the_recipe" - ] - ] - } - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_stone_stonecutting.json deleted file mode 100644 index a2e9a7d0..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "basalt_brick_slab_stone_stonecutting" - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] - } - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_slab_stonecutting.json deleted file mode 100644 index 261b5d14..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/basalt_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/basalt_slab_stonecutting" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "basalt_slab_stonecutting" - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] - } - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/chalk_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/chalk_brick_slab_bricks_stonecutting.json deleted file mode 100644 index 84ee55d1..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/chalk_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/chalk_brick_slab_bricks_stonecutting" - ] - }, - "criteria": { - "has_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_slab_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/chalk_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/chalk_brick_slab_polished_stonecutting.json deleted file mode 100644 index 6cb248b9..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/chalk_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/chalk_brick_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_slab_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/chalk_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/chalk_brick_slab_stone_stonecutting.json deleted file mode 100644 index cbd0f61c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/chalk_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/chalk_brick_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_slab_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/gabbro_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/gabbro_brick_slab_bricks_stonecutting.json deleted file mode 100644 index a464a3d9..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/gabbro_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/gabbro_brick_slab_bricks_stonecutting" - ] - }, - "criteria": { - "has_gabbro_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "gabbro_brick_slab_bricks_stonecutting" - }, - "requirements": [ - [ - "has_gabbro_bricks", - "has_the_recipe" - ] - ] - } - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/gabbro_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/gabbro_brick_slab_polished_stonecutting.json deleted file mode 100644 index cd0f2021..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/gabbro_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/gabbro_brick_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "gabbro_brick_slab_polished_stonecutting" - }, - "requirements": [ - [ - "has_polished_gabbro", - "has_the_recipe" - ] - ] - } - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/gabbro_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/gabbro_brick_slab_stone_stonecutting.json deleted file mode 100644 index a2b90b9f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/gabbro_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/gabbro_brick_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "gabbro_brick_slab_stone_stonecutting" - }, - "requirements": [ - [ - "has_gabbro", - "has_the_recipe" - ] - ] - } - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/gabbro_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/gabbro_slab_stonecutting.json deleted file mode 100644 index aae14c9e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/gabbro_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/gabbro_slab_stonecutting" - ] - }, - "criteria": { - "has_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "gabbro_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_gabbro", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/jaspillite_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/jaspillite_brick_slab_bricks_stonecutting.json deleted file mode 100644 index e74e1de9..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/jaspillite_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/jaspillite_brick_slab_bricks_stonecutting" - ] - }, - "criteria": { - "has_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_slab_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/jaspillite_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/jaspillite_brick_slab_polished_stonecutting.json deleted file mode 100644 index 37eeced3..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/jaspillite_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/jaspillite_brick_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_slab_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/jaspillite_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/jaspillite_brick_slab_stone_stonecutting.json deleted file mode 100644 index bf2d588d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/jaspillite_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/jaspillite_brick_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_slab_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_aa_brick_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_aa_brick_slab_stonecutting.json deleted file mode 100644 index f84f43a2..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_aa_brick_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/mossy_aa_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_mossy_aa_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_aa_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_aa_brick_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_aa_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_aa_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_aa_cobblestone_slab_stonecutting.json deleted file mode 100644 index 859b8c64..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_aa_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/mossy_aa_cobblestone_slab_stonecutting" - ] - }, - "criteria": { - "has_mossy_aa_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_aa_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_aa_cobblestone_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_aa_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_adakite_brick_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_adakite_brick_slab_stonecutting.json deleted file mode 100644 index a52057f3..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_adakite_brick_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/mossy_adakite_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_mossy_adakite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_adakite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_adakite_brick_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_adakite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_adakite_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_adakite_cobblestone_slab_stonecutting.json deleted file mode 100644 index bcf32a1a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_adakite_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/mossy_adakite_cobblestone_slab_stonecutting" - ] - }, - "criteria": { - "has_mossy_adakite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_adakite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_adakite_cobblestone_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_adakite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_basalt_brick_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_basalt_brick_slab_stonecutting.json deleted file mode 100644 index f852e083..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_basalt_brick_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/mossy_basalt_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_mossy_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mossy_basalt_brick_slab_stonecutting" - }, - "requirements": [ - [ - "has_mossy_basalt_bricks", - "has_the_recipe" - ] - ] - } - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_gabbro_brick_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_gabbro_brick_slab_stonecutting.json deleted file mode 100644 index 5e93de59..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_gabbro_brick_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/mossy_gabbro_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_mossy_gabbro_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_gabbro_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mossy_gabbro_brick_slab_stonecutting" - }, - "requirements": [ - [ - "has_mossy_gabbro_bricks", - "has_the_recipe" - ] - ] - } - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_pahoehoe_brick_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_pahoehoe_brick_slab_stonecutting.json deleted file mode 100644 index 357e426a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_pahoehoe_brick_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/mossy_pahoehoe_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_mossy_pahoehoe_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_pahoehoe_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_pahoehoe_brick_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_pahoehoe_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_pahoehoe_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_pahoehoe_cobblestone_slab_stonecutting.json deleted file mode 100644 index c8d5adb8..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/mossy_pahoehoe_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/mossy_pahoehoe_cobblestone_slab_stonecutting" - ] - }, - "criteria": { - "has_mossy_pahoehoe_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_pahoehoe_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_pahoehoe_cobblestone_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_pahoehoe_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/pahoehoe_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/pahoehoe_cobblestone_slab_stonecutting.json deleted file mode 100644 index 0b1ad9f8..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/pahoehoe_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/pahoehoe_cobblestone_slab_stonecutting" - ] - }, - "criteria": { - "has_pahoehoe_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:pahoehoe_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:pahoehoe_cobblestone_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_pahoehoe_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/pahoehoe_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/pahoehoe_slab_stonecutting.json deleted file mode 100644 index 6990e762..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/pahoehoe_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/pahoehoe_slab_stonecutting" - ] - }, - "criteria": { - "has_pahoehoe": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:pahoehoe" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:pahoehoe_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_pahoehoe", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_aa_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_aa_slab_polished_stonecutting.json deleted file mode 100644 index dcfc9ec1..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_aa_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/polished_aa_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_aa": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_aa" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_aa_slab_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_aa", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_aa_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_aa_slab_stone_stonecutting.json deleted file mode 100644 index e7cba61c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_aa_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/polished_aa_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_aa": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_aa" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_aa_slab_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_aa", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_adakite_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_adakite_slab_polished_stonecutting.json deleted file mode 100644 index 95235c7b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_adakite_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/polished_adakite_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_adakite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_adakite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_adakite_slab_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_adakite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_adakite_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_adakite_slab_stone_stonecutting.json deleted file mode 100644 index abf0cb93..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_adakite_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/polished_adakite_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_adakite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_adakite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_adakite_slab_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_adakite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_polished_stonecutting.json deleted file mode 100644 index ea4ab4e0..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "polished_basalt_slab_polished_stonecutting" - }, - "requirements": [ - [ - "has_polished_basalt", - "has_the_recipe" - ] - ] - } - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_stone_stonecutting.json deleted file mode 100644 index 4f229e47..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "polished_basalt_slab_stone_stonecutting" - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] - } - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_gabbro_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_gabbro_slab_polished_stonecutting.json deleted file mode 100644 index 82b6c624..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_gabbro_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/polished_gabbro_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "polished_gabbro_slab_polished_stonecutting" - }, - "requirements": [ - [ - "has_polished_gabbro", - "has_the_recipe" - ] - ] - } - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_gabbro_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_gabbro_slab_stone_stonecutting.json deleted file mode 100644 index ef294e14..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_gabbro_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/polished_gabbro_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "polished_gabbro_slab_stone_stonecutting" - }, - "requirements": [ - [ - "has_gabbro", - "has_the_recipe" - ] - ] - } - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_pahoehoe_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_pahoehoe_slab_polished_stonecutting.json deleted file mode 100644 index 62bada49..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_pahoehoe_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/polished_pahoehoe_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_pahoehoe": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_pahoehoe" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_pahoehoe_slab_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_pahoehoe", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_pahoehoe_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_pahoehoe_slab_stone_stonecutting.json deleted file mode 100644 index 05e601d7..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/slab/polished_pahoehoe_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/slab/polished_pahoehoe_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_pahoehoe": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_pahoehoe" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_pahoehoe_slab_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_pahoehoe", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/aa_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/aa_cobblestone_stairs_stonecutting.json deleted file mode 100644 index b8d907a8..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/aa_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/aa_cobblestone_stairs_stonecutting" - ] - }, - "criteria": { - "has_aa_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:aa_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:aa_cobblestone_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_aa_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/aa_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/aa_stairs_stonecutting.json deleted file mode 100644 index 4a899a5a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/aa_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/aa_stairs_stonecutting" - ] - }, - "criteria": { - "has_aa": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:aa" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:aa_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_aa", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/adakite_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/adakite_cobblestone_stairs_stonecutting.json deleted file mode 100644 index dfab63a3..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/adakite_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/adakite_cobblestone_stairs_stonecutting" - ] - }, - "criteria": { - "has_adakite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:adakite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:adakite_cobblestone_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_adakite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/adakite_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/adakite_stairs_stonecutting.json deleted file mode 100644 index cb37018e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/adakite_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/adakite_stairs_stonecutting" - ] - }, - "criteria": { - "has_adakite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:adakite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:adakite_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_adakite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/argillite_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/argillite_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index 1df92868..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/argillite_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/argillite_brick_stairs_bricks_stonecutting" - ] - }, - "criteria": { - "has_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_stairs_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/argillite_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/argillite_brick_stairs_polished_stonecutting.json deleted file mode 100644 index 7ed79e8c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/argillite_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/argillite_brick_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/argillite_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/argillite_brick_stairs_stone_stonecutting.json deleted file mode 100644 index bdc8c403..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/argillite_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/argillite_brick_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index 0ff931a2..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_bricks_stonecutting" - ] - }, - "criteria": { - "has_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "basalt_brick_stairs_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_basalt_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_polished_stonecutting.json deleted file mode 100644 index a944c654..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "basalt_brick_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_stone_stonecutting.json deleted file mode 100644 index d8177759..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "basalt_brick_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_stairs_stonecutting.json deleted file mode 100644 index 5bc288e4..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/basalt_stairs_stonecutting" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "basalt_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/chalk_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/chalk_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index 08b91ebe..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/chalk_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/chalk_brick_stairs_bricks_stonecutting" - ] - }, - "criteria": { - "has_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_stairs_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/chalk_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/chalk_brick_stairs_polished_stonecutting.json deleted file mode 100644 index e8e0d284..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/chalk_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/chalk_brick_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/chalk_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/chalk_brick_stairs_stone_stonecutting.json deleted file mode 100644 index 62ecf40c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/chalk_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/chalk_brick_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index 7651f8bd..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_brick_stairs_bricks_stonecutting" - ] - }, - "criteria": { - "has_gabbro_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "gabbro_brick_stairs_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_gabbro_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_brick_stairs_polished_stonecutting.json deleted file mode 100644 index 53f315f5..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_brick_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "gabbro_brick_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_gabbro", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_brick_stairs_stone_stonecutting.json deleted file mode 100644 index 63e34a9f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_brick_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "gabbro_brick_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_gabbro", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_stairs_stonecutting.json deleted file mode 100644 index 67c933e4..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_stairs_stonecutting" - ] - }, - "criteria": { - "has_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "gabbro_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_gabbro", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index 64ba986d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_bricks_stonecutting" - ] - }, - "criteria": { - "has_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_stairs_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_polished_stonecutting.json deleted file mode 100644 index 3d2751e3..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_stone_stonecutting.json deleted file mode 100644 index 95018a81..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_aa_brick_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_aa_brick_stairs_stonecutting.json deleted file mode 100644 index bb1c8ce3..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_aa_brick_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/mossy_aa_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_mossy_aa_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_aa_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_aa_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_aa_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_aa_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_aa_cobblestone_stairs_stonecutting.json deleted file mode 100644 index 4ea51b80..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_aa_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/mossy_aa_cobblestone_stairs_stonecutting" - ] - }, - "criteria": { - "has_mossy_aa_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_aa_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_aa_cobblestone_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_aa_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_adakite_brick_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_adakite_brick_stairs_stonecutting.json deleted file mode 100644 index 6742f8ad..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_adakite_brick_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/mossy_adakite_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_mossy_adakite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_adakite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_adakite_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_adakite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_adakite_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_adakite_cobblestone_stairs_stonecutting.json deleted file mode 100644 index b9fdd689..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_adakite_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/mossy_adakite_cobblestone_stairs_stonecutting" - ] - }, - "criteria": { - "has_mossy_adakite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_adakite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_adakite_cobblestone_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_adakite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_basalt_brick_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_basalt_brick_stairs_stonecutting.json deleted file mode 100644 index 7b8bf16e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_basalt_brick_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/mossy_basalt_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_mossy_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mossy_basalt_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_basalt_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_gabbro_brick_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_gabbro_brick_stairs_stonecutting.json deleted file mode 100644 index 8ee7782b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_gabbro_brick_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/mossy_gabbro_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_mossy_gabbro_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_gabbro_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mossy_gabbro_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_gabbro_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_pahoehoe_brick_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_pahoehoe_brick_stairs_stonecutting.json deleted file mode 100644 index b975a5dc..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_pahoehoe_brick_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/mossy_pahoehoe_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_mossy_pahoehoe_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_pahoehoe_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_pahoehoe_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_pahoehoe_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_pahoehoe_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_pahoehoe_cobblestone_stairs_stonecutting.json deleted file mode 100644 index 35f5c7e6..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_pahoehoe_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/mossy_pahoehoe_cobblestone_stairs_stonecutting" - ] - }, - "criteria": { - "has_mossy_pahoehoe_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_pahoehoe_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_pahoehoe_cobblestone_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_pahoehoe_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/pahoehoe_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/pahoehoe_cobblestone_stairs_stonecutting.json deleted file mode 100644 index 00cec952..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/pahoehoe_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/pahoehoe_cobblestone_stairs_stonecutting" - ] - }, - "criteria": { - "has_pahoehoe_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:pahoehoe_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:pahoehoe_cobblestone_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_pahoehoe_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/pahoehoe_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/pahoehoe_stairs_stonecutting.json deleted file mode 100644 index e0b078fa..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/pahoehoe_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/pahoehoe_stairs_stonecutting" - ] - }, - "criteria": { - "has_pahoehoe": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:pahoehoe" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:pahoehoe_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_pahoehoe", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_aa_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_aa_stairs_polished_stonecutting.json deleted file mode 100644 index 9788d4ca..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_aa_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/polished_aa_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_aa": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_aa" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_aa_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_aa", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_aa_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_aa_stairs_stone_stonecutting.json deleted file mode 100644 index 1f318a8c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_aa_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/polished_aa_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_aa": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_aa" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_aa_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_aa", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_adakite_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_adakite_stairs_polished_stonecutting.json deleted file mode 100644 index aff8f061..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_adakite_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/polished_adakite_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_adakite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_adakite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_adakite_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_adakite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_adakite_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_adakite_stairs_stone_stonecutting.json deleted file mode 100644 index 50d0d96a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_adakite_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/polished_adakite_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_adakite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_adakite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_adakite_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_adakite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_polished_stonecutting.json deleted file mode 100644 index 9352ca5e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "polished_basalt_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_stone_stonecutting.json deleted file mode 100644 index 1a633d4b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "polished_basalt_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_gabbro_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_gabbro_stairs_polished_stonecutting.json deleted file mode 100644 index 9d71abd6..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_gabbro_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/polished_gabbro_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "polished_gabbro_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_gabbro", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_gabbro_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_gabbro_stairs_stone_stonecutting.json deleted file mode 100644 index e47344d1..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_gabbro_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/polished_gabbro_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "polished_gabbro_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_gabbro", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_pahoehoe_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_pahoehoe_stairs_polished_stonecutting.json deleted file mode 100644 index 76fdf7bd..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_pahoehoe_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/polished_pahoehoe_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_pahoehoe": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_pahoehoe" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_pahoehoe_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_pahoehoe", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_pahoehoe_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_pahoehoe_stairs_stone_stonecutting.json deleted file mode 100644 index 57995281..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/stairs/polished_pahoehoe_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/stairs/polished_pahoehoe_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_pahoehoe": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_pahoehoe" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_pahoehoe_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_pahoehoe", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/aa_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/aa_cobblestone_wall_stonecutting.json deleted file mode 100644 index f8a8957e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/aa_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/aa_cobblestone_wall_stonecutting" - ] - }, - "criteria": { - "has_aa_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:aa_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:aa_cobblestone_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_aa_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/aa_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/aa_wall_stonecutting.json deleted file mode 100644 index 0fe53214..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/aa_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/aa_wall_stonecutting" - ] - }, - "criteria": { - "has_aa": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:aa" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:aa_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_aa", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/adakite_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/adakite_cobblestone_wall_stonecutting.json deleted file mode 100644 index 2ec93af3..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/adakite_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/adakite_cobblestone_wall_stonecutting" - ] - }, - "criteria": { - "has_adakite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:adakite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:adakite_cobblestone_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_adakite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/adakite_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/adakite_wall_stonecutting.json deleted file mode 100644 index eae2a390..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/adakite_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/adakite_wall_stonecutting" - ] - }, - "criteria": { - "has_adakite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:adakite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:adakite_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_adakite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/argillite_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/argillite_brick_wall_bricks_stonecutting.json deleted file mode 100644 index 9e444aad..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/argillite_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/argillite_brick_wall_bricks_stonecutting" - ] - }, - "criteria": { - "has_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_wall_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/argillite_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/argillite_brick_wall_polished_stonecutting.json deleted file mode 100644 index 7117a749..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/argillite_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/argillite_brick_wall_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_wall_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/argillite_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/argillite_brick_wall_stone_stonecutting.json deleted file mode 100644 index ed178e8e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/argillite_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/argillite_brick_wall_stone_stonecutting" - ] - }, - "criteria": { - "has_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_wall_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_bricks_stonecutting.json deleted file mode 100644 index 3524825a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_bricks_stonecutting" - ] - }, - "criteria": { - "has_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "basalt_brick_wall_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_basalt_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_polished_stonecutting.json deleted file mode 100644 index 0eeae04f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "basalt_brick_wall_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_stone_stonecutting.json deleted file mode 100644 index 2a856683..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_stone_stonecutting" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "basalt_brick_wall_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_wall_stonecutting.json deleted file mode 100644 index 0a3838ac..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/basalt_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/basalt_wall_stonecutting" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "basalt_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/chalk_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/chalk_brick_wall_bricks_stonecutting.json deleted file mode 100644 index 686861e2..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/chalk_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/chalk_brick_wall_bricks_stonecutting" - ] - }, - "criteria": { - "has_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_wall_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/chalk_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/chalk_brick_wall_polished_stonecutting.json deleted file mode 100644 index 8c44063c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/chalk_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/chalk_brick_wall_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_wall_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/chalk_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/chalk_brick_wall_stone_stonecutting.json deleted file mode 100644 index 678e19c5..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/chalk_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/chalk_brick_wall_stone_stonecutting" - ] - }, - "criteria": { - "has_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_wall_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/gabbro_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/gabbro_brick_wall_bricks_stonecutting.json deleted file mode 100644 index d546f623..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/gabbro_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/gabbro_brick_wall_bricks_stonecutting" - ] - }, - "criteria": { - "has_gabbro_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "gabbro_brick_wall_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_gabbro_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/gabbro_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/gabbro_brick_wall_polished_stonecutting.json deleted file mode 100644 index 62457d23..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/gabbro_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/gabbro_brick_wall_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "gabbro_brick_wall_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_gabbro", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/gabbro_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/gabbro_brick_wall_stone_stonecutting.json deleted file mode 100644 index 799d1cd2..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/gabbro_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/gabbro_brick_wall_stone_stonecutting" - ] - }, - "criteria": { - "has_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "gabbro_brick_wall_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_gabbro", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/gabbro_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/gabbro_wall_stonecutting.json deleted file mode 100644 index c7ebbc3b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/gabbro_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/gabbro_wall_stonecutting" - ] - }, - "criteria": { - "has_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "gabbro_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_gabbro", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/jaspillite_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/jaspillite_brick_wall_bricks_stonecutting.json deleted file mode 100644 index ba8c2753..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/jaspillite_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/jaspillite_brick_wall_bricks_stonecutting" - ] - }, - "criteria": { - "has_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_wall_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/jaspillite_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/jaspillite_brick_wall_polished_stonecutting.json deleted file mode 100644 index 66544e8c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/jaspillite_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/jaspillite_brick_wall_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_wall_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/jaspillite_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/jaspillite_brick_wall_stone_stonecutting.json deleted file mode 100644 index 6709bd77..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/jaspillite_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/jaspillite_brick_wall_stone_stonecutting" - ] - }, - "criteria": { - "has_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_wall_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_aa_brick_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_aa_brick_wall_stonecutting.json deleted file mode 100644 index 3defd0c1..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_aa_brick_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/mossy_aa_brick_wall_stonecutting" - ] - }, - "criteria": { - "has_mossy_aa_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_aa_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_aa_brick_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_aa_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_aa_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_aa_cobblestone_wall_stonecutting.json deleted file mode 100644 index acbec828..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_aa_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/mossy_aa_cobblestone_wall_stonecutting" - ] - }, - "criteria": { - "has_mossy_aa_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_aa_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_aa_cobblestone_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_aa_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_adakite_brick_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_adakite_brick_wall_stonecutting.json deleted file mode 100644 index 00a95513..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_adakite_brick_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/mossy_adakite_brick_wall_stonecutting" - ] - }, - "criteria": { - "has_mossy_adakite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_adakite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_adakite_brick_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_adakite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_adakite_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_adakite_cobblestone_wall_stonecutting.json deleted file mode 100644 index d7db1f1b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_adakite_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/mossy_adakite_cobblestone_wall_stonecutting" - ] - }, - "criteria": { - "has_mossy_adakite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_adakite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_adakite_cobblestone_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_adakite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_basalt_brick_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_basalt_brick_wall_stonecutting.json deleted file mode 100644 index 5645a50a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_basalt_brick_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/mossy_basalt_brick_wall_stonecutting" - ] - }, - "criteria": { - "has_mossy_basalt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_basalt_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mossy_basalt_brick_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_basalt_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_gabbro_brick_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_gabbro_brick_wall_stonecutting.json deleted file mode 100644 index 875b9cbe..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_gabbro_brick_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/mossy_gabbro_brick_wall_stonecutting" - ] - }, - "criteria": { - "has_mossy_gabbro_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_gabbro_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "mossy_gabbro_brick_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_gabbro_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_pahoehoe_brick_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_pahoehoe_brick_wall_stonecutting.json deleted file mode 100644 index ec1570da..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_pahoehoe_brick_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/mossy_pahoehoe_brick_wall_stonecutting" - ] - }, - "criteria": { - "has_mossy_pahoehoe_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_pahoehoe_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_pahoehoe_brick_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_pahoehoe_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_pahoehoe_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_pahoehoe_cobblestone_wall_stonecutting.json deleted file mode 100644 index b7c89c6a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/mossy_pahoehoe_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/mossy_pahoehoe_cobblestone_wall_stonecutting" - ] - }, - "criteria": { - "has_mossy_pahoehoe_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_pahoehoe_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_pahoehoe_cobblestone_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_pahoehoe_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/pahoehoe_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/pahoehoe_cobblestone_wall_stonecutting.json deleted file mode 100644 index 534d7a1e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/pahoehoe_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/pahoehoe_cobblestone_wall_stonecutting" - ] - }, - "criteria": { - "has_pahoehoe_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:pahoehoe_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:pahoehoe_cobblestone_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_pahoehoe_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/pahoehoe_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/pahoehoe_wall_stonecutting.json deleted file mode 100644 index 5d1c94be..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/igneous_rocks/stonecutting/block/wall/pahoehoe_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/stonecutting/block/wall/pahoehoe_wall_stonecutting" - ] - }, - "criteria": { - "has_pahoehoe": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:pahoehoe" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:pahoehoe_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_pahoehoe", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/amphibolite_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/amphibolite_bricks.json deleted file mode 100644 index 9d82e24c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/amphibolite_bricks.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/amphibolite_bricks" - ] - }, - "criteria": { - "has_amphibolite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:amphibolite_bricks" - } - } - }, - "requirements": [ - [ - "has_amphibolite", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/argillite_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/argillite_bricks.json deleted file mode 100644 index f405ba83..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/argillite_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/argillite_bricks" - ] - }, - "criteria": { - "has_polished_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_bricks" - } - } - }, - "requirements": [ - [ - "has_polished_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/chalk_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/chalk_bricks.json deleted file mode 100644 index 7b78254e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/chalk_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/chalk_bricks" - ] - }, - "criteria": { - "has_polished_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_bricks" - } - } - }, - "requirements": [ - [ - "has_polished_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/chiseled_amphibolite_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/chiseled_amphibolite_bricks.json deleted file mode 100644 index 2ef603e0..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/chiseled_amphibolite_bricks.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/chiseled_amphibolite_bricks" - ] - }, - "criteria": { - "has_amphibolite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_amphibolite_bricks" - } - } - }, - "requirements": [ - [ - "has_amphibolite_bricks", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/chiseled_eclogite_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/chiseled_eclogite_bricks.json deleted file mode 100644 index 7923af89..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/chiseled_eclogite_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/chiseled_eclogite_bricks" - ] - }, - "criteria": { - "has_eclogite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:eclogite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_eclogite_bricks" - } - } - }, - "requirements": [ - [ - "has_eclogite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/chiseled_gneiss_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/chiseled_gneiss_bricks.json deleted file mode 100644 index da154d15..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/chiseled_gneiss_bricks.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/chiseled_gneiss_bricks" - ] - }, - "criteria": { - "has_gneiss_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gneiss_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_gneiss_bricks" - } - } - }, - "requirements": [ - [ - "has_gneiss_bricks", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/chiseled_marble_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/chiseled_marble_bricks.json deleted file mode 100644 index 758f9814..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/chiseled_marble_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/chiseled_marble_bricks" - ] - }, - "criteria": { - "has_marble_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:marble_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_marble_bricks" - } - } - }, - "requirements": [ - [ - "has_marble_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/chiseled_schist_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/chiseled_schist_bricks.json deleted file mode 100644 index d4561bf4..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/chiseled_schist_bricks.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/chiseled_schist_bricks" - ] - }, - "criteria": { - "has_schist_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:schist_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_schist_bricks" - } - } - }, - "requirements": [ - [ - "has_schist_bricks", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/gneiss_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/gneiss_bricks.json deleted file mode 100644 index d51d7072..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/gneiss_bricks.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/gneiss_bricks" - ] - }, - "criteria": { - "has_gneiss": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gneiss" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gneiss_bricks" - } - } - }, - "requirements": [ - [ - "has_gneiss", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/jaspillite_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/jaspillite_bricks.json deleted file mode 100644 index 217893e9..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/jaspillite_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/jaspillite_bricks" - ] - }, - "criteria": { - "has_polished_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_bricks" - } - } - }, - "requirements": [ - [ - "has_polished_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/mossy_eclogite_cobblestone.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/mossy_eclogite_cobblestone.json deleted file mode 100644 index 706344cb..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/mossy_eclogite_cobblestone.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/mossy_eclogite_cobblestone" - ] - }, - "criteria": { - "has_vine": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:vine" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_eclogite_cobblestone" - } - } - }, - "requirements": [ - [ - "has_vine", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/mossy_marble_cobblestone.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/mossy_marble_cobblestone.json deleted file mode 100644 index a579017c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/mossy_marble_cobblestone.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/mossy_marble_cobblestone" - ] - }, - "criteria": { - "has_vine": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:vine" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_marble_cobblestone" - } - } - }, - "requirements": [ - [ - "has_vine", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/polished_amphibolite.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/polished_amphibolite.json deleted file mode 100644 index 12fe0fc8..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/polished_amphibolite.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/polished_amphibolite" - ] - }, - "criteria": { - "has_polished_amphibolite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_amphibolite" - } - } - }, - "requirements": [ - [ - "has_polished_amphibolite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/polished_eclogite.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/polished_eclogite.json deleted file mode 100644 index 697ea397..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/polished_eclogite.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/polished_eclogite" - ] - }, - "criteria": { - "has_eclogite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:eclogite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_eclogite" - } - } - }, - "requirements": [ - [ - "has_eclogite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/polished_gneiss.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/polished_gneiss.json deleted file mode 100644 index c40f44e4..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/polished_gneiss.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/polished_gneiss" - ] - }, - "criteria": { - "has_polished_gneiss": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gneiss" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_gneiss" - } - } - }, - "requirements": [ - [ - "has_polished_gneiss", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/polished_marble.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/polished_marble.json deleted file mode 100644 index e3b46241..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/polished_marble.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/polished_marble" - ] - }, - "criteria": { - "has_marble": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:marble" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_marble" - } - } - }, - "requirements": [ - [ - "has_marble", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/polished_schist.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/polished_schist.json deleted file mode 100644 index 21ebdec9..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/polished_schist.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/polished_schist" - ] - }, - "criteria": { - "has_polished_schist": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:schist" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_schist" - } - } - }, - "requirements": [ - [ - "has_polished_schist", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/schist_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/schist_bricks.json deleted file mode 100644 index 8b160250..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/schist_bricks.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/schist_bricks" - ] - }, - "criteria": { - "has_schist": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:schist" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:schist_bricks" - } - } - }, - "requirements": [ - [ - "has_schist", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/amphibolite_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/amphibolite_brick_slab.json deleted file mode 100644 index c4194fec..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/amphibolite_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/slab/amphibolite_brick_slab" - ] - }, - "criteria": { - "has_amphibolite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:amphibolite_brick_slab" - } - } - }, - "requirements": [ - [ - "has_amphibolite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/amphibolite_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/amphibolite_slab.json deleted file mode 100644 index b5bbca60..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/amphibolite_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/slab/amphibolite_slab" - ] - }, - "criteria": { - "has_amphibolite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:amphibolite_slab" - } - } - }, - "requirements": [ - [ - "has_amphibolite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/argillite_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/argillite_brick_slab.json deleted file mode 100644 index fd8e8f3c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/argillite_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/slab/argillite_brick_slab" - ] - }, - "criteria": { - "has_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_slab" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/chalk_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/chalk_brick_slab.json deleted file mode 100644 index 9f19c158..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/chalk_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/slab/chalk_brick_slab" - ] - }, - "criteria": { - "has_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_slab" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/eclogite_cobblestone_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/eclogite_cobblestone_slab.json deleted file mode 100644 index 6fb504c3..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/eclogite_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/slab/eclogite_cobblestone_slab" - ] - }, - "criteria": { - "has_eclogite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:eclogite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:eclogite_cobblestone_slab" - } - } - }, - "requirements": [ - [ - "has_eclogite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/eclogite_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/eclogite_slab.json deleted file mode 100644 index 01644b9b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/eclogite_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/slab/eclogite_slab" - ] - }, - "criteria": { - "has_eclogite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:eclogite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:eclogite_slab" - } - } - }, - "requirements": [ - [ - "has_eclogite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/gneiss_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/gneiss_brick_slab.json deleted file mode 100644 index 1c7317dd..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/gneiss_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/slab/gneiss_brick_slab" - ] - }, - "criteria": { - "has_gneiss_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gneiss_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gneiss_brick_slab" - } - } - }, - "requirements": [ - [ - "has_gneiss_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/gneiss_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/gneiss_slab.json deleted file mode 100644 index 14113275..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/gneiss_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/slab/gneiss_slab" - ] - }, - "criteria": { - "has_gneiss": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gneiss" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gneiss_slab" - } - } - }, - "requirements": [ - [ - "has_gneiss", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/jaspillite_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/jaspillite_brick_slab.json deleted file mode 100644 index 8cb75c51..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/jaspillite_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/slab/jaspillite_brick_slab" - ] - }, - "criteria": { - "has_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_slab" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/marble_cobblestone_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/marble_cobblestone_slab.json deleted file mode 100644 index 300817ae..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/marble_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/slab/marble_cobblestone_slab" - ] - }, - "criteria": { - "has_marble_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:marble_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:marble_cobblestone_slab" - } - } - }, - "requirements": [ - [ - "has_marble_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/marble_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/marble_slab.json deleted file mode 100644 index 2af07edf..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/marble_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/slab/marble_slab" - ] - }, - "criteria": { - "has_marble": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:marble" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:marble_slab" - } - } - }, - "requirements": [ - [ - "has_marble", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/mossy_amphibolite_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/mossy_amphibolite_brick_slab.json deleted file mode 100644 index e3448490..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/mossy_amphibolite_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/slab/mossy_amphibolite_brick_slab" - ] - }, - "criteria": { - "has_mossy_amphibolite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_amphibolite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_amphibolite_brick_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_amphibolite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/mossy_eclogite_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/mossy_eclogite_brick_slab.json deleted file mode 100644 index dfbe4e16..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/mossy_eclogite_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/slab/mossy_eclogite_brick_slab" - ] - }, - "criteria": { - "has_mossy_eclogite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_eclogite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_eclogite_brick_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_eclogite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/mossy_eclogite_cobblestone_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/mossy_eclogite_cobblestone_slab.json deleted file mode 100644 index de32b55a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/mossy_eclogite_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/slab/mossy_eclogite_cobblestone_slab" - ] - }, - "criteria": { - "has_mossy_eclogite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_eclogite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_eclogite_cobblestone_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_eclogite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/mossy_gneiss_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/mossy_gneiss_brick_slab.json deleted file mode 100644 index f81a0b4e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/mossy_gneiss_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/slab/mossy_gneiss_brick_slab" - ] - }, - "criteria": { - "has_mossy_gneiss_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_gneiss_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_gneiss_brick_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_gneiss_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/mossy_marble_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/mossy_marble_brick_slab.json deleted file mode 100644 index 219491ca..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/mossy_marble_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/slab/mossy_marble_brick_slab" - ] - }, - "criteria": { - "has_mossy_marble_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_marble_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_marble_brick_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_marble_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/mossy_marble_cobblestone_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/mossy_marble_cobblestone_slab.json deleted file mode 100644 index 013a930e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/mossy_marble_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/slab/mossy_marble_cobblestone_slab" - ] - }, - "criteria": { - "has_mossy_marble_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_marble_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_marble_cobblestone_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_marble_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/mossy_schist_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/mossy_schist_brick_slab.json deleted file mode 100644 index 1eb192b4..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/mossy_schist_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/slab/mossy_schist_brick_slab" - ] - }, - "criteria": { - "has_mossy_schist_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_schist_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_schist_brick_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_schist_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/polished_amphibolite_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/polished_amphibolite_slab.json deleted file mode 100644 index a4e776ce..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/polished_amphibolite_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/slab/polished_amphibolite_slab" - ] - }, - "criteria": { - "has_polished_amphibolite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_amphibolite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_amphibolite_slab" - } - } - }, - "requirements": [ - [ - "has_polished_amphibolite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/polished_eclogite_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/polished_eclogite_slab.json deleted file mode 100644 index c8e96f7b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/polished_eclogite_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/slab/polished_eclogite_slab" - ] - }, - "criteria": { - "has_polished_eclogite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_eclogite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_eclogite_slab" - } - } - }, - "requirements": [ - [ - "has_polished_eclogite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/polished_gneiss_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/polished_gneiss_slab.json deleted file mode 100644 index 28d74f9b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/polished_gneiss_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/slab/polished_gneiss_slab" - ] - }, - "criteria": { - "has_polished_gneiss": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_gneiss" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_gneiss_slab" - } - } - }, - "requirements": [ - [ - "has_polished_gneiss", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/polished_marble_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/polished_marble_slab.json deleted file mode 100644 index dc66fa50..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/polished_marble_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/slab/polished_marble_slab" - ] - }, - "criteria": { - "has_polished_marble": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_marble" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_marble_slab" - } - } - }, - "requirements": [ - [ - "has_polished_marble", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/polished_schist_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/polished_schist_slab.json deleted file mode 100644 index 75199d79..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/polished_schist_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/slab/polished_schist_slab" - ] - }, - "criteria": { - "has_polished_schist": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_schist" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_schist_slab" - } - } - }, - "requirements": [ - [ - "has_polished_schist", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/schist_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/schist_brick_slab.json deleted file mode 100644 index ce21614a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/schist_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/slab/schist_brick_slab" - ] - }, - "criteria": { - "has_schist_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:schist_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:schist_brick_slab" - } - } - }, - "requirements": [ - [ - "has_schist_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/schist_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/schist_slab.json deleted file mode 100644 index a215c126..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/slab/schist_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/slab/schist_slab" - ] - }, - "criteria": { - "has_schist": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:schist" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:schist_slab" - } - } - }, - "requirements": [ - [ - "has_schist", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/amphibolite_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/amphibolite_brick_stairs.json deleted file mode 100644 index 09a4ebc8..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/amphibolite_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/stairs/amphibolite_brick_stairs" - ] - }, - "criteria": { - "has_amphibolite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:amphibolite_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_amphibolite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/amphibolite_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/amphibolite_stairs.json deleted file mode 100644 index e4e58c43..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/amphibolite_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/stairs/amphibolite_stairs" - ] - }, - "criteria": { - "has_amphibolite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:amphibolite_stairs" - } - } - }, - "requirements": [ - [ - "has_amphibolite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/argillite_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/argillite_brick_stairs.json deleted file mode 100644 index 8140587d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/argillite_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/stairs/argillite_brick_stairs" - ] - }, - "criteria": { - "has_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/chalk_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/chalk_brick_stairs.json deleted file mode 100644 index 621866e2..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/chalk_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/stairs/chalk_brick_stairs" - ] - }, - "criteria": { - "has_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/eclogite_cobblestone_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/eclogite_cobblestone_stairs.json deleted file mode 100644 index 00120e31..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/eclogite_cobblestone_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/stairs/eclogite_cobblestone_stairs" - ] - }, - "criteria": { - "has_eclogite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:eclogite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:eclogite_cobblestone_stairs" - } - } - }, - "requirements": [ - [ - "has_eclogite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/eclogite_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/eclogite_stairs.json deleted file mode 100644 index dfeadebc..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/eclogite_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/stairs/eclogite_stairs" - ] - }, - "criteria": { - "has_eclogite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:eclogite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:eclogite_stairs" - } - } - }, - "requirements": [ - [ - "has_eclogite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/gneiss_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/gneiss_brick_stairs.json deleted file mode 100644 index 02a0142b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/gneiss_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/stairs/gneiss_brick_stairs" - ] - }, - "criteria": { - "has_gneiss_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gneiss_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gneiss_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_gneiss_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/gneiss_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/gneiss_stairs.json deleted file mode 100644 index 2c124e6e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/gneiss_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/stairs/gneiss_stairs" - ] - }, - "criteria": { - "has_gneiss": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gneiss" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gneiss_stairs" - } - } - }, - "requirements": [ - [ - "has_gneiss", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/jaspillite_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/jaspillite_brick_stairs.json deleted file mode 100644 index da801df2..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/jaspillite_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/stairs/jaspillite_brick_stairs" - ] - }, - "criteria": { - "has_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/marble_cobblestone_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/marble_cobblestone_stairs.json deleted file mode 100644 index be06c35f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/marble_cobblestone_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/stairs/marble_cobblestone_stairs" - ] - }, - "criteria": { - "has_marble_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:marble_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:marble_cobblestone_stairs" - } - } - }, - "requirements": [ - [ - "has_marble_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/marble_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/marble_stairs.json deleted file mode 100644 index c15a40bd..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/marble_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/stairs/marble_stairs" - ] - }, - "criteria": { - "has_marble": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:marble" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:marble_stairs" - } - } - }, - "requirements": [ - [ - "has_marble", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_amphibolite_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_amphibolite_brick_stairs.json deleted file mode 100644 index 59046d04..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_amphibolite_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/stairs/mossy_amphibolite_brick_stairs" - ] - }, - "criteria": { - "has_mossy_amphibolite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_amphibolite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_amphibolite_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_amphibolite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_eclogite_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_eclogite_brick_stairs.json deleted file mode 100644 index 021fe4b6..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_eclogite_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/stairs/mossy_eclogite_brick_stairs" - ] - }, - "criteria": { - "has_mossy_eclogite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_eclogite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_eclogite_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_eclogite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_eclogite_cobblestone_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_eclogite_cobblestone_stairs.json deleted file mode 100644 index 018147ee..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_eclogite_cobblestone_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/stairs/mossy_eclogite_cobblestone_stairs" - ] - }, - "criteria": { - "has_mossy_eclogite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_eclogite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_eclogite_cobblestone_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_eclogite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_gneiss_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_gneiss_brick_stairs.json deleted file mode 100644 index dfbc6eae..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_gneiss_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/stairs/mossy_gneiss_brick_stairs" - ] - }, - "criteria": { - "has_mossy_gneiss_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_gneiss_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_gneiss_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_gneiss_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_marble_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_marble_brick_stairs.json deleted file mode 100644 index e6599fb8..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_marble_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/stairs/mossy_marble_brick_stairs" - ] - }, - "criteria": { - "has_mossy_marble_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_marble_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_marble_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_marble_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_marble_cobblestone_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_marble_cobblestone_stairs.json deleted file mode 100644 index 9c23fc5b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_marble_cobblestone_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/stairs/mossy_marble_cobblestone_stairs" - ] - }, - "criteria": { - "has_mossy_marble_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_marble_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_marble_cobblestone_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_marble_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_schist_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_schist_brick_stairs.json deleted file mode 100644 index 8ef5422d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_schist_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/stairs/mossy_schist_brick_stairs" - ] - }, - "criteria": { - "has_mossy_schist_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_schist_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_schist_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_schist_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/polished_amphibolite_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/polished_amphibolite_stairs.json deleted file mode 100644 index 82917a7f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/polished_amphibolite_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/stairs/polished_amphibolite_stairs" - ] - }, - "criteria": { - "has_polished_amphibolite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_amphibolite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_amphibolite_stairs" - } - } - }, - "requirements": [ - [ - "has_polished_amphibolite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/polished_eclogite_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/polished_eclogite_stairs.json deleted file mode 100644 index 10d6f1bc..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/polished_eclogite_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/stairs/polished_eclogite_stairs" - ] - }, - "criteria": { - "has_polished_eclogite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_eclogite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_eclogite_stairs" - } - } - }, - "requirements": [ - [ - "has_polished_eclogite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/polished_gneiss_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/polished_gneiss_stairs.json deleted file mode 100644 index f708a4b2..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/polished_gneiss_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/stairs/polished_gneiss_stairs" - ] - }, - "criteria": { - "has_polished_gneiss": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_gneiss" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_gneiss_stairs" - } - } - }, - "requirements": [ - [ - "has_polished_gneiss", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/polished_marble_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/polished_marble_stairs.json deleted file mode 100644 index f10fabce..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/polished_marble_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/stairs/polished_marble_stairs" - ] - }, - "criteria": { - "has_polished_marble": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_marble" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_marble_stairs" - } - } - }, - "requirements": [ - [ - "has_polished_marble", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/polished_schist_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/polished_schist_stairs.json deleted file mode 100644 index d40308eb..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/polished_schist_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/stairs/polished_schist_stairs" - ] - }, - "criteria": { - "has_polished_schist": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_schist" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_schist_stairs" - } - } - }, - "requirements": [ - [ - "has_polished_schist", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/schist_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/schist_brick_stairs.json deleted file mode 100644 index 64e311a7..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/schist_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/stairs/schist_brick_stairs" - ] - }, - "criteria": { - "has_schist_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:schist_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:schist_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_schist_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/schist_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/schist_stairs.json deleted file mode 100644 index 06ac0b93..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/stairs/schist_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/stairs/schist_stairs" - ] - }, - "criteria": { - "has_schist": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:schist" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:schist_stairs" - } - } - }, - "requirements": [ - [ - "has_schist", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/amphibolite_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/amphibolite_brick_wall.json deleted file mode 100644 index 41450b3a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/amphibolite_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/wall/amphibolite_brick_wall" - ] - }, - "criteria": { - "has_amphibolite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:amphibolite_brick_wall" - } - } - }, - "requirements": [ - [ - "has_amphibolite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/amphibolite_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/amphibolite_wall.json deleted file mode 100644 index 20c8a282..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/amphibolite_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/wall/amphibolite_wall" - ] - }, - "criteria": { - "has_amphibolite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:amphibolite_wall" - } - } - }, - "requirements": [ - [ - "has_amphibolite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/argillite_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/argillite_brick_wall.json deleted file mode 100644 index f77188f1..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/argillite_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/wall/argillite_brick_wall" - ] - }, - "criteria": { - "has_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_wall" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/chalk_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/chalk_brick_wall.json deleted file mode 100644 index 02aff7c9..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/chalk_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/wall/chalk_brick_wall" - ] - }, - "criteria": { - "has_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_wall" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/eclogite_cobblestone_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/eclogite_cobblestone_wall.json deleted file mode 100644 index 7ba873a0..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/eclogite_cobblestone_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/wall/eclogite_cobblestone_wall" - ] - }, - "criteria": { - "has_eclogite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:eclogite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:eclogite_cobblestone_wall" - } - } - }, - "requirements": [ - [ - "has_eclogite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/eclogite_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/eclogite_wall.json deleted file mode 100644 index b10bb161..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/eclogite_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/wall/eclogite_wall" - ] - }, - "criteria": { - "has_eclogite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:eclogite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:eclogite_wall" - } - } - }, - "requirements": [ - [ - "has_eclogite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/gneiss_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/gneiss_brick_wall.json deleted file mode 100644 index b3420ece..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/gneiss_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/wall/gneiss_brick_wall" - ] - }, - "criteria": { - "has_gneiss_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gneiss_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gneiss_brick_wall" - } - } - }, - "requirements": [ - [ - "has_gneiss_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/gneiss_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/gneiss_wall.json deleted file mode 100644 index 0b4dd487..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/gneiss_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/wall/gneiss_wall" - ] - }, - "criteria": { - "has_gneiss": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gneiss" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gneiss_wall" - } - } - }, - "requirements": [ - [ - "has_gneiss", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/jaspillite_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/jaspillite_brick_wall.json deleted file mode 100644 index 5ffa0747..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/jaspillite_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/wall/jaspillite_brick_wall" - ] - }, - "criteria": { - "has_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_wall" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/marble_cobblestone_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/marble_cobblestone_wall.json deleted file mode 100644 index ccf391e5..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/marble_cobblestone_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/wall/marble_cobblestone_wall" - ] - }, - "criteria": { - "has_marble_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:marble_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:marble_cobblestone_wall" - } - } - }, - "requirements": [ - [ - "has_marble_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/marble_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/marble_wall.json deleted file mode 100644 index e975b1dc..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/marble_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/wall/marble_wall" - ] - }, - "criteria": { - "has_marble": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:marble" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:marble_wall" - } - } - }, - "requirements": [ - [ - "has_marble", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/mossy_amphibolite_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/mossy_amphibolite_brick_wall.json deleted file mode 100644 index e27a7717..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/mossy_amphibolite_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/wall/mossy_amphibolite_brick_wall" - ] - }, - "criteria": { - "has_mossy_amphibolite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_amphibolite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_amphibolite_brick_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_amphibolite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/mossy_eclogite_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/mossy_eclogite_brick_wall.json deleted file mode 100644 index fbcca97e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/mossy_eclogite_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/wall/mossy_eclogite_brick_wall" - ] - }, - "criteria": { - "has_mossy_eclogite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_eclogite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_eclogite_brick_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_eclogite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/mossy_eclogite_cobblestone_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/mossy_eclogite_cobblestone_wall.json deleted file mode 100644 index 85ada4fa..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/mossy_eclogite_cobblestone_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/wall/mossy_eclogite_cobblestone_wall" - ] - }, - "criteria": { - "has_mossy_eclogite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_eclogite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_eclogite_cobblestone_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_eclogite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/mossy_gneiss_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/mossy_gneiss_brick_wall.json deleted file mode 100644 index d0844d70..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/mossy_gneiss_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/wall/mossy_gneiss_brick_wall" - ] - }, - "criteria": { - "has_mossy_gneiss_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_gneiss_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_gneiss_brick_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_gneiss_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/mossy_marble_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/mossy_marble_brick_wall.json deleted file mode 100644 index 3e0c0649..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/mossy_marble_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/wall/mossy_marble_brick_wall" - ] - }, - "criteria": { - "has_mossy_marble_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_marble_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_marble_brick_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_marble_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/mossy_marble_cobblestone_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/mossy_marble_cobblestone_wall.json deleted file mode 100644 index 3c4cb7cb..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/mossy_marble_cobblestone_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/wall/mossy_marble_cobblestone_wall" - ] - }, - "criteria": { - "has_mossy_marble_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_marble_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_marble_cobblestone_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_marble_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/mossy_schist_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/mossy_schist_brick_wall.json deleted file mode 100644 index cff50905..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/mossy_schist_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/wall/mossy_schist_brick_wall" - ] - }, - "criteria": { - "has_mossy_schist_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_schist_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_schist_brick_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_schist_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/schist_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/schist_brick_wall.json deleted file mode 100644 index 7cb02d92..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/schist_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/wall/schist_brick_wall" - ] - }, - "criteria": { - "has_schist_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:schist_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:schist_brick_wall" - } - } - }, - "requirements": [ - [ - "has_schist_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/schist_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/schist_wall.json deleted file mode 100644 index 4dd44b32..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/crafting/block/wall/schist_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/wall/schist_wall" - ] - }, - "criteria": { - "has_schist": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:schist" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:schist_wall" - } - } - }, - "requirements": [ - [ - "has_schist", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/smelting/block/cracked_amphibolite_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/smelting/block/cracked_amphibolite_bricks.json deleted file mode 100644 index d62ae38f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/smelting/block/cracked_amphibolite_bricks.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/smelting/block/cracked_amphibolite_bricks" - ] - }, - "criteria": { - "has_amphibolite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:cracked_amphibolite_bricks" - } - } - }, - "requirements": [ - [ - "has_amphibolite_bricks", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/smelting/block/cracked_eclogite_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/smelting/block/cracked_eclogite_bricks.json deleted file mode 100644 index c2dbaaa0..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/smelting/block/cracked_eclogite_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/smelting/block/cracked_eclogite_bricks" - ] - }, - "criteria": { - "has_eclogite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:eclogite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:cracked_eclogite_bricks" - } - } - }, - "requirements": [ - [ - "has_eclogite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/smelting/block/cracked_gneiss_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/smelting/block/cracked_gneiss_bricks.json deleted file mode 100644 index 5c9b513a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/smelting/block/cracked_gneiss_bricks.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/smelting/block/cracked_gneiss_bricks" - ] - }, - "criteria": { - "has_gneiss_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gneiss_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:cracked_gneiss_bricks" - } - } - }, - "requirements": [ - [ - "has_gneiss_bricks", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/smelting/block/cracked_marble_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/smelting/block/cracked_marble_bricks.json deleted file mode 100644 index 0b4b884f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/smelting/block/cracked_marble_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/smelting/block/cracked_marble_bricks" - ] - }, - "criteria": { - "has_marble_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:marble_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:cracked_marble_bricks" - } - } - }, - "requirements": [ - [ - "has_marble_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/smelting/block/cracked_schist_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/smelting/block/cracked_schist_bricks.json deleted file mode 100644 index c6bdc34f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/smelting/block/cracked_schist_bricks.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/smelting/block/cracked_schist_bricks" - ] - }, - "criteria": { - "has_schist_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:schist_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:cracked_schist_bricks" - } - } - }, - "requirements": [ - [ - "has_schist_bricks", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/smelting/block/eclogite.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/smelting/block/eclogite.json deleted file mode 100644 index c5179a96..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/smelting/block/eclogite.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/smelting/block/eclogite" - ] - }, - "criteria": { - "has_eclogite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:eclogite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:eclogite" - } - } - }, - "requirements": [ - [ - "has_eclogite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/smelting/block/marble.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/smelting/block/marble.json deleted file mode 100644 index 4984b8aa..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/smelting/block/marble.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/smelting/block/marble" - ] - }, - "criteria": { - "has_marble_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:marble_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:marble" - } - } - }, - "requirements": [ - [ - "has_marble_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/amphibolite_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/amphibolite_bricks_bricks_stonecutting.json deleted file mode 100644 index 5abb80d8..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/amphibolite_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/amphibolite_bricks_bricks_stonecutting" - ] - }, - "criteria": { - "has_amphibolite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:amphibolite_bricks_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_amphibolite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/amphibolite_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/amphibolite_bricks_polished_stonecutting.json deleted file mode 100644 index f291ee67..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/amphibolite_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/amphibolite_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_amphibolite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_amphibolite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:amphibolite_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_amphibolite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/amphibolite_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/amphibolite_bricks_stone_stonecutting.json deleted file mode 100644 index 75195439..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/amphibolite_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/amphibolite_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_amphibolite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:amphibolite_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_amphibolite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/argillite_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/argillite_bricks_polished_stonecutting.json deleted file mode 100644 index 10f8ddb7..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/argillite_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/argillite_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/argillite_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/argillite_bricks_stone_stonecutting.json deleted file mode 100644 index 440a6bb3..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/argillite_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/argillite_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chalk_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chalk_bricks_polished_stonecutting.json deleted file mode 100644 index 2217af34..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chalk_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/chalk_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chalk_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chalk_bricks_stone_stonecutting.json deleted file mode 100644 index 7cd023ca..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chalk_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/chalk_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_amphibolite_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_amphibolite_bricks_bricks_stonecutting.json deleted file mode 100644 index f9f4b84e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_amphibolite_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/chiseled_amphibolite_bricks_bricks_stonecutting" - ] - }, - "criteria": { - "has_amphibolite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_amphibolite_bricks_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_amphibolite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_amphibolite_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_amphibolite_bricks_polished_stonecutting.json deleted file mode 100644 index c17de381..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_amphibolite_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/chiseled_amphibolite_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_amphibolite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_amphibolite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_amphibolite_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_amphibolite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_amphibolite_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_amphibolite_bricks_stone_stonecutting.json deleted file mode 100644 index ec910ccf..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_amphibolite_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/chiseled_amphibolite_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_amphibolite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_amphibolite_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_amphibolite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_eclogite_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_eclogite_bricks_bricks_stonecutting.json deleted file mode 100644 index 33dfde67..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_eclogite_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/chiseled_eclogite_bricks_bricks_stonecutting" - ] - }, - "criteria": { - "has_eclogite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:eclogite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_eclogite_bricks_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_eclogite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_eclogite_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_eclogite_bricks_polished_stonecutting.json deleted file mode 100644 index a2acdc97..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_eclogite_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/chiseled_eclogite_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_eclogite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_eclogite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_eclogite_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_eclogite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_eclogite_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_eclogite_bricks_stone_stonecutting.json deleted file mode 100644 index fe269e77..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_eclogite_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/chiseled_eclogite_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_eclogite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:eclogite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_eclogite_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_eclogite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_gneiss_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_gneiss_bricks_bricks_stonecutting.json deleted file mode 100644 index 9dd43f1a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_gneiss_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/chiseled_gneiss_bricks_bricks_stonecutting" - ] - }, - "criteria": { - "has_gneiss_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gneiss_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_gneiss_bricks_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_gneiss_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_gneiss_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_gneiss_bricks_polished_stonecutting.json deleted file mode 100644 index d98881d5..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_gneiss_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/chiseled_gneiss_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_gneiss": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_gneiss" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_gneiss_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_gneiss", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_gneiss_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_gneiss_bricks_stone_stonecutting.json deleted file mode 100644 index 04829380..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_gneiss_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/chiseled_gneiss_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_gneiss": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gneiss" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_gneiss_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_gneiss", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_marble_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_marble_bricks_bricks_stonecutting.json deleted file mode 100644 index 92e741b9..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_marble_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/chiseled_marble_bricks_bricks_stonecutting" - ] - }, - "criteria": { - "has_marble_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:marble_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_marble_bricks_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_marble_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_marble_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_marble_bricks_polished_stonecutting.json deleted file mode 100644 index 69b1a064..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_marble_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/chiseled_marble_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_marble": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_marble" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_marble_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_marble", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_marble_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_marble_bricks_stone_stonecutting.json deleted file mode 100644 index 193357dd..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_marble_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/chiseled_marble_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_marble": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:marble" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_marble_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_marble", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_schist_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_schist_bricks_bricks_stonecutting.json deleted file mode 100644 index 2c850956..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_schist_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/chiseled_schist_bricks_bricks_stonecutting" - ] - }, - "criteria": { - "has_schist_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:schist_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_schist_bricks_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_schist_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_schist_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_schist_bricks_polished_stonecutting.json deleted file mode 100644 index b57623cf..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_schist_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/chiseled_schist_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_schist": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_schist" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_schist_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_schist", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_schist_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_schist_bricks_stone_stonecutting.json deleted file mode 100644 index 64e23e25..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/chiseled_schist_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/chiseled_schist_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_schist": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:schist" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_schist_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_schist", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/gneiss_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/gneiss_bricks_bricks_stonecutting.json deleted file mode 100644 index 119a4d5d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/gneiss_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/gneiss_bricks_bricks_stonecutting" - ] - }, - "criteria": { - "has_gneiss_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gneiss_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gneiss_bricks_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_gneiss_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/gneiss_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/gneiss_bricks_polished_stonecutting.json deleted file mode 100644 index d0dbc105..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/gneiss_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/gneiss_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_gneiss": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_gneiss" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gneiss_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_gneiss", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/gneiss_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/gneiss_bricks_stone_stonecutting.json deleted file mode 100644 index 1b545084..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/gneiss_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/gneiss_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_gneiss": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gneiss" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gneiss_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_gneiss", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/jaspillite_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/jaspillite_bricks_polished_stonecutting.json deleted file mode 100644 index 9b410cd7..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/jaspillite_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/jaspillite_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/jaspillite_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/jaspillite_bricks_stone_stonecutting.json deleted file mode 100644 index e39d0867..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/jaspillite_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/jaspillite_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/mossy_amphibolite_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/mossy_amphibolite_bricks_stonecutting.json deleted file mode 100644 index 9a048ee3..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/mossy_amphibolite_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/mossy_amphibolite_bricks_stonecutting" - ] - }, - "criteria": { - "has_mossy_amphibolite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_amphibolite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_amphibolite_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_amphibolite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/mossy_gneiss_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/mossy_gneiss_bricks_stonecutting.json deleted file mode 100644 index bab02340..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/mossy_gneiss_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/mossy_gneiss_bricks_stonecutting" - ] - }, - "criteria": { - "has_mossy_gneiss_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_gneiss_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_gneiss_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_gneiss_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/mossy_schist_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/mossy_schist_bricks_stonecutting.json deleted file mode 100644 index 9d58f48c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/mossy_schist_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/mossy_schist_bricks_stonecutting" - ] - }, - "criteria": { - "has_mossy_schist_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_schist_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_schist_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_schist_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/polished_amphibolite_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/polished_amphibolite_stonecutting.json deleted file mode 100644 index fbf3a565..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/polished_amphibolite_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/polished_amphibolite_stonecutting" - ] - }, - "criteria": { - "has_amphibolite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_amphibolite_stonecutting" - } - } - }, - "requirements": [ - [ - "has_amphibolite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/polished_eclogite_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/polished_eclogite_stonecutting.json deleted file mode 100644 index 284f0bcc..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/polished_eclogite_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/polished_eclogite_stonecutting" - ] - }, - "criteria": { - "has_eclogite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:eclogite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_eclogite_stonecutting" - } - } - }, - "requirements": [ - [ - "has_eclogite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/polished_gneiss_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/polished_gneiss_stonecutting.json deleted file mode 100644 index e7a65020..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/polished_gneiss_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/polished_gneiss_stonecutting" - ] - }, - "criteria": { - "has_gneiss": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gneiss" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_gneiss_stonecutting" - } - } - }, - "requirements": [ - [ - "has_gneiss", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/polished_marble_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/polished_marble_stonecutting.json deleted file mode 100644 index f030ff8b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/polished_marble_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/polished_marble_stonecutting" - ] - }, - "criteria": { - "has_marble": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:marble" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_marble_stonecutting" - } - } - }, - "requirements": [ - [ - "has_marble", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/polished_schist_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/polished_schist_stonecutting.json deleted file mode 100644 index 4d6834f0..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/polished_schist_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/polished_schist_stonecutting" - ] - }, - "criteria": { - "has_schist": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:schist" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_schist_stonecutting" - } - } - }, - "requirements": [ - [ - "has_schist", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/schist_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/schist_bricks_bricks_stonecutting.json deleted file mode 100644 index 71800c02..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/schist_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/schist_bricks_bricks_stonecutting" - ] - }, - "criteria": { - "has_schist_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:schist_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:schist_bricks_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_schist_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/schist_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/schist_bricks_polished_stonecutting.json deleted file mode 100644 index b9431a9f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/schist_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/schist_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_schist": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_schist" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:schist_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_schist", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/schist_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/schist_bricks_stone_stonecutting.json deleted file mode 100644 index e118765c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/schist_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/schist_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_schist": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:schist" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:schist_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_schist", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_brick_slab_bricks_stonecutting.json deleted file mode 100644 index fb576a37..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_brick_slab_bricks_stonecutting" - ] - }, - "criteria": { - "has_amphibolite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:amphibolite_brick_slab_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_amphibolite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_brick_slab_polished_stonecutting.json deleted file mode 100644 index 263e2c38..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_brick_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_amphibolite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_amphibolite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:amphibolite_brick_slab_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_amphibolite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_brick_slab_stone_stonecutting.json deleted file mode 100644 index 0df7e96b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_brick_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_amphibolite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:amphibolite_brick_slab_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_amphibolite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_slab_stonecutting.json deleted file mode 100644 index 7f8104dc..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_slab_stonecutting" - ] - }, - "criteria": { - "has_amphibolite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:amphibolite_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_amphibolite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/argillite_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/argillite_brick_slab_bricks_stonecutting.json deleted file mode 100644 index 7d1f07f0..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/argillite_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/argillite_brick_slab_bricks_stonecutting" - ] - }, - "criteria": { - "has_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_slab_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/argillite_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/argillite_brick_slab_polished_stonecutting.json deleted file mode 100644 index 44caf531..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/argillite_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/argillite_brick_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_slab_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/argillite_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/argillite_brick_slab_stone_stonecutting.json deleted file mode 100644 index 00bb4a07..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/argillite_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/argillite_brick_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_slab_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/chalk_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/chalk_brick_slab_bricks_stonecutting.json deleted file mode 100644 index d6447133..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/chalk_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/chalk_brick_slab_bricks_stonecutting" - ] - }, - "criteria": { - "has_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_slab_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/chalk_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/chalk_brick_slab_polished_stonecutting.json deleted file mode 100644 index 66c7e94e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/chalk_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/chalk_brick_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_slab_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/chalk_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/chalk_brick_slab_stone_stonecutting.json deleted file mode 100644 index 1d9c9a6d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/chalk_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/chalk_brick_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_slab_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/eclogite_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/eclogite_cobblestone_slab_stonecutting.json deleted file mode 100644 index b6435bd6..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/eclogite_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/eclogite_cobblestone_slab_stonecutting" - ] - }, - "criteria": { - "has_eclogite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:eclogite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:eclogite_cobblestone_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_eclogite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/eclogite_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/eclogite_slab_stonecutting.json deleted file mode 100644 index 7db3bd27..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/eclogite_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/eclogite_slab_stonecutting" - ] - }, - "criteria": { - "has_eclogite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:eclogite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:eclogite_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_eclogite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_brick_slab_bricks_stonecutting.json deleted file mode 100644 index 03b0e089..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_brick_slab_bricks_stonecutting" - ] - }, - "criteria": { - "has_gneiss_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gneiss_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gneiss_brick_slab_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_gneiss_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_brick_slab_polished_stonecutting.json deleted file mode 100644 index 5c2cb0dd..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_brick_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_gneiss": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_gneiss" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gneiss_brick_slab_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_gneiss", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_brick_slab_stone_stonecutting.json deleted file mode 100644 index 03925d77..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_brick_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_gneiss": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gneiss" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gneiss_brick_slab_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_gneiss", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_slab_stonecutting.json deleted file mode 100644 index 03191572..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_slab_stonecutting" - ] - }, - "criteria": { - "has_gneiss": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gneiss" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gneiss_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_gneiss", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/jaspillite_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/jaspillite_brick_slab_bricks_stonecutting.json deleted file mode 100644 index 8fa73298..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/jaspillite_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/jaspillite_brick_slab_bricks_stonecutting" - ] - }, - "criteria": { - "has_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_slab_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/jaspillite_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/jaspillite_brick_slab_polished_stonecutting.json deleted file mode 100644 index 06959b77..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/jaspillite_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/jaspillite_brick_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_slab_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/jaspillite_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/jaspillite_brick_slab_stone_stonecutting.json deleted file mode 100644 index af30a04b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/jaspillite_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/jaspillite_brick_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_slab_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/marble_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/marble_cobblestone_slab_stonecutting.json deleted file mode 100644 index 01a0189b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/marble_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/marble_cobblestone_slab_stonecutting" - ] - }, - "criteria": { - "has_marble_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:marble_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:marble_cobblestone_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_marble_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/marble_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/marble_slab_stonecutting.json deleted file mode 100644 index 0ad0b5f6..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/marble_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/marble_slab_stonecutting" - ] - }, - "criteria": { - "has_marble": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:marble" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:marble_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_marble", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_amphibolite_brick_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_amphibolite_brick_slab_stonecutting.json deleted file mode 100644 index be9a8f27..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_amphibolite_brick_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_amphibolite_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_mossy_amphibolite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_amphibolite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_amphibolite_brick_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_amphibolite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_eclogite_brick_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_eclogite_brick_slab_stonecutting.json deleted file mode 100644 index e90c67cd..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_eclogite_brick_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_eclogite_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_mossy_eclogite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_eclogite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_eclogite_brick_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_eclogite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_eclogite_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_eclogite_cobblestone_slab_stonecutting.json deleted file mode 100644 index 4a3e1492..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_eclogite_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_eclogite_cobblestone_slab_stonecutting" - ] - }, - "criteria": { - "has_mossy_eclogite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_eclogite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_eclogite_cobblestone_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_eclogite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_gneiss_brick_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_gneiss_brick_slab_stonecutting.json deleted file mode 100644 index 063b3173..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_gneiss_brick_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_gneiss_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_mossy_gneiss_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_gneiss_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_gneiss_brick_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_gneiss_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_marble_brick_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_marble_brick_slab_stonecutting.json deleted file mode 100644 index e26175e4..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_marble_brick_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_marble_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_mossy_marble_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_marble_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_marble_brick_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_marble_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_marble_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_marble_cobblestone_slab_stonecutting.json deleted file mode 100644 index d21bb599..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_marble_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_marble_cobblestone_slab_stonecutting" - ] - }, - "criteria": { - "has_mossy_marble_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_marble_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_marble_cobblestone_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_marble_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_schist_brick_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_schist_brick_slab_stonecutting.json deleted file mode 100644 index ddb82fc8..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_schist_brick_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_schist_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_mossy_schist_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_schist_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_schist_brick_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_schist_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_amphibolite_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_amphibolite_slab_stonecutting.json deleted file mode 100644 index 3147e2b2..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_amphibolite_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/polished_amphibolite_slab_stonecutting" - ] - }, - "criteria": { - "has_polished_amphibolite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_amphibolite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_amphibolite_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_amphibolite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_eclogite_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_eclogite_slab_polished_stonecutting.json deleted file mode 100644 index f61c47f5..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_eclogite_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/polished_eclogite_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_eclogite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_eclogite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_eclogite_slab_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_eclogite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_eclogite_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_eclogite_slab_stone_stonecutting.json deleted file mode 100644 index eda3f1d7..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_eclogite_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/polished_eclogite_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_eclogite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_eclogite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_eclogite_slab_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_eclogite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_gneiss_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_gneiss_slab_stonecutting.json deleted file mode 100644 index d64f1250..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_gneiss_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/polished_gneiss_slab_stonecutting" - ] - }, - "criteria": { - "has_polished_gneiss": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_gneiss" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_gneiss_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_gneiss", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_marble_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_marble_slab_polished_stonecutting.json deleted file mode 100644 index cadeec22..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_marble_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/polished_marble_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_marble": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_marble" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_marble_slab_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_marble", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_marble_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_marble_slab_stone_stonecutting.json deleted file mode 100644 index c0fb0dff..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_marble_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/polished_marble_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_marble": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_marble" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_marble_slab_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_marble", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_schist_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_schist_slab_stonecutting.json deleted file mode 100644 index 87ae441f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_schist_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/polished_schist_slab_stonecutting" - ] - }, - "criteria": { - "has_polished_schist": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_schist" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_schist_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_schist", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/schist_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/schist_brick_slab_bricks_stonecutting.json deleted file mode 100644 index f9cb76e2..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/schist_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/schist_brick_slab_bricks_stonecutting" - ] - }, - "criteria": { - "has_schist_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:schist_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:schist_brick_slab_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_schist_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/schist_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/schist_brick_slab_polished_stonecutting.json deleted file mode 100644 index 772b4394..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/schist_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/schist_brick_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_schist": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_schist" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:schist_brick_slab_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_schist", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/schist_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/schist_brick_slab_stone_stonecutting.json deleted file mode 100644 index fcbbf6c0..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/schist_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/schist_brick_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_schist": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:schist" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:schist_brick_slab_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_schist", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/schist_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/schist_slab_stonecutting.json deleted file mode 100644 index e3c7c743..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/slab/schist_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/slab/schist_slab_stonecutting" - ] - }, - "criteria": { - "has_schist": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:schist" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:schist_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_schist", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index e438300f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_brick_stairs_bricks_stonecutting" - ] - }, - "criteria": { - "has_amphibolite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:amphibolite_brick_stairs_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_amphibolite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_brick_stairs_polished_stonecutting.json deleted file mode 100644 index db68e2a6..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_brick_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_amphibolite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_amphibolite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:amphibolite_brick_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_amphibolite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_brick_stairs_stone_stonecutting.json deleted file mode 100644 index b1643565..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_brick_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_amphibolite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:amphibolite_brick_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_amphibolite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_stairs_stonecutting.json deleted file mode 100644 index ba19afdb..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_stairs_stonecutting" - ] - }, - "criteria": { - "has_amphibolite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "stata:amphibolite_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_amphibolite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/argillite_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/argillite_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index 9a1cc350..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/argillite_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/argillite_brick_stairs_bricks_stonecutting" - ] - }, - "criteria": { - "has_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_stairs_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/argillite_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/argillite_brick_stairs_polished_stonecutting.json deleted file mode 100644 index 9ac98327..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/argillite_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/argillite_brick_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/argillite_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/argillite_brick_stairs_stone_stonecutting.json deleted file mode 100644 index 2f25aba9..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/argillite_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/argillite_brick_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/chalk_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/chalk_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index 85e22642..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/chalk_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/chalk_brick_stairs_bricks_stonecutting" - ] - }, - "criteria": { - "has_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_stairs_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/chalk_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/chalk_brick_stairs_polished_stonecutting.json deleted file mode 100644 index f1cbef4a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/chalk_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/chalk_brick_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/chalk_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/chalk_brick_stairs_stone_stonecutting.json deleted file mode 100644 index df4031bd..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/chalk_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/chalk_brick_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/eclogite_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/eclogite_cobblestone_stairs_stonecutting.json deleted file mode 100644 index fbb58c52..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/eclogite_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/eclogite_cobblestone_stairs_stonecutting" - ] - }, - "criteria": { - "has_eclogite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:eclogite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:eclogite_cobblestone_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_eclogite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/eclogite_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/eclogite_stairs_stonecutting.json deleted file mode 100644 index 547a19bd..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/eclogite_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/eclogite_stairs_stonecutting" - ] - }, - "criteria": { - "has_eclogite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:eclogite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:eclogite_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_eclogite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index d95e9edf..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_brick_stairs_bricks_stonecutting" - ] - }, - "criteria": { - "has_gneiss_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gneiss_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gneiss_brick_stairs_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_gneiss_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_brick_stairs_polished_stonecutting.json deleted file mode 100644 index 9242ae80..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_brick_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_gneiss": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_gneiss" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gneiss_brick_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_gneiss", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_brick_stairs_stone_stonecutting.json deleted file mode 100644 index 28202c24..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_brick_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_gneiss": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gneiss" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gneiss_brick_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_gneiss", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_stairs_stonecutting.json deleted file mode 100644 index 8f0510e8..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_stairs_stonecutting" - ] - }, - "criteria": { - "has_gneiss": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gneiss" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gneiss_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_gneiss", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index a4dc9d8c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_bricks_stonecutting" - ] - }, - "criteria": { - "has_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_stairs_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_polished_stonecutting.json deleted file mode 100644 index 705ace9e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_stone_stonecutting.json deleted file mode 100644 index 419d0cce..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/marble_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/marble_cobblestone_stairs_stonecutting.json deleted file mode 100644 index 539801c2..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/marble_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/marble_cobblestone_stairs_stonecutting" - ] - }, - "criteria": { - "has_marble_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:marble_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:marble_cobblestone_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_marble_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/marble_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/marble_stairs_stonecutting.json deleted file mode 100644 index c27e8a25..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/marble_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/marble_stairs_stonecutting" - ] - }, - "criteria": { - "has_marble": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:marble" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:marble_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_marble", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_amphibolite_brick_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_amphibolite_brick_stairs_stonecutting.json deleted file mode 100644 index 61e16675..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_amphibolite_brick_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_amphibolite_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_mossy_amphibolite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_amphibolite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_amphibolite_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_amphibolite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_eclogite_brick_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_eclogite_brick_stairs_stonecutting.json deleted file mode 100644 index 67be4b13..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_eclogite_brick_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_eclogite_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_mossy_eclogite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_eclogite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_eclogite_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_eclogite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_eclogite_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_eclogite_cobblestone_stairs_stonecutting.json deleted file mode 100644 index 8d46c90d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_eclogite_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_eclogite_cobblestone_stairs_stonecutting" - ] - }, - "criteria": { - "has_mossy_eclogite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_eclogite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_eclogite_cobblestone_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_eclogite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_gneiss_brick_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_gneiss_brick_stairs_stonecutting.json deleted file mode 100644 index ba65a53d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_gneiss_brick_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_gneiss_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_mossy_gneiss_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_gneiss_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_gneiss_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_gneiss_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_marble_brick_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_marble_brick_stairs_stonecutting.json deleted file mode 100644 index bf60b941..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_marble_brick_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_marble_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_mossy_marble_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_marble_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_marble_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_marble_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_marble_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_marble_cobblestone_stairs_stonecutting.json deleted file mode 100644 index dfd14b26..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_marble_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_marble_cobblestone_stairs_stonecutting" - ] - }, - "criteria": { - "has_mossy_marble_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_marble_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_marble_cobblestone_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_marble_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_amphibolite_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_amphibolite_stairs_stonecutting.json deleted file mode 100644 index e8b403f1..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_amphibolite_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_amphibolite_stairs_stonecutting" - ] - }, - "criteria": { - "has_polished_amphibolite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_amphibolite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "stata:polished_amphibolite_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_amphibolite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_eclogite_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_eclogite_stairs_polished_stonecutting.json deleted file mode 100644 index 6ca8b207..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_eclogite_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_eclogite_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_eclogite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_eclogite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_eclogite_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_eclogite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_eclogite_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_eclogite_stairs_stone_stonecutting.json deleted file mode 100644 index 0c1e1195..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_eclogite_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_eclogite_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_eclogite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_eclogite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_eclogite_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_eclogite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_gneiss_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_gneiss_stairs_stonecutting.json deleted file mode 100644 index 2b285ab5..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_gneiss_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_gneiss_stairs_stonecutting" - ] - }, - "criteria": { - "has_polished_gneiss": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_gneiss" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_gneiss_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_gneiss", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_marble_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_marble_stairs_polished_stonecutting.json deleted file mode 100644 index c39d307d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_marble_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_marble_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_marble": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_marble" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_marble_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_marble", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_marble_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_marble_stairs_stone_stonecutting.json deleted file mode 100644 index 961de98b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_marble_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_marble_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_marble": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_marble" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_marble_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_marble", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_schist_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_schist_stairs_stonecutting.json deleted file mode 100644 index c055f2b1..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_schist_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_schist_stairs_stonecutting" - ] - }, - "criteria": { - "has_polished_schist": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_schist" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_schist_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_schist", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_amphibolite_brick_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_amphibolite_brick_stairs_stonecutting.json deleted file mode 100644 index 796a0f47..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_amphibolite_brick_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_schist_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_mossy_schist_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_schist_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_schist_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_schist_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index a21762df..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_brick_stairs_bricks_stonecutting" - ] - }, - "criteria": { - "has_schist_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:schist_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:schist_brick_stairs_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_schist_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_brick_stairs_polished_stonecutting.json deleted file mode 100644 index 29b45199..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_brick_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_schist": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_schist" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:schist_brick_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_schist", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_brick_stairs_stone_stonecutting.json deleted file mode 100644 index 0ce8b711..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_brick_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_schist": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:schist" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:schist_brick_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_schist", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_stairs_stonecutting.json deleted file mode 100644 index aa92b5ff..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_stairs_stonecutting" - ] - }, - "criteria": { - "has_schist": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:schist" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:schist_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_schist", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_brick_wall_bricks_stonecutting.json deleted file mode 100644 index f7e3e249..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_brick_wall_bricks_stonecutting" - ] - }, - "criteria": { - "has_amphibolite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:amphibolite_brick_wall_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_amphibolite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_brick_wall_polished_stonecutting.json deleted file mode 100644 index 92f811bf..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_brick_wall_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_amphibolite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_amphibolite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:amphibolite_brick_wall_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_amphibolite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_brick_wall_stone_stonecutting.json deleted file mode 100644 index f4a10754..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_brick_wall_stone_stonecutting" - ] - }, - "criteria": { - "has_amphibolite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:amphibolite_brick_wall_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_amphibolite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_wall_stonecutting.json deleted file mode 100644 index f0065c05..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/wall/amphibolite_wall_stonecutting" - ] - }, - "criteria": { - "has_amphibolite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:amphibolite_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_amphibolite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/argillite_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/argillite_brick_wall_bricks_stonecutting.json deleted file mode 100644 index aecb4fbb..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/argillite_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/wall/argillite_brick_wall_bricks_stonecutting" - ] - }, - "criteria": { - "has_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_wall_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/argillite_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/argillite_brick_wall_polished_stonecutting.json deleted file mode 100644 index e75c5a5c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/argillite_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/wall/argillite_brick_wall_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_wall_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/argillite_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/argillite_brick_wall_stone_stonecutting.json deleted file mode 100644 index 546b1c1b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/argillite_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/wall/argillite_brick_wall_stone_stonecutting" - ] - }, - "criteria": { - "has_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_wall_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/chalk_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/chalk_brick_wall_bricks_stonecutting.json deleted file mode 100644 index 384580a2..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/chalk_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/wall/chalk_brick_wall_bricks_stonecutting" - ] - }, - "criteria": { - "has_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_wall_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/chalk_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/chalk_brick_wall_polished_stonecutting.json deleted file mode 100644 index 15edb528..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/chalk_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/wall/chalk_brick_wall_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_wall_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/chalk_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/chalk_brick_wall_stone_stonecutting.json deleted file mode 100644 index 83370d2d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/chalk_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/wall/chalk_brick_wall_stone_stonecutting" - ] - }, - "criteria": { - "has_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_wall_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/eclogite_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/eclogite_cobblestone_wall_stonecutting.json deleted file mode 100644 index 8c901d3c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/eclogite_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/wall/eclogite_cobblestone_wall_stonecutting" - ] - }, - "criteria": { - "has_eclogite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:eclogite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:eclogite_cobblestone_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_eclogite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/eclogite_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/eclogite_wall_stonecutting.json deleted file mode 100644 index 1b68e2ef..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/eclogite_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/wall/eclogite_wall_stonecutting" - ] - }, - "criteria": { - "has_eclogite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:eclogite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:eclogite_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_eclogite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/gneiss_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/gneiss_wall_stonecutting.json deleted file mode 100644 index 130ae464..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/gneiss_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/wall/gneiss_wall_stonecutting" - ] - }, - "criteria": { - "has_gneiss": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gneiss" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gneiss_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_gneiss", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/jaspillite_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/jaspillite_brick_wall_bricks_stonecutting.json deleted file mode 100644 index ef46fb94..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/jaspillite_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/wall/jaspillite_brick_wall_bricks_stonecutting" - ] - }, - "criteria": { - "has_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_wall_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/jaspillite_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/jaspillite_brick_wall_polished_stonecutting.json deleted file mode 100644 index 3128a425..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/jaspillite_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/wall/jaspillite_brick_wall_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_wall_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/jaspillite_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/jaspillite_brick_wall_stone_stonecutting.json deleted file mode 100644 index fa6f3f0f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/jaspillite_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/wall/jaspillite_brick_wall_stone_stonecutting" - ] - }, - "criteria": { - "has_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_wall_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/marble_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/marble_cobblestone_wall_stonecutting.json deleted file mode 100644 index 5ce46608..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/marble_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/wall/marble_cobblestone_wall_stonecutting" - ] - }, - "criteria": { - "has_marble_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:marble_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:marble_cobblestone_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_marble_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/marble_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/marble_wall_stonecutting.json deleted file mode 100644 index 49517e95..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/marble_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/wall/marble_wall_stonecutting" - ] - }, - "criteria": { - "has_marble": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:marble" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:marble_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_marble", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_amphibolite_brick_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_amphibolite_brick_wall_stonecutting.json deleted file mode 100644 index 71dcefe1..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_amphibolite_brick_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_amphibolite_brick_wall_stonecutting" - ] - }, - "criteria": { - "has_mossy_amphibolite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_amphibolite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_amphibolite_brick_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_amphibolite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_eclogite_brick_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_eclogite_brick_wall_stonecutting.json deleted file mode 100644 index 4333ed93..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_eclogite_brick_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_eclogite_brick_wall_stonecutting" - ] - }, - "criteria": { - "has_mossy_eclogite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_eclogite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_eclogite_brick_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_eclogite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_eclogite_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_eclogite_cobblestone_wall_stonecutting.json deleted file mode 100644 index 6605880d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_eclogite_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_eclogite_cobblestone_wall_stonecutting" - ] - }, - "criteria": { - "has_mossy_eclogite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_eclogite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_eclogite_cobblestone_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_eclogite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_marble_brick_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_marble_brick_wall_stonecutting.json deleted file mode 100644 index 23af1251..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_marble_brick_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_marble_brick_wall_stonecutting" - ] - }, - "criteria": { - "has_mossy_marble_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_marble_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_marble_brick_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_marble_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_marble_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_marble_cobblestone_wall_stonecutting.json deleted file mode 100644 index f7b2ee35..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_marble_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_marble_cobblestone_wall_stonecutting" - ] - }, - "criteria": { - "has_mossy_marble_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_marble_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_marble_cobblestone_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_marble_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/schist_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/schist_wall_stonecutting.json deleted file mode 100644 index a15f5840..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/metamorphic_rocks/stonecutting/block/wall/schist_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/block/wall/schist_wall" - ] - }, - "criteria": { - "has_schist": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:schist" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "schist_wall" - } - } - }, - "requirements": [ - [ - "has_schist", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/argillite_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/argillite_bricks.json deleted file mode 100644 index 372193c4..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/argillite_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/argillite_bricks" - ] - }, - "criteria": { - "has_polished_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_bricks" - } - } - }, - "requirements": [ - [ - "has_polished_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/chalk_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/chalk_bricks.json deleted file mode 100644 index ef0b44e1..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/chalk_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/chalk_bricks" - ] - }, - "criteria": { - "has_polished_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_bricks" - } - } - }, - "requirements": [ - [ - "has_polished_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/chiseled_argillite_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/chiseled_argillite_bricks.json deleted file mode 100644 index a306367f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/chiseled_argillite_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/chiseled_argillite_bricks" - ] - }, - "criteria": { - "has_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_argillite_bricks" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/chiseled_chalk_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/chiseled_chalk_bricks.json deleted file mode 100644 index de762274..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/chiseled_chalk_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/chiseled_chalk_bricks" - ] - }, - "criteria": { - "has_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_chalk_bricks" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/chiseled_jaspillite_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/chiseled_jaspillite_bricks.json deleted file mode 100644 index ee987c14..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/chiseled_jaspillite_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/chiseled_jaspillite_bricks" - ] - }, - "criteria": { - "has_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_jaspillite_bricks" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/chiseled_limestone_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/chiseled_limestone_bricks.json deleted file mode 100644 index d7ce15c6..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/chiseled_limestone_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/chiseled_limestone_bricks" - ] - }, - "criteria": { - "has_limestone_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_limestone_bricks" - } - } - }, - "requirements": [ - [ - "has_limestone_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/chiseled_shale_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/chiseled_shale_bricks.json deleted file mode 100644 index bb3d9056..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/chiseled_shale_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/chiseled_shale_bricks" - ] - }, - "criteria": { - "has_shale_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_shale_bricks" - } - } - }, - "requirements": [ - [ - "has_shale_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/jaspillite_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/jaspillite_bricks.json deleted file mode 100644 index 3f2eb23a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/jaspillite_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/jaspillite_bricks" - ] - }, - "criteria": { - "has_polished_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_bricks" - } - } - }, - "requirements": [ - [ - "has_polished_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/limestone_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/limestone_bricks.json deleted file mode 100644 index 9709c7c0..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/limestone_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/limestone_bricks" - ] - }, - "criteria": { - "has_limestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:limestone_bricks" - } - } - }, - "requirements": [ - [ - "has_limestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/mossy_argillite_cobblestone.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/mossy_argillite_cobblestone.json deleted file mode 100644 index e5672291..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/mossy_argillite_cobblestone.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/mossy_argillite_cobblestone" - ] - }, - "criteria": { - "has_vine": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:vine" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_argillite_cobblestone" - } - } - }, - "requirements": [ - [ - "has_vine", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/mossy_chalk_cobblestone.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/mossy_chalk_cobblestone.json deleted file mode 100644 index cc015a28..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/mossy_chalk_cobblestone.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/mossy_chalk_cobblestone" - ] - }, - "criteria": { - "has_vine": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:vine" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_chalk_cobblestone" - } - } - }, - "requirements": [ - [ - "has_vine", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/mossy_jaspillite_cobblestone.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/mossy_jaspillite_cobblestone.json deleted file mode 100644 index 71e1f8b1..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/mossy_jaspillite_cobblestone.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/mossy_jaspillite_cobblestone" - ] - }, - "criteria": { - "has_vine": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "minecraft:vine" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_jaspillite_cobblestone" - } - } - }, - "requirements": [ - [ - "has_vine", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/polished_argillite.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/polished_argillite.json deleted file mode 100644 index 891b2115..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/polished_argillite.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/polished_argillite" - ] - }, - "criteria": { - "has_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_argillite" - } - } - }, - "requirements": [ - [ - "has_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/polished_chalk.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/polished_chalk.json deleted file mode 100644 index 2d95c70e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/polished_chalk.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/polished_chalk" - ] - }, - "criteria": { - "has_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_chalk" - } - } - }, - "requirements": [ - [ - "has_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/polished_jaspillite.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/polished_jaspillite.json deleted file mode 100644 index 592ba1ed..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/polished_jaspillite.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/polished_jaspillite" - ] - }, - "criteria": { - "has_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_jaspillite" - } - } - }, - "requirements": [ - [ - "has_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/polished_limestone.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/polished_limestone.json deleted file mode 100644 index 2bb5d513..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/polished_limestone.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/polished_limestone" - ] - }, - "criteria": { - "has_polished_limestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_limestone" - } - } - }, - "requirements": [ - [ - "has_polished_limestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/polished_shale.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/polished_shale.json deleted file mode 100644 index aec43c64..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/polished_shale.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/polished_shale" - ] - }, - "criteria": { - "has_polished_shale": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_shale" - } - } - }, - "requirements": [ - [ - "has_polished_shale", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/shale_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/shale_bricks.json deleted file mode 100644 index c6359bf6..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/shale_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/shale_bricks" - ] - }, - "criteria": { - "has_shale": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:shale_bricks" - } - } - }, - "requirements": [ - [ - "has_shale", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/argillite_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/argillite_brick_slab.json deleted file mode 100644 index e4c683fe..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/argillite_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/argillite_brick_slab" - ] - }, - "criteria": { - "has_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_slab" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/argillite_cobblestone_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/argillite_cobblestone_slab.json deleted file mode 100644 index b807f46e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/argillite_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/argillite_cobblestone_slab" - ] - }, - "criteria": { - "has_argillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_cobblestone_slab" - } - } - }, - "requirements": [ - [ - "has_argillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/argillite_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/argillite_slab.json deleted file mode 100644 index 3bd6a26a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/argillite_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/argillite_slab" - ] - }, - "criteria": { - "has_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_slab" - } - } - }, - "requirements": [ - [ - "has_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/chalk_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/chalk_brick_slab.json deleted file mode 100644 index e9703778..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/chalk_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/chalk_brick_slab" - ] - }, - "criteria": { - "has_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_slab" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/chalk_cobblestone_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/chalk_cobblestone_slab.json deleted file mode 100644 index ba1e9c7d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/chalk_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/chalk_cobblestone_slab" - ] - }, - "criteria": { - "has_chalk_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_cobblestone_slab" - } - } - }, - "requirements": [ - [ - "has_chalk_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/chalk_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/chalk_slab.json deleted file mode 100644 index e5b20df2..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/chalk_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/chalk_slab" - ] - }, - "criteria": { - "has_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_slab" - } - } - }, - "requirements": [ - [ - "has_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/jaspillite_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/jaspillite_brick_slab.json deleted file mode 100644 index f89c1c42..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/jaspillite_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/jaspillite_brick_slab" - ] - }, - "criteria": { - "has_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_slab" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/jaspillite_cobblestone_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/jaspillite_cobblestone_slab.json deleted file mode 100644 index 3bb10a89..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/jaspillite_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/jaspillite_cobblestone_slab" - ] - }, - "criteria": { - "has_jaspillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_cobblestone_slab" - } - } - }, - "requirements": [ - [ - "has_jaspillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/jaspillite_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/jaspillite_slab.json deleted file mode 100644 index 9aad2634..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/jaspillite_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/jaspillite_slab" - ] - }, - "criteria": { - "has_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_slab" - } - } - }, - "requirements": [ - [ - "has_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/limestone_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/limestone_brick_slab.json deleted file mode 100644 index c4297a8f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/limestone_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/limestone_brick_slab" - ] - }, - "criteria": { - "has_limestone_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:limestone_brick_slab" - } - } - }, - "requirements": [ - [ - "has_limestone_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/limestone_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/limestone_slab.json deleted file mode 100644 index 0ce42ba1..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/limestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/limestone_slab" - ] - }, - "criteria": { - "has_limestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:limestone_slab" - } - } - }, - "requirements": [ - [ - "has_limestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/mossy_argillite_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/mossy_argillite_brick_slab.json deleted file mode 100644 index f534437d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/mossy_argillite_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/mossy_argillite_brick_slab" - ] - }, - "criteria": { - "has_mossy_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_argillite_brick_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/mossy_argillite_cobblestone_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/mossy_argillite_cobblestone_slab.json deleted file mode 100644 index 3c754b2d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/mossy_argillite_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/mossy_argillite_cobblestone_slab" - ] - }, - "criteria": { - "has_mossy_argillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_argillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_argillite_cobblestone_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_argillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/mossy_chalk_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/mossy_chalk_brick_slab.json deleted file mode 100644 index 91fae650..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/mossy_chalk_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/mossy_chalk_brick_slab" - ] - }, - "criteria": { - "has_mossy_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_chalk_brick_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/mossy_chalk_cobblestone_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/mossy_chalk_cobblestone_slab.json deleted file mode 100644 index 3a213138..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/mossy_chalk_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/mossy_chalk_cobblestone_slab" - ] - }, - "criteria": { - "has_mossy_chalk_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_chalk_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_chalk_cobblestone_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_chalk_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/mossy_jaspillite_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/mossy_jaspillite_brick_slab.json deleted file mode 100644 index 2688740d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/mossy_jaspillite_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/mossy_jaspillite_brick_slab" - ] - }, - "criteria": { - "has_mossy_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_jaspillite_brick_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/mossy_jaspillite_cobblestone_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/mossy_jaspillite_cobblestone_slab.json deleted file mode 100644 index 8883bdb1..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/mossy_jaspillite_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/mossy_jaspillite_cobblestone_slab" - ] - }, - "criteria": { - "has_mossy_jaspillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_jaspillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_jaspillite_cobblestone_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_jaspillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/mossy_limestone_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/mossy_limestone_brick_slab.json deleted file mode 100644 index 4bbee493..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/mossy_limestone_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/mossy_limestone_brick_slab" - ] - }, - "criteria": { - "has_mossy_limestone_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_limestone_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_limestone_brick_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_limestone_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/mossy_shale_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/mossy_shale_brick_slab.json deleted file mode 100644 index 8802a9b6..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/mossy_shale_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/mossy_shale_brick_slab" - ] - }, - "criteria": { - "has_mossy_shale_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_shale_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_shale_brick_slab" - } - } - }, - "requirements": [ - [ - "has_mossy_shale_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/polished_argillite_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/polished_argillite_slab.json deleted file mode 100644 index 5c32a182..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/polished_argillite_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/polished_argillite_slab" - ] - }, - "criteria": { - "has_polished_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_argillite_slab" - } - } - }, - "requirements": [ - [ - "has_polished_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/polished_chalk_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/polished_chalk_slab.json deleted file mode 100644 index 5f6b95f3..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/polished_chalk_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/polished_chalk_slab" - ] - }, - "criteria": { - "has_polished_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_chalk_slab" - } - } - }, - "requirements": [ - [ - "has_polished_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/polished_jaspillite_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/polished_jaspillite_slab.json deleted file mode 100644 index d56704a5..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/polished_jaspillite_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/polished_jaspillite_slab" - ] - }, - "criteria": { - "has_polished_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_jaspillite_slab" - } - } - }, - "requirements": [ - [ - "has_polished_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/polished_limestone_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/polished_limestone_slab.json deleted file mode 100644 index 03cf6ee7..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/polished_limestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/polished_limestone_slab" - ] - }, - "criteria": { - "has_polished_limestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_limestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_limestone_slab" - } - } - }, - "requirements": [ - [ - "has_polished_limestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/polished_shale_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/polished_shale_slab.json deleted file mode 100644 index c63185d6..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/polished_shale_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/polished_shale_slab" - ] - }, - "criteria": { - "has_polished_shale": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_shale" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_shale_slab" - } - } - }, - "requirements": [ - [ - "has_polished_shale", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/shale_brick_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/shale_brick_slab.json deleted file mode 100644 index e0ab4d72..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/shale_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/shale_brick_slab" - ] - }, - "criteria": { - "has_shale_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:shale_brick_slab" - } - } - }, - "requirements": [ - [ - "has_shale_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/shale_slab.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/shale_slab.json deleted file mode 100644 index f0bf111b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/slab/shale_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/slab/shale_slab" - ] - }, - "criteria": { - "has_shale": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:shale_slab" - } - } - }, - "requirements": [ - [ - "has_shale", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/argillite_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/argillite_brick_stairs.json deleted file mode 100644 index b094bebf..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/argillite_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/argillite_brick_stairs" - ] - }, - "criteria": { - "has_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/argillite_cobblestone_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/argillite_cobblestone_stairs.json deleted file mode 100644 index 27817335..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/argillite_cobblestone_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/argillite_cobblestone_stairs" - ] - }, - "criteria": { - "has_argillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_cobblestone_stairs" - } - } - }, - "requirements": [ - [ - "has_argillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/argillite_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/argillite_stairs.json deleted file mode 100644 index 532cfb04..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/argillite_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/argillite_stairs" - ] - }, - "criteria": { - "has_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_stairs" - } - } - }, - "requirements": [ - [ - "has_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/chalk_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/chalk_brick_stairs.json deleted file mode 100644 index d08ca4b3..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/chalk_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/chalk_brick_stairs" - ] - }, - "criteria": { - "has_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/chalk_cobblestone_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/chalk_cobblestone_stairs.json deleted file mode 100644 index e9eec74d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/chalk_cobblestone_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/chalk_cobblestone_stairs" - ] - }, - "criteria": { - "has_chalk_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_cobblestone_stairs" - } - } - }, - "requirements": [ - [ - "has_chalk_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/chalk_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/chalk_stairs.json deleted file mode 100644 index 5976a487..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/chalk_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/chalk_stairs" - ] - }, - "criteria": { - "has_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_stairs" - } - } - }, - "requirements": [ - [ - "has_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/jaspillite_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/jaspillite_brick_stairs.json deleted file mode 100644 index eea5cce0..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/jaspillite_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/jaspillite_brick_stairs" - ] - }, - "criteria": { - "has_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/jaspillite_cobblestone_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/jaspillite_cobblestone_stairs.json deleted file mode 100644 index e5eaa963..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/jaspillite_cobblestone_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/jaspillite_cobblestone_stairs" - ] - }, - "criteria": { - "has_jaspillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_cobblestone_stairs" - } - } - }, - "requirements": [ - [ - "has_jaspillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/jaspillite_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/jaspillite_stairs.json deleted file mode 100644 index 18ed4a59..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/jaspillite_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/jaspillite_stairs" - ] - }, - "criteria": { - "has_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_stairs" - } - } - }, - "requirements": [ - [ - "has_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/limestone_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/limestone_brick_stairs.json deleted file mode 100644 index 5ebccc0f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/limestone_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/limestone_brick_stairs" - ] - }, - "criteria": { - "has_limestone_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:limestone_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_limestone_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/limestone_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/limestone_stairs.json deleted file mode 100644 index 708d11d5..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/limestone_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/limestone_stairs" - ] - }, - "criteria": { - "has_limestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:limestone_stairs" - } - } - }, - "requirements": [ - [ - "has_limestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_argillite_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_argillite_brick_stairs.json deleted file mode 100644 index d7adcf12..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_argillite_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/mossy_argillite_brick_stairs" - ] - }, - "criteria": { - "has_mossy_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_argillite_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_argillite_cobblestone_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_argillite_cobblestone_stairs.json deleted file mode 100644 index ada6f85a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_argillite_cobblestone_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/mossy_argillite_cobblestone_stairs" - ] - }, - "criteria": { - "has_mossy_argillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_argillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_argillite_cobblestone_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_argillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_chalk_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_chalk_brick_stairs.json deleted file mode 100644 index 73c8737b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_chalk_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/mossy_chalk_brick_stairs" - ] - }, - "criteria": { - "has_mossy_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_chalk_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_chalk_cobblestone_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_chalk_cobblestone_stairs.json deleted file mode 100644 index 7f988a8d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_chalk_cobblestone_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/mossy_chalk_cobblestone_stairs" - ] - }, - "criteria": { - "has_mossy_chalk_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_chalk_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_chalk_cobblestone_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_chalk_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_jaspillite_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_jaspillite_brick_stairs.json deleted file mode 100644 index c16a2299..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_jaspillite_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/mossy_jaspillite_brick_stairs" - ] - }, - "criteria": { - "has_mossy_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_jaspillite_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_jaspillite_cobblestone_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_jaspillite_cobblestone_stairs.json deleted file mode 100644 index cc6972dc..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_jaspillite_cobblestone_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/mossy_jaspillite_cobblestone_stairs" - ] - }, - "criteria": { - "has_mossy_jaspillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_jaspillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_jaspillite_cobblestone_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_jaspillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_limestone_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_limestone_brick_stairs.json deleted file mode 100644 index 972a187c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_limestone_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/mossy_limestone_brick_stairs" - ] - }, - "criteria": { - "has_mossy_limestone_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_limestone_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_limestone_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_limestone_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_shale_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_shale_brick_stairs.json deleted file mode 100644 index 8d595d5f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_shale_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/mossy_shale_brick_stairs" - ] - }, - "criteria": { - "has_mossy_shale_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_shale_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_shale_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_mossy_shale_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/polished_argillite_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/polished_argillite_stairs.json deleted file mode 100644 index 9d5da6b7..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/polished_argillite_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/polished_argillite_stairs" - ] - }, - "criteria": { - "has_polished_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_argillite_stairs" - } - } - }, - "requirements": [ - [ - "has_polished_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/polished_chalk_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/polished_chalk_stairs.json deleted file mode 100644 index ab801c3b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/polished_chalk_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/polished_chalk_stairs" - ] - }, - "criteria": { - "has_polished_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_chalk_stairs" - } - } - }, - "requirements": [ - [ - "has_polished_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/polished_jaspillite_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/polished_jaspillite_stairs.json deleted file mode 100644 index 79963b62..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/polished_jaspillite_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/polished_jaspillite_stairs" - ] - }, - "criteria": { - "has_polished_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_jaspillite_stairs" - } - } - }, - "requirements": [ - [ - "has_polished_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/polished_limestone_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/polished_limestone_stairs.json deleted file mode 100644 index 32ae3afe..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/polished_limestone_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/polished_limestone_stairs" - ] - }, - "criteria": { - "has_polished_limestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_limestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_limestone_stairs" - } - } - }, - "requirements": [ - [ - "has_polished_limestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/polished_shale_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/polished_shale_stairs.json deleted file mode 100644 index 733265f8..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/polished_shale_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/polished_shale_stairs" - ] - }, - "criteria": { - "has_polished_shale": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_shale" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_shale_stairs" - } - } - }, - "requirements": [ - [ - "has_polished_shale", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/shale_brick_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/shale_brick_stairs.json deleted file mode 100644 index b71bfd2f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/shale_brick_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/shale_brick_stairs" - ] - }, - "criteria": { - "has_shale_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:shale_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_shale_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/shale_stairs.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/shale_stairs.json deleted file mode 100644 index 2a289444..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/stairs/shale_stairs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/stairs/shale_stairs" - ] - }, - "criteria": { - "has_shale": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:shale_stairs" - } - } - }, - "requirements": [ - [ - "has_shale", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/argillite_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/argillite_brick_wall.json deleted file mode 100644 index 50a9249a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/argillite_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/wall/argillite_brick_wall" - ] - }, - "criteria": { - "has_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_wall" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/argillite_cobblestone_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/argillite_cobblestone_wall.json deleted file mode 100644 index 9d524723..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/argillite_cobblestone_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/wall/argillite_cobblestone_wall" - ] - }, - "criteria": { - "has_argillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_cobblestone_wall" - } - } - }, - "requirements": [ - [ - "has_argillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/argillite_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/argillite_wall.json deleted file mode 100644 index 01f19ca7..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/argillite_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/wall/argillite_wall" - ] - }, - "criteria": { - "has_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_wall" - } - } - }, - "requirements": [ - [ - "has_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/chalk_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/chalk_brick_wall.json deleted file mode 100644 index 08a6a2e0..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/chalk_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/wall/chalk_brick_wall" - ] - }, - "criteria": { - "has_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_wall" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/chalk_cobblestone_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/chalk_cobblestone_wall.json deleted file mode 100644 index 9fd5e15e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/chalk_cobblestone_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/wall/chalk_cobblestone_wall" - ] - }, - "criteria": { - "has_chalk_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_cobblestone_wall" - } - } - }, - "requirements": [ - [ - "has_chalk_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/chalk_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/chalk_wall.json deleted file mode 100644 index 6c8dddd1..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/chalk_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/wall/chalk_wall" - ] - }, - "criteria": { - "has_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_wall" - } - } - }, - "requirements": [ - [ - "has_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/jaspillite_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/jaspillite_brick_wall.json deleted file mode 100644 index ee2549eb..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/jaspillite_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/wall/jaspillite_brick_wall" - ] - }, - "criteria": { - "has_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_wall" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/jaspillite_cobblestone_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/jaspillite_cobblestone_wall.json deleted file mode 100644 index da9e83cc..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/jaspillite_cobblestone_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/wall/jaspillite_cobblestone_wall" - ] - }, - "criteria": { - "has_jaspillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_cobblestone_wall" - } - } - }, - "requirements": [ - [ - "has_jaspillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/jaspillite_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/jaspillite_wall.json deleted file mode 100644 index 621682cd..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/jaspillite_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/wall/jaspillite_wall" - ] - }, - "criteria": { - "has_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_wall" - } - } - }, - "requirements": [ - [ - "has_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/limestone_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/limestone_brick_wall.json deleted file mode 100644 index 754158f1..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/limestone_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/wall/limestone_brick_wall" - ] - }, - "criteria": { - "has_limestone_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:limestone_brick_wall" - } - } - }, - "requirements": [ - [ - "has_limestone_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/limestone_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/limestone_wall.json deleted file mode 100644 index 4fc96727..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/limestone_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/wall/limestone_wall" - ] - }, - "criteria": { - "has_limestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:limestone_wall" - } - } - }, - "requirements": [ - [ - "has_limestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/mossy_argillite_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/mossy_argillite_brick_wall.json deleted file mode 100644 index e240d6db..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/mossy_argillite_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/wall/mossy_argillite_brick_wall" - ] - }, - "criteria": { - "has_mossy_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_argillite_brick_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/mossy_argillite_cobblestone_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/mossy_argillite_cobblestone_wall.json deleted file mode 100644 index 039a2746..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/mossy_argillite_cobblestone_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/wall/mossy_argillite_cobblestone_wall" - ] - }, - "criteria": { - "has_mossy_argillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_argillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_argillite_cobblestone_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_argillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/mossy_chalk_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/mossy_chalk_brick_wall.json deleted file mode 100644 index 3e88165a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/mossy_chalk_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/wall/mossy_chalk_brick_wall" - ] - }, - "criteria": { - "has_mossy_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_chalk_brick_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/mossy_chalk_cobblestone_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/mossy_chalk_cobblestone_wall.json deleted file mode 100644 index c02dd535..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/mossy_chalk_cobblestone_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/wall/mossy_chalk_cobblestone_wall" - ] - }, - "criteria": { - "has_mossy_chalk_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_chalk_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_chalk_cobblestone_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_chalk_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/mossy_jaspillite_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/mossy_jaspillite_brick_wall.json deleted file mode 100644 index 2f494da8..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/mossy_jaspillite_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/wall/mossy_jaspillite_brick_wall" - ] - }, - "criteria": { - "has_mossy_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_jaspillite_brick_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/mossy_jaspillite_cobblestone_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/mossy_jaspillite_cobblestone_wall.json deleted file mode 100644 index 158294d4..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/mossy_jaspillite_cobblestone_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/wall/mossy_jaspillite_cobblestone_wall" - ] - }, - "criteria": { - "has_mossy_jaspillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_jaspillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_jaspillite_cobblestone_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_jaspillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/mossy_limestone_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/mossy_limestone_brick_wall.json deleted file mode 100644 index c5699cb3..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/mossy_limestone_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/wall/mossy_limestone_brick_wall" - ] - }, - "criteria": { - "has_mossy_limestone_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_limestone_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_limestone_brick_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_limestone_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/mossy_shale_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/mossy_shale_brick_wall.json deleted file mode 100644 index 018ca520..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/mossy_shale_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/wall/mossy_shale_brick_wall" - ] - }, - "criteria": { - "has_mossy_shale_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_shale_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_shale_brick_wall" - } - } - }, - "requirements": [ - [ - "has_mossy_shale_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/shale_brick_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/shale_brick_wall.json deleted file mode 100644 index c10d2401..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/shale_brick_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/wall/shale_brick_wall" - ] - }, - "criteria": { - "has_shale_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:shale_brick_wall" - } - } - }, - "requirements": [ - [ - "has_shale_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/shale_wall.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/shale_wall.json deleted file mode 100644 index cc3c5baf..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/crafting/block/wall/shale_wall.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/block/wall/shale_wall" - ] - }, - "criteria": { - "has_shale": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:shale_wall" - } - } - }, - "requirements": [ - [ - "has_shale", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/smelting/block/argillite.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/smelting/block/argillite.json deleted file mode 100644 index 073c9b34..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/smelting/block/argillite.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/smelting/block/argillite" - ] - }, - "criteria": { - "has_argillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite" - } - } - }, - "requirements": [ - [ - "has_argillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/smelting/block/chalk.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/smelting/block/chalk.json deleted file mode 100644 index 33fe86e3..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/smelting/block/chalk.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/smelting/block/chalk" - ] - }, - "criteria": { - "has_chalk_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk" - } - } - }, - "requirements": [ - [ - "has_chalk_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/smelting/block/cracked_argillite_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/smelting/block/cracked_argillite_bricks.json deleted file mode 100644 index a2a13495..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/smelting/block/cracked_argillite_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/smelting/block/cracked_argillite_bricks" - ] - }, - "criteria": { - "has_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:cracked_argillite_bricks" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/smelting/block/cracked_chalk_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/smelting/block/cracked_chalk_bricks.json deleted file mode 100644 index 7769f0fd..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/smelting/block/cracked_chalk_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/smelting/block/cracked_chalk_bricks" - ] - }, - "criteria": { - "has_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:cracked_chalk_bricks" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/smelting/block/cracked_jaspillite_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/smelting/block/cracked_jaspillite_bricks.json deleted file mode 100644 index 1124634c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/smelting/block/cracked_jaspillite_bricks.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/smelting/block/cracked_jaspillite_bricks" - ] - }, - "criteria": { - "has_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:cracked_jaspillite_bricks" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/smelting/block/cracked_limestone_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/smelting/block/cracked_limestone_bricks.json deleted file mode 100644 index 18201ce5..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/smelting/block/cracked_limestone_bricks.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/smelting/block/cracked_limestone_bricks" - ] - }, - "criteria": { - "has_limestone_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:cracked_limestone_bricks" - } - } - }, - "requirements": [ - [ - "has_limestone_bricks", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/smelting/block/cracked_shale_bricks.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/smelting/block/cracked_shale_bricks.json deleted file mode 100644 index a1cccc25..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/smelting/block/cracked_shale_bricks.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/smelting/block/cracked_shale_bricks" - ] - }, - "criteria": { - "has_shale_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:cracked_shale_bricks" - } - } - }, - "requirements": [ - [ - "has_shale_bricks", - "has_the_recipe" - ] - ] -} - diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/smelting/block/jaspillite.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/smelting/block/jaspillite.json deleted file mode 100644 index 095faad9..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/smelting/block/jaspillite.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/smelting/block/jaspillite" - ] - }, - "criteria": { - "has_jaspillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite" - } - } - }, - "requirements": [ - [ - "has_jaspillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/argillite_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/argillite_bricks_polished_stonecutting.json deleted file mode 100644 index 118973cc..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/argillite_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/argillite_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/argillite_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/argillite_bricks_stone_stonecutting.json deleted file mode 100644 index ddeb3e8b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/argillite_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/argillite_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chalk_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chalk_bricks_polished_stonecutting.json deleted file mode 100644 index 410656bd..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chalk_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/chalk_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chalk_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chalk_bricks_stone_stonecutting.json deleted file mode 100644 index a51397ca..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chalk_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/chalk_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_argillite_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_argillite_bricks_bricks_stonecutting.json deleted file mode 100644 index 5d476902..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_argillite_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/chiseled_argillite_bricks_bricks_stonecutting" - ] - }, - "criteria": { - "has_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_argillite_bricks_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_argillite_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_argillite_bricks_polished_stonecutting.json deleted file mode 100644 index cb8f1174..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_argillite_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/chiseled_argillite_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_argillite_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_argillite_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_argillite_bricks_stone_stonecutting.json deleted file mode 100644 index 8485a044..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_argillite_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/chiseled_argillite_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_argillite_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_chalk_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_chalk_bricks_bricks_stonecutting.json deleted file mode 100644 index aee5a435..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_chalk_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/chiseled_chalk_bricks_bricks_stonecutting" - ] - }, - "criteria": { - "has_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_chalk_bricks_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_chalk_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_chalk_bricks_polished_stonecutting.json deleted file mode 100644 index 1262605c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_chalk_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/chiseled_chalk_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_chalk_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_chalk_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_chalk_bricks_stone_stonecutting.json deleted file mode 100644 index 646ff40c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_chalk_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/chiseled_chalk_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_chalk_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_jaspillite_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_jaspillite_bricks_bricks_stonecutting.json deleted file mode 100644 index 2b62f506..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_jaspillite_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/chiseled_jaspillite_bricks_bricks_stonecutting" - ] - }, - "criteria": { - "has_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_jaspillite_bricks_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_jaspillite_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_jaspillite_bricks_polished_stonecutting.json deleted file mode 100644 index e12c9ff0..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_jaspillite_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/chiseled_jaspillite_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_jaspillite_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_jaspillite_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_jaspillite_bricks_stone_stonecutting.json deleted file mode 100644 index 253ad339..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_jaspillite_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/chiseled_jaspillite_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_jaspillite_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_limestone_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_limestone_bricks_bricks_stonecutting.json deleted file mode 100644 index faad5df9..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_limestone_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/chiseled_limestone_bricks_bricks_stonecutting" - ] - }, - "criteria": { - "has_limestone_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_limestone_bricks_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_limestone_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_limestone_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_limestone_bricks_polished_stonecutting.json deleted file mode 100644 index 2b15deb4..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_limestone_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/chiseled_limestone_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_limestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_limestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_limestone_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_limestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_limestone_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_limestone_bricks_stone_stonecutting.json deleted file mode 100644 index 1a5ee3bb..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_limestone_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/chiseled_limestone_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_limestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_limestone_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_limestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_shale_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_shale_bricks_bricks_stonecutting.json deleted file mode 100644 index e4cbf06e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_shale_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/chiseled_shale_bricks_bricks_stonecutting" - ] - }, - "criteria": { - "has_shale_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_shale_bricks_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_shale_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_shale_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_shale_bricks_polished_stonecutting.json deleted file mode 100644 index 9abb5f50..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_shale_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/chiseled_shale_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_shale": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_shale" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_shale_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_shale", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_shale_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_shale_bricks_stone_stonecutting.json deleted file mode 100644 index e27c0d8d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/chiseled_shale_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/chiseled_shale_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_shale": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chiseled_shale_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_shale", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/jaspillite_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/jaspillite_bricks_polished_stonecutting.json deleted file mode 100644 index f11804a8..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/jaspillite_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/jaspillite_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/jaspillite_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/jaspillite_bricks_stone_stonecutting.json deleted file mode 100644 index ac93b1ff..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/jaspillite_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/jaspillite_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/limestone_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/limestone_bricks_bricks_stonecutting.json deleted file mode 100644 index 06fbdb7f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/limestone_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/limestone_bricks_bricks_stonecutting" - ] - }, - "criteria": { - "has_limestone_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:limestone_bricks_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_limestone_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/limestone_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/limestone_bricks_polished_stonecutting.json deleted file mode 100644 index 47afe23d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/limestone_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/limestone_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_limestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_limestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:limestone_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_limestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/limestone_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/limestone_bricks_stone_stonecutting.json deleted file mode 100644 index 0a73df41..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/limestone_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/limestone_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_limestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:limestone_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_limestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/mossy_limestone_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/mossy_limestone_bricks_stonecutting.json deleted file mode 100644 index de9f2d7b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/mossy_limestone_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/mossy_limestone_bricks_stonecutting" - ] - }, - "criteria": { - "has_mossy_limestone_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_limestone_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_limestone_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_limestone_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/mossy_shale_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/mossy_shale_bricks_stonecutting.json deleted file mode 100644 index c2889434..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/mossy_shale_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/mossy_shale_bricks_stonecutting" - ] - }, - "criteria": { - "has_mossy_shale_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_shale_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_shale_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_shale_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/polished_argillite_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/polished_argillite_stonecutting.json deleted file mode 100644 index 91c8f035..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/polished_argillite_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/polished_argillite_stonecutting" - ] - }, - "criteria": { - "has_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_argillite_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/polished_chalk_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/polished_chalk_stonecutting.json deleted file mode 100644 index 45ce9def..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/polished_chalk_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/polished_chalk_stonecutting" - ] - }, - "criteria": { - "has_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_chalk_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/polished_jaspillite_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/polished_jaspillite_stonecutting.json deleted file mode 100644 index ca500e4c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/polished_jaspillite_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/polished_jaspillite_stonecutting" - ] - }, - "criteria": { - "has_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_jaspillite_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/polished_limestone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/polished_limestone_stonecutting.json deleted file mode 100644 index 70a79c76..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/polished_limestone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/polished_limestone_stonecutting" - ] - }, - "criteria": { - "has_limestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_limestone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_limestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/polished_shale_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/polished_shale_stonecutting.json deleted file mode 100644 index cc701d98..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/polished_shale_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/polished_stone_stonecutting" - ] - }, - "criteria": { - "has_shale": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_shale_stonecutting" - } - } - }, - "requirements": [ - [ - "has_shale", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/shale_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/shale_bricks_bricks_stonecutting.json deleted file mode 100644 index bf19d876..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/shale_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/shale_bricks_bricks_stonecutting" - ] - }, - "criteria": { - "has_shale_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:shale_bricks_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_shale_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/shale_bricks_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/shale_bricks_polished_stonecutting.json deleted file mode 100644 index b61b3cf6..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/shale_bricks_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/shale_bricks_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_shale": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_shale" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:shale_bricks_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_shale", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/shale_bricks_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/shale_bricks_stone_stonecutting.json deleted file mode 100644 index a1a7c37a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/shale_bricks_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/shale_bricks_stone_stonecutting" - ] - }, - "criteria": { - "has_shale": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:shale_bricks_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_shale", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_brick_slab_bricks_stonecutting.json deleted file mode 100644 index cc5b7b70..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_brick_slab_bricks_stonecutting" - ] - }, - "criteria": { - "has_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_slab_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_brick_slab_polished_stonecutting.json deleted file mode 100644 index ce0dc612..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_brick_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_slab_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_brick_slab_stone_stonecutting.json deleted file mode 100644 index efd0f82b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_brick_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_slab_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_cobblestone_slab_stonecutting.json deleted file mode 100644 index 668e2fbc..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_cobblestone_slab_stonecutting" - ] - }, - "criteria": { - "has_argillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_cobblestone_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_slab_stonecutting.json deleted file mode 100644 index 8b24172f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_slab_stonecutting" - ] - }, - "criteria": { - "has_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_brick_slab_bricks_stonecutting.json deleted file mode 100644 index b7cf41f6..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_brick_slab_bricks_stonecutting" - ] - }, - "criteria": { - "has_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_slab_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_brick_slab_polished_stonecutting.json deleted file mode 100644 index 1fe47057..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_brick_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_slab_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_brick_slab_stone_stonecutting.json deleted file mode 100644 index 15636198..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_brick_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_slab_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_cobblestone_slab_stonecutting.json deleted file mode 100644 index c8f2570b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_cobblestone_slab_stonecutting" - ] - }, - "criteria": { - "has_chalk_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_cobblestone_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_slab_stonecutting.json deleted file mode 100644 index 9ddb7cbd..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_slab_stonecutting" - ] - }, - "criteria": { - "has_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_brick_slab_bricks_stonecutting.json deleted file mode 100644 index a1c5d367..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_brick_slab_bricks_stonecutting" - ] - }, - "criteria": { - "has_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_slab_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_brick_slab_polished_stonecutting.json deleted file mode 100644 index feecfd3c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_brick_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_slab_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_brick_slab_stone_stonecutting.json deleted file mode 100644 index e9b6adc5..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_brick_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_slab_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_cobblestone_slab_stonecutting.json deleted file mode 100644 index d9c206bc..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_cobblestone_slab_stonecutting" - ] - }, - "criteria": { - "has_jaspillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_cobblestone_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_slab_stonecutting.json deleted file mode 100644 index ed0db393..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_slab_stonecutting" - ] - }, - "criteria": { - "has_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_brick_slab_bricks_stonecutting.json deleted file mode 100644 index 2e9fa4a5..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_brick_slab_bricks_stonecutting" - ] - }, - "criteria": { - "has_limestone_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:limestone_brick_slab_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_limestone_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_brick_slab_polished_stonecutting.json deleted file mode 100644 index 50400677..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_brick_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_limestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_limestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:limestone_brick_slab_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_limestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_brick_slab_stone_stonecutting.json deleted file mode 100644 index 7d43659e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_brick_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_limestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:limestone_brick_slab_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_limestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_slab_stonecutting.json deleted file mode 100644 index 01a53eea..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_slab_stonecutting" - ] - }, - "criteria": { - "has_limestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:limestone_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_limestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_argillite_brick_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_argillite_brick_slab_stonecutting.json deleted file mode 100644 index 7f9bf390..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_argillite_brick_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_argillite_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_mossy_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_argillite_brick_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_argillite_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_argillite_cobblestone_slab_stonecutting.json deleted file mode 100644 index fe40911c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_argillite_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_argillite_cobblestone_slab_stonecutting" - ] - }, - "criteria": { - "has_mossy_argillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_argillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_argillite_cobblestone_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_argillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_chalk_brick_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_chalk_brick_slab_stonecutting.json deleted file mode 100644 index b7f743bc..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_chalk_brick_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_chalk_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_mossy_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_chalk_brick_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_chalk_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_chalk_cobblestone_slab_stonecutting.json deleted file mode 100644 index 4165be4c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_chalk_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_chalk_cobblestone_slab_stonecutting" - ] - }, - "criteria": { - "has_mossy_chalk_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_chalk_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_chalk_cobblestone_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_chalk_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_jaspillite_brick_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_jaspillite_brick_slab_stonecutting.json deleted file mode 100644 index c53f80f4..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_jaspillite_brick_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_jaspillite_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_mossy_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_jaspillite_brick_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_jaspillite_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_jaspillite_cobblestone_slab_stonecutting.json deleted file mode 100644 index f46558f0..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_jaspillite_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_jaspillite_cobblestone_slab_stonecutting" - ] - }, - "criteria": { - "has_mossy_jaspillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_jaspillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_jaspillite_cobblestone_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_jaspillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_limestone_brick_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_limestone_brick_slab_stonecutting.json deleted file mode 100644 index 0f52fb83..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_limestone_brick_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_limestone_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_mossy_limestone_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_limestone_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_limestone_brick_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_limestone_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_shale_brick_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_shale_brick_slab_stonecutting.json deleted file mode 100644 index 87ebbc08..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_shale_brick_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_shale_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_mossy_shale_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_shale_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_shale_brick_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_shale_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_argillite_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_argillite_slab_polished_stonecutting.json deleted file mode 100644 index 9dc16e44..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_argillite_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/polished_argillite_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_argillite_slab_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_argillite_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_argillite_slab_stone_stonecutting.json deleted file mode 100644 index 825bd00e..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_argillite_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/polished_argillite_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_argillite_slab_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_chalk_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_chalk_slab_polished_stonecutting.json deleted file mode 100644 index 46cc5ace..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_chalk_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/polished_chalk_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_chalk_slab_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_chalk_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_chalk_slab_stone_stonecutting.json deleted file mode 100644 index 9be4fbe1..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_chalk_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/polished_chalk_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_chalk_slab_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_jaspillite_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_jaspillite_slab_polished_stonecutting.json deleted file mode 100644 index e60efb6b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_jaspillite_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/polished_jaspillite_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_jaspillite_slab_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_jaspillite_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_jaspillite_slab_stone_stonecutting.json deleted file mode 100644 index d1755cdc..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_jaspillite_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/polished_jaspillite_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_jaspillite_slab_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_limestone_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_limestone_slab_stonecutting.json deleted file mode 100644 index e70a8c9b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_limestone_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/polished_limestone_slab_stonecutting" - ] - }, - "criteria": { - "has_polished_limestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_limestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_limestone_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_limestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_shale_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_shale_slab_stonecutting.json deleted file mode 100644 index a17fd387..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_shale_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/polished_shale_slab_stonecutting" - ] - }, - "criteria": { - "has_polished_shale": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_shale" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_shale_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_shale", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/shale_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/shale_brick_slab_bricks_stonecutting.json deleted file mode 100644 index e14e06ef..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/shale_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/shale_brick_slab_bricks_stonecutting" - ] - }, - "criteria": { - "has_shale_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:shale_brick_slab_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_shale_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/shale_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/shale_brick_slab_polished_stonecutting.json deleted file mode 100644 index 092bfbf8..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/shale_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/shale_brick_slab_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_shale": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_shale" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:shale_brick_slab_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_shale", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/shale_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/shale_brick_slab_stone_stonecutting.json deleted file mode 100644 index 91901104..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/shale_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/shale_brick_slab_stone_stonecutting" - ] - }, - "criteria": { - "has_shale": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:shale_brick_slab_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_shale", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/shale_slab_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/shale_slab_stonecutting.json deleted file mode 100644 index 039ef0c4..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/slab/shale_slab_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/slab/shale_slab_stonecutting" - ] - }, - "criteria": { - "has_shale": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:shale_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_shale", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index a5c26f31..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_brick_stairs_bricks_stonecutting" - ] - }, - "criteria": { - "has_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_stairs_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_brick_stairs_polished_stonecutting.json deleted file mode 100644 index 8c479582..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_brick_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_brick_stairs_stone_stonecutting.json deleted file mode 100644 index 1e9ee155..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_brick_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_cobblestone_stairs_stonecutting.json deleted file mode 100644 index ccb11bae..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_cobblestone_stairs_stonecutting" - ] - }, - "criteria": { - "has_argillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_cobblestone_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_stairs_stonecutting.json deleted file mode 100644 index 1f7e0234..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_stairs_stonecutting" - ] - }, - "criteria": { - "has_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index 72889d0f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_brick_stairs_bricks_stonecutting" - ] - }, - "criteria": { - "has_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_stairs_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_brick_stairs_polished_stonecutting.json deleted file mode 100644 index 8e3b4f12..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_brick_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_brick_stairs_stone_stonecutting.json deleted file mode 100644 index 4e880cae..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_brick_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_cobblestone_stairs_stonecutting.json deleted file mode 100644 index 550aae3f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_cobblestone_stairs_stonecutting" - ] - }, - "criteria": { - "has_chalk_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_cobblestone_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_stairs_stonecutting.json deleted file mode 100644 index 3fd32857..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_stairs_stonecutting" - ] - }, - "criteria": { - "has_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index 6cc9ceb1..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_bricks_stonecutting" - ] - }, - "criteria": { - "has_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_stairs_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_polished_stonecutting.json deleted file mode 100644 index 2e71654a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_stone_stonecutting.json deleted file mode 100644 index 9b517399..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_cobblestone_stairs_stonecutting.json deleted file mode 100644 index b528c348..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_cobblestone_stairs_stonecutting" - ] - }, - "criteria": { - "has_jaspillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_cobblestone_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_stairs_stonecutting.json deleted file mode 100644 index 6c69ac12..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_stairs_stonecutting" - ] - }, - "criteria": { - "has_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index dfa30d74..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_brick_stairs_bricks_stonecutting" - ] - }, - "criteria": { - "has_limestone_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:limestone_brick_stairs_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_limestone_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_brick_stairs_polished_stonecutting.json deleted file mode 100644 index 19824cb4..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_brick_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_limestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_limestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:limestone_brick_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_limestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_brick_stairs_stone_stonecutting.json deleted file mode 100644 index 3d4f3058..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_brick_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_limestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:limestone_brick_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_limestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_stairs_stonecutting.json deleted file mode 100644 index faf677b4..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_stairs_stonecutting" - ] - }, - "criteria": { - "has_limestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:limestone_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_limestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_argillite_brick_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_argillite_brick_stairs_stonecutting.json deleted file mode 100644 index 0aaa0bab..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_argillite_brick_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_argillite_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_mossy_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_argillite_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_argillite_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_argillite_cobblestone_stairs_stonecutting.json deleted file mode 100644 index 7ed4f392..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_argillite_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_argillite_cobblestone_stairs_stonecutting" - ] - }, - "criteria": { - "has_mossy_argillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_argillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_argillite_cobblestone_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_argillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_chalk_brick_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_chalk_brick_stairs_stonecutting.json deleted file mode 100644 index 9f912bf4..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_chalk_brick_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_chalk_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_mossy_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_chalk_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_chalk_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_chalk_cobblestone_stairs_stonecutting.json deleted file mode 100644 index dda0176b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_chalk_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_chalk_cobblestone_stairs_stonecutting" - ] - }, - "criteria": { - "has_mossy_chalk_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_chalk_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_chalk_cobblestone_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_chalk_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_jaspillite_brick_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_jaspillite_brick_stairs_stonecutting.json deleted file mode 100644 index fff18906..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_jaspillite_brick_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_jaspillite_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_mossy_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_jaspillite_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_jaspillite_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_jaspillite_cobblestone_stairs_stonecutting.json deleted file mode 100644 index b93ffd35..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_jaspillite_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_jaspillite_cobblestone_stairs_stonecutting" - ] - }, - "criteria": { - "has_mossy_jaspillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_jaspillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_jaspillite_cobblestone_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_jaspillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_limestone_brick_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_limestone_brick_stairs_stonecutting.json deleted file mode 100644 index 8950192b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_limestone_brick_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_limestone_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_mossy_limestone_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_limestone_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_limestone_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_limestone_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_shale_brick_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_shale_brick_stairs_stonecutting.json deleted file mode 100644 index bd326b5b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_shale_brick_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_shale_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_mossy_shale_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_shale_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_shale_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_shale_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_argillite_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_argillite_stairs_polished_stonecutting.json deleted file mode 100644 index 17629bfa..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_argillite_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_argillite_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_argillite_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_argillite_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_argillite_stairs_stone_stonecutting.json deleted file mode 100644 index 89618ff2..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_argillite_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_argillite_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_argillite_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_chalk_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_chalk_stairs_polished_stonecutting.json deleted file mode 100644 index cffbd3df..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_chalk_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_chalk_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_chalk_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_chalk_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_chalk_stairs_stone_stonecutting.json deleted file mode 100644 index bba32200..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_chalk_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_chalk_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_chalk_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_jaspillite_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_jaspillite_stairs_polished_stonecutting.json deleted file mode 100644 index 4f0dddfd..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_jaspillite_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_jaspillite_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_jaspillite_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_jaspillite_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_jaspillite_stairs_stone_stonecutting.json deleted file mode 100644 index 915ad8a8..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_jaspillite_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_jaspillite_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_jaspillite_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_limestone_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_limestone_stairs_stonecutting.json deleted file mode 100644 index b72e41f3..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_limestone_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_limestone_stairs_stonecutting" - ] - }, - "criteria": { - "has_polished_limestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_limestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_limestone_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_limestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_shale_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_shale_stairs_stonecutting.json deleted file mode 100644 index 46417748..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_shale_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_shale_stairs_stonecutting" - ] - }, - "criteria": { - "has_polished_shale": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_shale" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:polished_shale_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_shale", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index 6f295bcf..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_brick_stairs_bricks_stonecutting" - ] - }, - "criteria": { - "has_shale_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:shale_brick_stairs_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_shale_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_brick_stairs_polished_stonecutting.json deleted file mode 100644 index 0cebb248..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_brick_stairs_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_shale": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_shale" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:shale_brick_stairs_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_shale", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_brick_stairs_stone_stonecutting.json deleted file mode 100644 index 7cd03e68..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_brick_stairs_stone_stonecutting" - ] - }, - "criteria": { - "has_shale": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:shale_brick_stairs_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_shale", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_stairs_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_stairs_stonecutting.json deleted file mode 100644 index 279934d7..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_stairs_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_stairs_stonecutting" - ] - }, - "criteria": { - "has_shale": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:shale_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_shale", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_brick_wall_bricks_stonecutting.json deleted file mode 100644 index 578100e3..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_brick_wall_bricks_stonecutting" - ] - }, - "criteria": { - "has_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_wall_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_brick_wall_polished_stonecutting.json deleted file mode 100644 index 5c98755b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_brick_wall_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_wall_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_brick_wall_stone_stonecutting.json deleted file mode 100644 index 4815ae25..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_brick_wall_stone_stonecutting" - ] - }, - "criteria": { - "has_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_brick_wall_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_cobblestone_wall_stonecutting.json deleted file mode 100644 index 29ae8d30..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_cobblestone_wall_stonecutting" - ] - }, - "criteria": { - "has_argillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_cobblestone_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_wall_stonecutting.json deleted file mode 100644 index c662f3fb..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_wall_stonecutting" - ] - }, - "criteria": { - "has_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_brick_wall_bricks_stonecutting.json deleted file mode 100644 index 74e048bb..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_brick_wall_bricks_stonecutting" - ] - }, - "criteria": { - "has_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_wall_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_brick_wall_polished_stonecutting.json deleted file mode 100644 index e3ca1ea5..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_brick_wall_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_wall_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_brick_wall_stone_stonecutting.json deleted file mode 100644 index 56a437d1..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_brick_wall_stone_stonecutting" - ] - }, - "criteria": { - "has_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_brick_wall_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_cobblestone_wall_stonecutting.json deleted file mode 100644 index 3eeff0a1..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_cobblestone_wall_stonecutting" - ] - }, - "criteria": { - "has_chalk_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_cobblestone_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_wall_stonecutting.json deleted file mode 100644 index 8763f680..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_wall_stonecutting" - ] - }, - "criteria": { - "has_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_brick_wall_bricks_stonecutting.json deleted file mode 100644 index 66d07e84..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_brick_wall_bricks_stonecutting" - ] - }, - "criteria": { - "has_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_wall_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_brick_wall_polished_stonecutting.json deleted file mode 100644 index 657613ab..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_brick_wall_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_wall_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_brick_wall_stone_stonecutting.json deleted file mode 100644 index 175d4c70..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_brick_wall_stone_stonecutting" - ] - }, - "criteria": { - "has_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_brick_wall_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_cobblestone_wall_stonecutting.json deleted file mode 100644 index b9ba234f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_cobblestone_wall_stonecutting" - ] - }, - "criteria": { - "has_jaspillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_cobblestone_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_wall_stonecutting.json deleted file mode 100644 index a5b59429..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_wall_stonecutting" - ] - }, - "criteria": { - "has_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_brick_wall_bricks_stonecutting.json deleted file mode 100644 index c651fdd6..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_brick_wall_bricks_stonecutting" - ] - }, - "criteria": { - "has_limestone_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:limestone_brick_wall_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_limestone_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_brick_wall_polished_stonecutting.json deleted file mode 100644 index 6a1956ad..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_brick_wall_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_limestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_limestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:limestone_brick_wall_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_limestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_brick_wall_stone_stonecutting.json deleted file mode 100644 index a08a8a75..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_brick_wall_stone_stonecutting" - ] - }, - "criteria": { - "has_limestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:limestone_brick_wall_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_limestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_wall_stonecutting.json deleted file mode 100644 index 65607733..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_wall_stonecutting" - ] - }, - "criteria": { - "has_limestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:limestone_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_limestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_argillite_brick_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_argillite_brick_wall_stonecutting.json deleted file mode 100644 index b1e70ff1..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_argillite_brick_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_argillite_brick_wall_stonecutting" - ] - }, - "criteria": { - "has_mossy_argillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_argillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_argillite_brick_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_argillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_argillite_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_argillite_cobblestone_wall_stonecutting.json deleted file mode 100644 index e6011ef9..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_argillite_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_argillite_cobblestone_wall_stonecutting" - ] - }, - "criteria": { - "has_mossy_argillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_argillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_argillite_cobblestone_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_argillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_chalk_brick_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_chalk_brick_wall_stonecutting.json deleted file mode 100644 index 2f0a9790..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_chalk_brick_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_chalk_brick_wall_stonecutting" - ] - }, - "criteria": { - "has_mossy_chalk_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_chalk_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_chalk_brick_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_chalk_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_chalk_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_chalk_cobblestone_wall_stonecutting.json deleted file mode 100644 index b8ed0302..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_chalk_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_chalk_cobblestone_wall_stonecutting" - ] - }, - "criteria": { - "has_mossy_chalk_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_chalk_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_chalk_cobblestone_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_chalk_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_jaspillite_brick_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_jaspillite_brick_wall_stonecutting.json deleted file mode 100644 index 97cf2544..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_jaspillite_brick_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_jaspillite_brick_wall_stonecutting" - ] - }, - "criteria": { - "has_mossy_jaspillite_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_jaspillite_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_jaspillite_brick_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_jaspillite_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_jaspillite_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_jaspillite_cobblestone_wall_stonecutting.json deleted file mode 100644 index d1c12a7f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_jaspillite_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_jaspillite_cobblestone_wall_stonecutting" - ] - }, - "criteria": { - "has_mossy_jaspillite_cobblestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_jaspillite_cobblestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_jaspillite_cobblestone_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_jaspillite_cobblestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_limestone_brick_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_limestone_brick_wall_stonecutting.json deleted file mode 100644 index e95a66af..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_limestone_brick_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_limestone_brick_wall_stonecutting" - ] - }, - "criteria": { - "has_mossy_limestone_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_limestone_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_limestone_brick_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_limestone_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_shale_brick_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_shale_brick_wall_stonecutting.json deleted file mode 100644 index a0d8eab9..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_shale_brick_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_shale_brick_wall_stonecutting" - ] - }, - "criteria": { - "has_mossy_shale_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:mossy_shale_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:mossy_shale_brick_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_mossy_shale_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/shale_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/shale_brick_wall_bricks_stonecutting.json deleted file mode 100644 index 608dc0d4..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/shale_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/shale_brick_wall_bricks_stonecutting" - ] - }, - "criteria": { - "has_shale_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale_bricks" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:shale_brick_wall_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_shale_bricks", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/shale_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/shale_brick_wall_polished_stonecutting.json deleted file mode 100644 index eeab77d3..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/shale_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/shale_brick_wall_polished_stonecutting" - ] - }, - "criteria": { - "has_polished_shale": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:polished_shale" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:shale_brick_wall_polished_stonecutting" - } - } - }, - "requirements": [ - [ - "has_polished_shale", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/shale_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/shale_brick_wall_stone_stonecutting.json deleted file mode 100644 index 389e0e8f..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/shale_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/shale_brick_wall_stone_stonecutting" - ] - }, - "criteria": { - "has_shale": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:shale_brick_wall_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_shale", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/shale_wall_stonecutting.json b/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/shale_wall_stonecutting.json deleted file mode 100644 index 031b655a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/building_blocks/rock_types/sedimentary_rocks/stonecutting/block/wall/shale_wall_stonecutting.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/stonecutting/block/wall/shale_wall_stonecutting" - ] - }, - "criteria": { - "has_shale": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "stratashale_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_shale", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/button/aa_button.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/button/aa_button.json deleted file mode 100644 index 17140c1b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/button/aa_button.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/button/aa_button" - ] - }, - "criteria": { - "has_aa": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:aa" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:aa_button" - } - } - }, - "requirements": [ - [ - "has_aa", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/button/adakite_button.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/button/adakite_button.json deleted file mode 100644 index 1b31bae3..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/button/adakite_button.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/button/adakite_button" - ] - }, - "criteria": { - "has_adakite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:adakite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:adakite_button" - } - } - }, - "requirements": [ - [ - "has_adakite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/button/basalt_button.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/button/basalt_button.json deleted file mode 100644 index 784d06ca..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/button/basalt_button.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/button/basalt_button" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_button" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/button/gabbro_button.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/button/gabbro_button.json deleted file mode 100644 index 6a948ed6..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/button/gabbro_button.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/button/gabbro_button" - ] - }, - "criteria": { - "has_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gabbro_button" - } - } - }, - "requirements": [ - [ - "has_gabbro", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/button/pahoehoe_button.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/button/pahoehoe_button.json deleted file mode 100644 index 1b158924..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/button/pahoehoe_button.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/button/pahoehoe_button" - ] - }, - "criteria": { - "has_pahoehoe": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:pahoehoe" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:pahoehoe_button" - } - } - }, - "requirements": [ - [ - "has_pahoehoe", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/pressure_plate/aa_pressure_plate.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/pressure_plate/aa_pressure_plate.json deleted file mode 100644 index 058b68f5..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/pressure_plate/aa_pressure_plate.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/button/aa_pressure_plate" - ] - }, - "criteria": { - "has_aa": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:aa" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:aa_pressure_plate" - } - } - }, - "requirements": [ - [ - "has_aa", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/pressure_plate/adakite_pressure_plate.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/pressure_plate/adakite_pressure_plate.json deleted file mode 100644 index 801766d8..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/pressure_plate/adakite_pressure_plate.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/button/adakite_pressure_plate" - ] - }, - "criteria": { - "has_adakite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:adakite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:adakite_pressure_plate" - } - } - }, - "requirements": [ - [ - "has_adakite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/pressure_plate/basalt_pressure_plate.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/pressure_plate/basalt_pressure_plate.json deleted file mode 100644 index 87357b7c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/pressure_plate/basalt_pressure_plate.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/pressure_plate/basalt_pressure_plate" - ] - }, - "criteria": { - "has_basalt": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:basalt" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:basalt_pressure_plate" - } - } - }, - "requirements": [ - [ - "has_basalt", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/pressure_plate/gabbro_pressure_plate.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/pressure_plate/gabbro_pressure_plate.json deleted file mode 100644 index bc6ebf43..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/pressure_plate/gabbro_pressure_plate.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/pressure_plate/gabbro_pressure_plate" - ] - }, - "criteria": { - "has_gabbro": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gabbro" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gabbro_pressure_plate" - } - } - }, - "requirements": [ - [ - "has_gabbro", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/pressure_plate/pahoehoe_pressure_plate.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/pressure_plate/pahoehoe_pressure_plate.json deleted file mode 100644 index 2e49e391..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/igneous_rocks/crafting/pressure_plate/pahoehoe_pressure_plate.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/igneous_rocks/crafting/button/pahoehoe_pressure_plate" - ] - }, - "criteria": { - "has_pahoehoe": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:pahoehoe" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:pahoehoe_pressure_plate" - } - } - }, - "requirements": [ - [ - "has_pahoehoe", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/button/amphibolite_button.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/button/amphibolite_button.json deleted file mode 100644 index bbf36b95..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/button/amphibolite_button.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/button/amphibolite_button" - ] - }, - "criteria": { - "has_amphibolite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:amphibolite_button" - } - } - }, - "requirements": [ - [ - "has_amphibolite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/button/eclogite_button.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/button/eclogite_button.json deleted file mode 100644 index b5480c77..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/button/eclogite_button.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/button/eclogite_button" - ] - }, - "criteria": { - "has_eclogite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:eclogite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:eclogite_button" - } - } - }, - "requirements": [ - [ - "has_eclogite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/button/gneiss_button.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/button/gneiss_button.json deleted file mode 100644 index 73416a6a..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/button/gneiss_button.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/button/gneiss_button" - ] - }, - "criteria": { - "has_gneiss": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gneiss" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gneiss_button" - } - } - }, - "requirements": [ - [ - "has_gneiss", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/button/marble_button.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/button/marble_button.json deleted file mode 100644 index 46eee470..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/button/marble_button.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/button/marble_button" - ] - }, - "criteria": { - "has_marble": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:marble" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:marble_button" - } - } - }, - "requirements": [ - [ - "has_marble", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/button/schist_button.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/button/schist_button.json deleted file mode 100644 index 1fe80047..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/button/schist_button.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/button/schist_button" - ] - }, - "criteria": { - "has_schist": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:schist" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:schist_button" - } - } - }, - "requirements": [ - [ - "has_schist", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/pressure_plate/amphibolite_pressure_plate.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/pressure_plate/amphibolite_pressure_plate.json deleted file mode 100644 index 2c950a97..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/pressure_plate/amphibolite_pressure_plate.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/pressure_plate/amphibolite_pressure_plate" - ] - }, - "criteria": { - "has_amphibolite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:amphibolite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:amphibolite_pressure_plate" - } - } - }, - "requirements": [ - [ - "has_amphibolite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/pressure_plate/eclogite_pressure_plate.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/pressure_plate/eclogite_pressure_plate.json deleted file mode 100644 index a95d2b08..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/pressure_plate/eclogite_pressure_plate.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/button/eclogite_pressure_plate" - ] - }, - "criteria": { - "has_eclogite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:eclogite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:eclogite_pressure_plate" - } - } - }, - "requirements": [ - [ - "has_eclogite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/pressure_plate/gneiss_pressure_plate.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/pressure_plate/gneiss_pressure_plate.json deleted file mode 100644 index de524760..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/pressure_plate/gneiss_pressure_plate.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/pressure_plate/gneiss_pressure_plate" - ] - }, - "criteria": { - "has_gneiss": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:gneiss" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:gneiss_pressure_plate" - } - } - }, - "requirements": [ - [ - "has_gneiss", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/pressure_plate/marble_pressure_plate.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/pressure_plate/marble_pressure_plate.json deleted file mode 100644 index 06b03871..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/pressure_plate/marble_pressure_plate.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/button/marble_pressure_plate" - ] - }, - "criteria": { - "has_marble": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:marble" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:marble_pressure_plate" - } - } - }, - "requirements": [ - [ - "has_marble", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/pressure_plate/schist_pressure_plate.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/pressure_plate/schist_pressure_plate.json deleted file mode 100644 index 1995fe86..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/metamorphic_rocks/crafting/pressure_plate/schist_pressure_plate.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/metamorphic_rocks/crafting/pressure_plate/schist_pressure_plate" - ] - }, - "criteria": { - "has_schist": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:schist" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:schist_pressure_plate" - } - } - }, - "requirements": [ - [ - "has_schist", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/button/argillite_button.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/button/argillite_button.json deleted file mode 100644 index 68bfee36..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/button/argillite_button.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/button/argillite_button" - ] - }, - "criteria": { - "has_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_button" - } - } - }, - "requirements": [ - [ - "has_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/button/chalk_button.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/button/chalk_button.json deleted file mode 100644 index baef780b..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/button/chalk_button.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/button/chalk_button" - ] - }, - "criteria": { - "has_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_button" - } - } - }, - "requirements": [ - [ - "has_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/button/jaspillite_button.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/button/jaspillite_button.json deleted file mode 100644 index ced01243..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/button/jaspillite_button.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/button/jaspillite_button" - ] - }, - "criteria": { - "has_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_button" - } - } - }, - "requirements": [ - [ - "has_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/button/limestone_button.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/button/limestone_button.json deleted file mode 100644 index b4fd03f7..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/button/limestone_button.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/button/limestone_button" - ] - }, - "criteria": { - "has_limestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:limestone_button" - } - } - }, - "requirements": [ - [ - "has_limestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/button/shale_button.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/button/shale_button.json deleted file mode 100644 index 2e15cc01..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/button/shale_button.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/button/shale_button" - ] - }, - "criteria": { - "has_shale": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:shale_button" - } - } - }, - "requirements": [ - [ - "has_shale", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/pressure_plate/argillite_pressure_plate.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/pressure_plate/argillite_pressure_plate.json deleted file mode 100644 index 90bce805..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/pressure_plate/argillite_pressure_plate.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/button/argillite_pressure_plate" - ] - }, - "criteria": { - "has_argillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:argillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:argillite_pressure_plate" - } - } - }, - "requirements": [ - [ - "has_argillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/pressure_plate/chalk_pressure_plate.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/pressure_plate/chalk_pressure_plate.json deleted file mode 100644 index cbdfb3cb..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/pressure_plate/chalk_pressure_plate.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/button/chalk_pressure_plate" - ] - }, - "criteria": { - "has_chalk": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:chalk" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:chalk_pressure_plate" - } - } - }, - "requirements": [ - [ - "has_chalk", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/pressure_plate/jaspillite_pressure_plate.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/pressure_plate/jaspillite_pressure_plate.json deleted file mode 100644 index a8a0ec1c..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/pressure_plate/jaspillite_pressure_plate.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/button/jaspillite_pressure_plate" - ] - }, - "criteria": { - "has_jaspillite": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:jaspillite" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:jaspillite_pressure_plate" - } - } - }, - "requirements": [ - [ - "has_jaspillite", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/pressure_plate/limestone_pressure_plate.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/pressure_plate/limestone_pressure_plate.json deleted file mode 100644 index 0d83be8d..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/pressure_plate/limestone_pressure_plate.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/pressure_plate/limestone_pressure_plate" - ] - }, - "criteria": { - "has_limestone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:limestone" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:limestone_pressure_plate" - } - } - }, - "requirements": [ - [ - "has_limestone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/pressure_plate/shale_pressure_plate.json b/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/pressure_plate/shale_pressure_plate.json deleted file mode 100644 index bfef8687..00000000 --- a/src/test/resources/data/strata/advancements/recipes/redstone/rock_types/sedimentary_rocks/crafting/pressure_plate/shale_pressure_plate.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "strata:rock_types/sedimentary_rocks/crafting/pressure_plate/shale_pressure_plate" - ] - }, - "criteria": { - "has_shale": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "item": "strata:shale" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "strata:shale_pressure_plate" - } - } - }, - "requirements": [ - [ - "has_shale", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/aa.json b/src/test/resources/data/strata/loot_tables/blocks/aa.json deleted file mode 100644 index 9c2e58ff..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/aa.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:aa" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:aa_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/aa_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/aa_brick_slab.json deleted file mode 100644 index dbb92a04..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/aa_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:aa_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:aa_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/aa_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/aa_brick_stairs.json deleted file mode 100644 index fa0761f8..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/aa_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:aa_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:aa_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/aa_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/aa_brick_wall.json deleted file mode 100644 index 63f26c90..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/aa_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:aa_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:aa_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/aa_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/aa_bricks.json deleted file mode 100644 index 62ebe950..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/aa_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:aa_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:aa_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/aa_button.json b/src/test/resources/data/strata/loot_tables/blocks/aa_button.json deleted file mode 100644 index d22439f6..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/aa_button.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:aa_button" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/aa_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/aa_cobblestone.json deleted file mode 100644 index ef5f93dd..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/aa_cobblestone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:aa_cobblestone" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/aa_cobblestone_slab.json b/src/test/resources/data/strata/loot_tables/blocks/aa_cobblestone_slab.json deleted file mode 100644 index 5099f94f..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/aa_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:aa_cobblestone_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:aa_cobblestone_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/aa_cobblestone_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/aa_cobblestone_stairs.json deleted file mode 100644 index 205e38c9..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/aa_cobblestone_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:aa_cobblestone_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:aa_cobblestone_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/aa_cobblestone_wall.json b/src/test/resources/data/strata/loot_tables/blocks/aa_cobblestone_wall.json deleted file mode 100644 index 08d60e99..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/aa_cobblestone_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:aa_cobblestone_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:aa_cobblestone_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/aa_pressure_plate.json b/src/test/resources/data/strata/loot_tables/blocks/aa_pressure_plate.json deleted file mode 100644 index 505a4477..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/aa_pressure_plate.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:aa_pressure_plate" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/aa_slab.json b/src/test/resources/data/strata/loot_tables/blocks/aa_slab.json deleted file mode 100644 index 0be84416..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/aa_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:aa_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:aa_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/aa_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/aa_stairs.json deleted file mode 100644 index 533f6f8a..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/aa_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:aa_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:aa_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/aa_wall.json b/src/test/resources/data/strata/loot_tables/blocks/aa_wall.json deleted file mode 100644 index e104bcbf..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/aa_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:aa_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:aa_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/adakite.json b/src/test/resources/data/strata/loot_tables/blocks/adakite.json deleted file mode 100644 index 6e58dc98..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/adakite.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:adakite" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:adakite_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/adakite_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/adakite_brick_slab.json deleted file mode 100644 index 07bd519a..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/adakite_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:adakite_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:adakite_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/adakite_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/adakite_brick_stairs.json deleted file mode 100644 index 524655d0..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/adakite_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:adakite_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:adakite_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/adakite_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/adakite_brick_wall.json deleted file mode 100644 index afa091c4..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/adakite_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:adakite_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:adakite_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/adakite_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/adakite_bricks.json deleted file mode 100644 index dd41bc5a..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/adakite_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:adakite_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:adakite_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/adakite_button.json b/src/test/resources/data/strata/loot_tables/blocks/adakite_button.json deleted file mode 100644 index d35dd056..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/adakite_button.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:adakite_button" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/adakite_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/adakite_cobblestone.json deleted file mode 100644 index e6d6d7a2..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/adakite_cobblestone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:adakite_cobblestone" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/adakite_cobblestone_slab.json b/src/test/resources/data/strata/loot_tables/blocks/adakite_cobblestone_slab.json deleted file mode 100644 index c0209490..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/adakite_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:adakite_cobblestone_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:adakite_cobblestone_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/adakite_cobblestone_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/adakite_cobblestone_stairs.json deleted file mode 100644 index 96277b5d..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/adakite_cobblestone_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:adakite_cobblestone_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:adakite_cobblestone_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/adakite_cobblestone_wall.json b/src/test/resources/data/strata/loot_tables/blocks/adakite_cobblestone_wall.json deleted file mode 100644 index 5628935e..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/adakite_cobblestone_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:adakite_cobblestone_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:adakite_cobblestone_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/adakite_pressure_plate.json b/src/test/resources/data/strata/loot_tables/blocks/adakite_pressure_plate.json deleted file mode 100644 index c1deaeb6..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/adakite_pressure_plate.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:adakite_pressure_plate" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/adakite_slab.json b/src/test/resources/data/strata/loot_tables/blocks/adakite_slab.json deleted file mode 100644 index 0b06933a..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/adakite_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:adakite_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:adakite_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/adakite_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/adakite_stairs.json deleted file mode 100644 index 8dfcd56f..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/adakite_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:adakite_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:adakite_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/adakite_wall.json b/src/test/resources/data/strata/loot_tables/blocks/adakite_wall.json deleted file mode 100644 index 064c6a27..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/adakite_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:adakite_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:adakite_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/amphibolite.json b/src/test/resources/data/strata/loot_tables/blocks/amphibolite.json deleted file mode 100644 index 2f7bd2a5..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/amphibolite.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:amphibolite" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:amphibolite" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/amphibolite_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/amphibolite_brick_slab.json deleted file mode 100644 index 8152e314..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/amphibolite_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:amphibolite_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:amphibolite_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/amphibolite_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/amphibolite_brick_stairs.json deleted file mode 100644 index e9e13050..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/amphibolite_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:amphibolite_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:amphibolite_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/amphibolite_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/amphibolite_brick_wall.json deleted file mode 100644 index f19ea1b3..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/amphibolite_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:amphibolite_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:amphibolite_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/amphibolite_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/amphibolite_bricks.json deleted file mode 100644 index 49214eaf..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/amphibolite_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:amphibolite_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:amphibolite_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/amphibolite_button.json b/src/test/resources/data/strata/loot_tables/blocks/amphibolite_button.json deleted file mode 100644 index f32be252..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/amphibolite_button.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:amphibolite_button" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/amphibolite_pressure_plate.json b/src/test/resources/data/strata/loot_tables/blocks/amphibolite_pressure_plate.json deleted file mode 100644 index 9889c506..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/amphibolite_pressure_plate.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:amphibolite_pressure_plate" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/amphibolite_slab.json b/src/test/resources/data/strata/loot_tables/blocks/amphibolite_slab.json deleted file mode 100644 index 85c866e7..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/amphibolite_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:amphibolite_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:amphibolite_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/amphibolite_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/amphibolite_stairs.json deleted file mode 100644 index ae87e3a7..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/amphibolite_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:amphibolite_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:amphibolite_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/amphibolite_wall.json b/src/test/resources/data/strata/loot_tables/blocks/amphibolite_wall.json deleted file mode 100644 index 1bbfd0e1..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/amphibolite_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:amphibolite_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:amphibolite_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/anorthosite.json b/src/test/resources/data/strata/loot_tables/blocks/anorthosite.json deleted file mode 100644 index d34ca675..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/anorthosite.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:anorthosite" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:anorthosite_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/anorthosite_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/anorthosite_cobblestone.json deleted file mode 100644 index ccc7e866..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/anorthosite_cobblestone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:anorthosite_cobblestone" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/aplite.json b/src/test/resources/data/strata/loot_tables/blocks/aplite.json deleted file mode 100644 index 05bfdcfc..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/aplite.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:aplite" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:aplite_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/aplite_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/aplite_cobblestone.json deleted file mode 100644 index d6057808..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/aplite_cobblestone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:aplite_cobblestone" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/argillite.json b/src/test/resources/data/strata/loot_tables/blocks/argillite.json deleted file mode 100644 index 860cd2b5..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/argillite.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:argillite" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:argillite_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/argillite_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/argillite_brick_slab.json deleted file mode 100644 index 471e9f1a..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/argillite_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:argillite_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:argillite_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/argillite_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/argillite_brick_stairs.json deleted file mode 100644 index 908632a7..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/argillite_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:argillite_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:argillite_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/argillite_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/argillite_brick_wall.json deleted file mode 100644 index e8456d9e..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/argillite_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:argillite_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:argillite_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/argillite_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/argillite_bricks.json deleted file mode 100644 index 05e3025d..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/argillite_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:argillite_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:argillite_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/argillite_button.json b/src/test/resources/data/strata/loot_tables/blocks/argillite_button.json deleted file mode 100644 index 6a6192ca..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/argillite_button.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:argillite_button" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/argillite_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/argillite_cobblestone.json deleted file mode 100644 index b28c779c..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/argillite_cobblestone.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:argillite_cobblestone" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:argillite_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/argillite_cobblestone_slab.json b/src/test/resources/data/strata/loot_tables/blocks/argillite_cobblestone_slab.json deleted file mode 100644 index 1c27c316..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/argillite_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:argillite_cobblestone_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:argillite_cobblestone_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/argillite_cobblestone_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/argillite_cobblestone_stairs.json deleted file mode 100644 index 22bb47a3..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/argillite_cobblestone_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:argillite_cobblestone_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:argillite_cobblestone_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/argillite_cobblestone_wall.json b/src/test/resources/data/strata/loot_tables/blocks/argillite_cobblestone_wall.json deleted file mode 100644 index c62163d2..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/argillite_cobblestone_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:argillite_cobblestone_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:argillite_cobblestone_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/argillite_pressure_plate.json b/src/test/resources/data/strata/loot_tables/blocks/argillite_pressure_plate.json deleted file mode 100644 index 8f1a7d06..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/argillite_pressure_plate.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:argillite_pressure_plate" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/argillite_slab.json b/src/test/resources/data/strata/loot_tables/blocks/argillite_slab.json deleted file mode 100644 index 85ea5dab..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/argillite_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:argillite_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:argillite_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/argillite_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/argillite_stairs.json deleted file mode 100644 index 1980dc4d..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/argillite_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:argillite_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:argillite_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/argillite_wall.json b/src/test/resources/data/strata/loot_tables/blocks/argillite_wall.json deleted file mode 100644 index 3637d739..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/argillite_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:argillite_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:argillite_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/basalt.json b/src/test/resources/data/strata/loot_tables/blocks/basalt.json deleted file mode 100644 index 0773d9c3..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/basalt.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:basalt" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:basalt" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/basalt_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/basalt_brick_slab.json deleted file mode 100644 index 5dfce769..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/basalt_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:basalt_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:basalt_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/basalt_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/basalt_brick_stairs.json deleted file mode 100644 index 3f6b2d19..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/basalt_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:basalt_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:basalt_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/basalt_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/basalt_brick_wall.json deleted file mode 100644 index dec65f5f..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/basalt_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:basalt_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:basalt_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/basalt_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/basalt_bricks.json deleted file mode 100644 index 4dbd9baf..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/basalt_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:basalt_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:basalt_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/basalt_button.json b/src/test/resources/data/strata/loot_tables/blocks/basalt_button.json deleted file mode 100644 index 8cf3419e..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/basalt_button.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:basalt_button" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/basalt_pressure_plate.json b/src/test/resources/data/strata/loot_tables/blocks/basalt_pressure_plate.json deleted file mode 100644 index dfcbd30f..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/basalt_pressure_plate.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:basalt_pressure_plate" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/basalt_slab.json b/src/test/resources/data/strata/loot_tables/blocks/basalt_slab.json deleted file mode 100644 index 25920f01..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/basalt_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:basalt_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:basalt_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/basalt_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/basalt_stairs.json deleted file mode 100644 index f96a5573..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/basalt_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:basalt_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:basalt_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/basalt_wall.json b/src/test/resources/data/strata/loot_tables/blocks/basalt_wall.json deleted file mode 100644 index bed31d7b..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/basalt_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:basalt_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:basalt_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/basanite.json b/src/test/resources/data/strata/loot_tables/blocks/basanite.json deleted file mode 100644 index 2ca775d3..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/basanite.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:basanite" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:basanite_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/basanite_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/basanite_cobblestone.json deleted file mode 100644 index 910db592..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/basanite_cobblestone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:basanite_cobblestone" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/blairmorite.json b/src/test/resources/data/strata/loot_tables/blocks/blairmorite.json deleted file mode 100644 index f16e4ccc..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/blairmorite.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:blairmorite" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:blairmorite_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/blairmorite_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/blairmorite_cobblestone.json deleted file mode 100644 index 154a4286..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/blairmorite_cobblestone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:blairmorite_cobblestone" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chalk.json b/src/test/resources/data/strata/loot_tables/blocks/chalk.json deleted file mode 100644 index 7c377841..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chalk.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:chalk" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:chalk_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chalk_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/chalk_brick_slab.json deleted file mode 100644 index fe75e463..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chalk_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:chalk_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:chalk_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chalk_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/chalk_brick_stairs.json deleted file mode 100644 index c88e1778..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chalk_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:chalk_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:chalk_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chalk_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/chalk_brick_wall.json deleted file mode 100644 index ab764be7..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chalk_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:chalk_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:chalk_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chalk_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/chalk_bricks.json deleted file mode 100644 index 9c18cf4c..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chalk_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:chalk_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:chalk_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chalk_button.json b/src/test/resources/data/strata/loot_tables/blocks/chalk_button.json deleted file mode 100644 index 7329c797..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chalk_button.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:chalk_button" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chalk_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/chalk_cobblestone.json deleted file mode 100644 index e94218fd..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chalk_cobblestone.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:chalk_cobblestone" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:chalk_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chalk_cobblestone_slab.json b/src/test/resources/data/strata/loot_tables/blocks/chalk_cobblestone_slab.json deleted file mode 100644 index 72c1945d..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chalk_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:chalk_cobblestone_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:chalk_cobblestone_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chalk_cobblestone_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/chalk_cobblestone_stairs.json deleted file mode 100644 index 8b109ace..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chalk_cobblestone_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:chalk_cobblestone_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:chalk_cobblestone_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chalk_cobblestone_wall.json b/src/test/resources/data/strata/loot_tables/blocks/chalk_cobblestone_wall.json deleted file mode 100644 index 8290a85a..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chalk_cobblestone_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:chalk_cobblestone_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:chalk_cobblestone_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chalk_pressure_plate.json b/src/test/resources/data/strata/loot_tables/blocks/chalk_pressure_plate.json deleted file mode 100644 index c41b693b..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chalk_pressure_plate.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:chalk_pressure_plate" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chalk_slab.json b/src/test/resources/data/strata/loot_tables/blocks/chalk_slab.json deleted file mode 100644 index 65a3ff95..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chalk_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:chalk_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:chalk_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chalk_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/chalk_stairs.json deleted file mode 100644 index 5f2762f3..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chalk_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:chalk_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:chalk_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chalk_wall.json b/src/test/resources/data/strata/loot_tables/blocks/chalk_wall.json deleted file mode 100644 index f078fb25..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chalk_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:chalk_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:chalk_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chiseled_aa_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/chiseled_aa_bricks.json deleted file mode 100644 index 931d2270..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chiseled_aa_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:chiseled_aa_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:chiseled_aa_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chiseled_adakite_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/chiseled_adakite_bricks.json deleted file mode 100644 index 7868eb15..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chiseled_adakite_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:chiseled_adakite_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:chiseled_adakite_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chiseled_amphibolite_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/chiseled_amphibolite_bricks.json deleted file mode 100644 index 3239bd70..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chiseled_amphibolite_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:chiseled_amphibolite_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:chiseled_amphibolite_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chiseled_argillite_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/chiseled_argillite_bricks.json deleted file mode 100644 index cade7cf0..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chiseled_argillite_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:chiseled_argillite_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:chiseled_argillite_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chiseled_basalt_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/chiseled_basalt_bricks.json deleted file mode 100644 index ba5a9999..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chiseled_basalt_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:chiseled_basalt_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:chiseled_basalt_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chiseled_chalk_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/chiseled_chalk_bricks.json deleted file mode 100644 index 31aaaee7..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chiseled_chalk_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:chiseled_chalk_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:chiseled_chalk_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chiseled_eclogite_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/chiseled_eclogite_bricks.json deleted file mode 100644 index d202a722..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chiseled_eclogite_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:chiseled_eclogite_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:chiseled_eclogite_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chiseled_gabbro_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/chiseled_gabbro_bricks.json deleted file mode 100644 index c999463e..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chiseled_gabbro_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:chiseled_gabbro_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:chiseled_gabbro_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chiseled_gneiss_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/chiseled_gneiss_bricks.json deleted file mode 100644 index b238773b..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chiseled_gneiss_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:chiseled_gneiss_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:chiseled_gneiss_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chiseled_jaspillite_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/chiseled_jaspillite_bricks.json deleted file mode 100644 index ac91aecb..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chiseled_jaspillite_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:chiseled_jaspillite_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:chiseled_jaspillite_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chiseled_limestone_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/chiseled_limestone_bricks.json deleted file mode 100644 index 3d7dead4..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chiseled_limestone_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:chiseled_limestone_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:chiseled_limestone_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chiseled_marble_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/chiseled_marble_bricks.json deleted file mode 100644 index 48b2dc44..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chiseled_marble_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:chiseled_marble_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:chiseled_marble_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chiseled_pahoehoe_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/chiseled_pahoehoe_bricks.json deleted file mode 100644 index 0e453c7d..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chiseled_pahoehoe_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:chiseled_pahoehoe_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:chiseled_pahoehoe_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chiseled_schist_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/chiseled_schist_bricks.json deleted file mode 100644 index 61b01720..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chiseled_schist_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:chiseled_schist_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:chiseled_schist_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/chiseled_shale_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/chiseled_shale_bricks.json deleted file mode 100644 index f8da03f4..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/chiseled_shale_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:chiseled_shale_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:chiseled_shale_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/cracked_aa_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/cracked_aa_bricks.json deleted file mode 100644 index 2c37e1f7..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/cracked_aa_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:cracked_aa_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:cracked_aa_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/cracked_adakite_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/cracked_adakite_bricks.json deleted file mode 100644 index ce65fc81..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/cracked_adakite_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:cracked_adakite_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:cracked_adakite_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/cracked_amphibolite_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/cracked_amphibolite_bricks.json deleted file mode 100644 index b1a4a1cc..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/cracked_amphibolite_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:cracked_amphibolite_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:cracked_amphibolite_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/cracked_argillite_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/cracked_argillite_bricks.json deleted file mode 100644 index 48925e2c..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/cracked_argillite_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:cracked_argillite_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:cracked_argillite_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/cracked_basalt_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/cracked_basalt_bricks.json deleted file mode 100644 index 0d257406..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/cracked_basalt_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:cracked_basalt_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:cracked_basalt_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/cracked_chalk_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/cracked_chalk_bricks.json deleted file mode 100644 index 324a19ca..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/cracked_chalk_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:cracked_chalk_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:cracked_chalk_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/cracked_eclogite_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/cracked_eclogite_bricks.json deleted file mode 100644 index 2633548c..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/cracked_eclogite_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:cracked_eclogite_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:cracked_eclogite_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/cracked_gabbro_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/cracked_gabbro_bricks.json deleted file mode 100644 index 627cc167..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/cracked_gabbro_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:cracked_gabbro_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:cracked_gabbro_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/cracked_gneiss_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/cracked_gneiss_bricks.json deleted file mode 100644 index 0979d789..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/cracked_gneiss_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:cracked_gneiss_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:cracked_gneiss_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/cracked_jaspillite_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/cracked_jaspillite_bricks.json deleted file mode 100644 index 6cf38d69..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/cracked_jaspillite_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:cracked_jaspillite_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:cracked_jaspillite_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/cracked_limestone_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/cracked_limestone_bricks.json deleted file mode 100644 index 706ab1b0..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/cracked_limestone_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:cracked_limestone_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:cracked_limestone_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/cracked_marble_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/cracked_marble_bricks.json deleted file mode 100644 index 3aa5ff72..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/cracked_marble_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:cracked_marble_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:cracked_marble_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/cracked_pahoehoe_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/cracked_pahoehoe_bricks.json deleted file mode 100644 index 452ee90a..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/cracked_pahoehoe_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:cracked_pahoehoe_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:cracked_pahoehoe_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/cracked_schist_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/cracked_schist_bricks.json deleted file mode 100644 index 666ed89b..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/cracked_schist_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:cracked_schist_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:cracked_schist_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/cracked_shale_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/cracked_shale_bricks.json deleted file mode 100644 index 70c30fe5..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/cracked_shale_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:cracked_shale_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:cracked_shale_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/dacite.json b/src/test/resources/data/strata/loot_tables/blocks/dacite.json deleted file mode 100644 index 3f32b575..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/dacite.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:dacite" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:dacite_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/dacite_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/dacite_cobblestone.json deleted file mode 100644 index b5639ebe..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/dacite_cobblestone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:dacite_cobblestone" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/eclogite.json b/src/test/resources/data/strata/loot_tables/blocks/eclogite.json deleted file mode 100644 index c3b8124e..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/eclogite.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:eclogite" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:eclogite_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/eclogite_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/eclogite_brick_slab.json deleted file mode 100644 index 2f9a2882..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/eclogite_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:eclogite_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:eclogite_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/eclogite_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/eclogite_brick_stairs.json deleted file mode 100644 index dcde8e89..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/eclogite_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:eclogite_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:eclogite_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/eclogite_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/eclogite_brick_wall.json deleted file mode 100644 index ad7385d0..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/eclogite_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:eclogite_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:eclogite_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/eclogite_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/eclogite_bricks.json deleted file mode 100644 index fb5a4463..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/eclogite_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:eclogite_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:eclogite_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/eclogite_button.json b/src/test/resources/data/strata/loot_tables/blocks/eclogite_button.json deleted file mode 100644 index 1c9eb802..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/eclogite_button.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:eclogite_button" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/eclogite_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/eclogite_cobblestone.json deleted file mode 100644 index ba167ff5..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/eclogite_cobblestone.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:eclogite_cobblestone" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:eclogite_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/eclogite_cobblestone_slab.json b/src/test/resources/data/strata/loot_tables/blocks/eclogite_cobblestone_slab.json deleted file mode 100644 index 4a243934..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/eclogite_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:eclogite_cobblestone_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:eclogite_cobblestone_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/eclogite_cobblestone_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/eclogite_cobblestone_stairs.json deleted file mode 100644 index 8b648b4d..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/eclogite_cobblestone_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:eclogite_cobblestone_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:eclogite_cobblestone_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/eclogite_cobblestone_wall.json b/src/test/resources/data/strata/loot_tables/blocks/eclogite_cobblestone_wall.json deleted file mode 100644 index 01cf7201..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/eclogite_cobblestone_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:eclogite_cobblestone_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:eclogite_cobblestone_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/eclogite_pressure_plate.json b/src/test/resources/data/strata/loot_tables/blocks/eclogite_pressure_plate.json deleted file mode 100644 index 4b4cf760..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/eclogite_pressure_plate.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:eclogite_pressure_plate" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/eclogite_slab.json b/src/test/resources/data/strata/loot_tables/blocks/eclogite_slab.json deleted file mode 100644 index 1f75f1f8..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/eclogite_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:eclogite_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:eclogite_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/eclogite_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/eclogite_stairs.json deleted file mode 100644 index 5ecb090d..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/eclogite_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:eclogite_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:eclogite_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/eclogite_wall.json b/src/test/resources/data/strata/loot_tables/blocks/eclogite_wall.json deleted file mode 100644 index 51696705..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/eclogite_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:eclogite_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:eclogite_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/foidolite.json b/src/test/resources/data/strata/loot_tables/blocks/foidolite.json deleted file mode 100644 index 114ec7ac..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/foidolite.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:foidolite" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:foidolite_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/foidolite_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/foidolite_cobblestone.json deleted file mode 100644 index 23595527..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/foidolite_cobblestone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:foidolite_cobblestone" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/gabbro.json b/src/test/resources/data/strata/loot_tables/blocks/gabbro.json deleted file mode 100644 index c7ad2f71..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/gabbro.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:gabbro" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:gabbro" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/gabbro_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/gabbro_brick_slab.json deleted file mode 100644 index b2e540c2..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/gabbro_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:gabbro_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:gabbro_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/gabbro_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/gabbro_brick_stairs.json deleted file mode 100644 index 2a879a72..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/gabbro_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:gabbro_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:gabbro_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/gabbro_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/gabbro_brick_wall.json deleted file mode 100644 index 86203ee4..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/gabbro_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:gabbro_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:gabbro_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/gabbro_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/gabbro_bricks.json deleted file mode 100644 index 6a5c71d1..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/gabbro_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:gabbro_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:gabbro_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/gabbro_button.json b/src/test/resources/data/strata/loot_tables/blocks/gabbro_button.json deleted file mode 100644 index 2d928ae6..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/gabbro_button.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:gabbro_button" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/gabbro_pressure_plate.json b/src/test/resources/data/strata/loot_tables/blocks/gabbro_pressure_plate.json deleted file mode 100644 index ee28ef2f..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/gabbro_pressure_plate.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:gabbro_pressure_plate" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/gabbro_slab.json b/src/test/resources/data/strata/loot_tables/blocks/gabbro_slab.json deleted file mode 100644 index 44d5ee73..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/gabbro_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:gabbro_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:gabbro_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/gabbro_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/gabbro_stairs.json deleted file mode 100644 index 36c00f0f..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/gabbro_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:gabbro_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:gabbro_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/gabbro_wall.json b/src/test/resources/data/strata/loot_tables/blocks/gabbro_wall.json deleted file mode 100644 index 8574513c..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/gabbro_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:gabbro_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:gabbro_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/gneiss.json b/src/test/resources/data/strata/loot_tables/blocks/gneiss.json deleted file mode 100644 index 4381afc7..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/gneiss.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:gneiss" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:gneiss" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/gneiss_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/gneiss_brick_slab.json deleted file mode 100644 index de7c37c0..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/gneiss_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:gneiss_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:gneiss_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/gneiss_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/gneiss_brick_stairs.json deleted file mode 100644 index c5bb9154..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/gneiss_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:gneiss_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:gneiss_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/gneiss_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/gneiss_brick_wall.json deleted file mode 100644 index 6b771842..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/gneiss_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:gneiss_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:gneiss_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/gneiss_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/gneiss_bricks.json deleted file mode 100644 index b247c75b..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/gneiss_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:gneiss_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:gneiss_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/gneiss_button.json b/src/test/resources/data/strata/loot_tables/blocks/gneiss_button.json deleted file mode 100644 index b19aa6b3..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/gneiss_button.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:gneiss_button" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/gneiss_pressure_plate.json b/src/test/resources/data/strata/loot_tables/blocks/gneiss_pressure_plate.json deleted file mode 100644 index fba8e2c7..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/gneiss_pressure_plate.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:gneiss_pressure_plate" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/gneiss_slab.json b/src/test/resources/data/strata/loot_tables/blocks/gneiss_slab.json deleted file mode 100644 index b1994764..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/gneiss_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:gneiss_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:gneiss_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/gneiss_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/gneiss_stairs.json deleted file mode 100644 index bd48e762..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/gneiss_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:gneiss_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:gneiss_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/gneiss_wall.json b/src/test/resources/data/strata/loot_tables/blocks/gneiss_wall.json deleted file mode 100644 index f2e03227..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/gneiss_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:gneiss_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:gneiss_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/jaspillite.json b/src/test/resources/data/strata/loot_tables/blocks/jaspillite.json deleted file mode 100644 index deca4118..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/jaspillite.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:jaspillite" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:jaspillite_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/jaspillite_brick_slab.json deleted file mode 100644 index 3a0f8392..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:jaspillite_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:jaspillite_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/jaspillite_brick_stairs.json deleted file mode 100644 index 6daaa710..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:jaspillite_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:jaspillite_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/jaspillite_brick_wall.json deleted file mode 100644 index 192c3e35..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:jaspillite_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:jaspillite_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/jaspillite_bricks.json deleted file mode 100644 index 954322a7..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:jaspillite_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:jaspillite_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_button.json b/src/test/resources/data/strata/loot_tables/blocks/jaspillite_button.json deleted file mode 100644 index 5ee18025..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_button.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:jaspillite_button" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/jaspillite_cobblestone.json deleted file mode 100644 index d1d7dc45..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_cobblestone.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:jaspillite_cobblestone" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:jaspillite_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_cobblestone_slab.json b/src/test/resources/data/strata/loot_tables/blocks/jaspillite_cobblestone_slab.json deleted file mode 100644 index f0cc5015..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:jaspillite_cobblestone_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:jaspillite_cobblestone_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_cobblestone_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/jaspillite_cobblestone_stairs.json deleted file mode 100644 index c9206b3b..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_cobblestone_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:jaspillite_cobblestone_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:jaspillite_cobblestone_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_cobblestone_wall.json b/src/test/resources/data/strata/loot_tables/blocks/jaspillite_cobblestone_wall.json deleted file mode 100644 index 79f47811..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_cobblestone_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:jaspillite_cobblestone_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:jaspillite_cobblestone_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_pressure_plate.json b/src/test/resources/data/strata/loot_tables/blocks/jaspillite_pressure_plate.json deleted file mode 100644 index d7018b55..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_pressure_plate.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:jaspillite_pressure_plate" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_slab.json b/src/test/resources/data/strata/loot_tables/blocks/jaspillite_slab.json deleted file mode 100644 index 14930522..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:jaspillite_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:jaspillite_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/jaspillite_stairs.json deleted file mode 100644 index d8a7e3e6..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:jaspillite_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:jaspillite_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_wall.json b/src/test/resources/data/strata/loot_tables/blocks/jaspillite_wall.json deleted file mode 100644 index c8a1ca4f..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/jaspillite_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:jaspillite_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:jaspillite_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/limestone.json b/src/test/resources/data/strata/loot_tables/blocks/limestone.json deleted file mode 100644 index add269a6..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/limestone.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:limestone" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:limestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/limestone_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/limestone_brick_slab.json deleted file mode 100644 index a98483c2..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/limestone_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:limestone_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:limestone_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/limestone_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/limestone_brick_stairs.json deleted file mode 100644 index cc2b3eaf..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/limestone_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:limestone_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:limestone_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/limestone_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/limestone_brick_wall.json deleted file mode 100644 index 578ea2c8..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/limestone_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:limestone_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:limestone_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/limestone_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/limestone_bricks.json deleted file mode 100644 index 0aaca20c..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/limestone_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:limestone_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:limestone_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/limestone_button.json b/src/test/resources/data/strata/loot_tables/blocks/limestone_button.json deleted file mode 100644 index 1b6affb7..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/limestone_button.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:limestone_button" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/limestone_pressure_plate.json b/src/test/resources/data/strata/loot_tables/blocks/limestone_pressure_plate.json deleted file mode 100644 index 2a082669..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/limestone_pressure_plate.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:limestone_pressure_plate" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/limestone_slab.json b/src/test/resources/data/strata/loot_tables/blocks/limestone_slab.json deleted file mode 100644 index 47026e38..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/limestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:limestone_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:limestone_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/limestone_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/limestone_stairs.json deleted file mode 100644 index bc5d6bca..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/limestone_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:limestone_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:limestone_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/limestone_wall.json b/src/test/resources/data/strata/loot_tables/blocks/limestone_wall.json deleted file mode 100644 index af18f45e..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/limestone_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:limestone_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:limestone_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/marble.json b/src/test/resources/data/strata/loot_tables/blocks/marble.json deleted file mode 100644 index fb73f594..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/marble.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:marble" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:marble_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/marble_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/marble_brick_slab.json deleted file mode 100644 index f558ca39..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/marble_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:marble_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:marble_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/marble_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/marble_brick_stairs.json deleted file mode 100644 index 56b121a9..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/marble_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:marble_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:marble_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/marble_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/marble_brick_wall.json deleted file mode 100644 index 9ba8187e..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/marble_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:marble_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:marble_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/marble_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/marble_bricks.json deleted file mode 100644 index 37e78625..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/marble_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:marble_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:marble_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/marble_button.json b/src/test/resources/data/strata/loot_tables/blocks/marble_button.json deleted file mode 100644 index 45f34121..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/marble_button.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:marble_button" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/marble_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/marble_cobblestone.json deleted file mode 100644 index 923a6b1c..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/marble_cobblestone.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:marble_cobblestone" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:marble_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/marble_cobblestone_slab.json b/src/test/resources/data/strata/loot_tables/blocks/marble_cobblestone_slab.json deleted file mode 100644 index d77cb243..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/marble_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:marble_cobblestone_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:marble_cobblestone_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/marble_cobblestone_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/marble_cobblestone_stairs.json deleted file mode 100644 index c9b0409b..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/marble_cobblestone_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:marble_cobblestone_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:marble_cobblestone_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/marble_cobblestone_wall.json b/src/test/resources/data/strata/loot_tables/blocks/marble_cobblestone_wall.json deleted file mode 100644 index b8043161..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/marble_cobblestone_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:marble_cobblestone_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:marble_cobblestone_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/marble_pressure_plate.json b/src/test/resources/data/strata/loot_tables/blocks/marble_pressure_plate.json deleted file mode 100644 index bc94b06c..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/marble_pressure_plate.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:marble_pressure_plate" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/marble_slab.json b/src/test/resources/data/strata/loot_tables/blocks/marble_slab.json deleted file mode 100644 index 705e8d03..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/marble_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:marble_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:marble_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/marble_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/marble_stairs.json deleted file mode 100644 index 2aba6527..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/marble_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:marble_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:marble_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/marble_wall.json b/src/test/resources/data/strata/loot_tables/blocks/marble_wall.json deleted file mode 100644 index 3505703b..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/marble_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:marble_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:marble_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_aa_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_aa_brick_slab.json deleted file mode 100644 index 2b4b2bec..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_aa_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:mossy_aa_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:mossy_aa_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_aa_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_aa_brick_stairs.json deleted file mode 100644 index 7aed89d5..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_aa_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_aa_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_aa_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_aa_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_aa_brick_wall.json deleted file mode 100644 index 395c3c11..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_aa_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_aa_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_aa_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_aa_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_aa_bricks.json deleted file mode 100644 index 1809a537..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_aa_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_aa_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_aa_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_aa_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_aa_cobblestone.json deleted file mode 100644 index 3110ccd0..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_aa_cobblestone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:mossy_aa_cobblestone" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_aa_cobblestone_slab.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_aa_cobblestone_slab.json deleted file mode 100644 index 60e75b4c..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_aa_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:mossy_aa_cobblestone_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:mossy_aa_cobblestone_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_aa_cobblestone_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_aa_cobblestone_stairs.json deleted file mode 100644 index 11bdf911..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_aa_cobblestone_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_aa_cobblestone_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_aa_cobblestone_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_aa_cobblestone_wall.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_aa_cobblestone_wall.json deleted file mode 100644 index 2534a655..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_aa_cobblestone_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_aa_cobblestone_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_aa_cobblestone_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_adakite_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_adakite_brick_slab.json deleted file mode 100644 index 60a75db7..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_adakite_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:mossy_adakite_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:mossy_adakite_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_adakite_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_adakite_brick_stairs.json deleted file mode 100644 index 83e06503..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_adakite_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_adakite_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_adakite_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_adakite_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_adakite_brick_wall.json deleted file mode 100644 index 28bf1342..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_adakite_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_adakite_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_adakite_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_adakite_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_adakite_bricks.json deleted file mode 100644 index 2ccdf2a4..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_adakite_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_adakite_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_adakite_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_adakite_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_adakite_cobblestone.json deleted file mode 100644 index cd561395..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_adakite_cobblestone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:mossy_adakite_cobblestone" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_adakite_cobblestone_slab.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_adakite_cobblestone_slab.json deleted file mode 100644 index 6b8f0401..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_adakite_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:mossy_adakite_cobblestone_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:mossy_adakite_cobblestone_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_adakite_cobblestone_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_adakite_cobblestone_stairs.json deleted file mode 100644 index 23d65288..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_adakite_cobblestone_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_adakite_cobblestone_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_adakite_cobblestone_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_adakite_cobblestone_wall.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_adakite_cobblestone_wall.json deleted file mode 100644 index 1b2a8ac9..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_adakite_cobblestone_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_adakite_cobblestone_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_adakite_cobblestone_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_amphibolite_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_amphibolite_brick_slab.json deleted file mode 100644 index 4be0a511..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_amphibolite_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:mossy_amphibolite_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:mossy_amphibolite_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_amphibolite_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_amphibolite_brick_stairs.json deleted file mode 100644 index aac59cea..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_amphibolite_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_amphibolite_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_amphibolite_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_amphibolite_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_amphibolite_brick_wall.json deleted file mode 100644 index eb424170..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_amphibolite_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_amphibolite_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_amphibolite_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_amphibolite_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_amphibolite_bricks.json deleted file mode 100644 index ac29565e..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_amphibolite_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_amphibolite_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_amphibolite_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_anorthosite_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_anorthosite_cobblestone.json deleted file mode 100644 index 8258b86e..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_anorthosite_cobblestone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:mossy_anorthosite_cobblestone" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_aplite_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_aplite_cobblestone.json deleted file mode 100644 index afd2c1ed..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_aplite_cobblestone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:mossy_aplite_cobblestone" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_argillite_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_argillite_brick_slab.json deleted file mode 100644 index f26ce06c..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_argillite_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:mossy_argillite_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:mossy_argillite_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_argillite_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_argillite_brick_stairs.json deleted file mode 100644 index fb7a5341..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_argillite_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_argillite_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_argillite_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_argillite_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_argillite_brick_wall.json deleted file mode 100644 index bc489ae7..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_argillite_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_argillite_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_argillite_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_argillite_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_argillite_bricks.json deleted file mode 100644 index d064d8d9..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_argillite_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_argillite_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_argillite_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_argillite_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_argillite_cobblestone.json deleted file mode 100644 index 19a6c1d1..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_argillite_cobblestone.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_argillite_cobblestone" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_argillite_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_argillite_cobblestone_slab.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_argillite_cobblestone_slab.json deleted file mode 100644 index 1c42788b..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_argillite_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:mossy_argillite_cobblestone_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:mossy_argillite_cobblestone_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_argillite_cobblestone_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_argillite_cobblestone_stairs.json deleted file mode 100644 index 057b8574..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_argillite_cobblestone_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_argillite_cobblestone_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_argillite_cobblestone_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_argillite_cobblestone_wall.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_argillite_cobblestone_wall.json deleted file mode 100644 index d9e04f99..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_argillite_cobblestone_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_argillite_cobblestone_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_argillite_cobblestone_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_basalt_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_basalt_brick_slab.json deleted file mode 100644 index af89aff6..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_basalt_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:mossy_basalt_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:mossy_basalt_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_basalt_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_basalt_brick_stairs.json deleted file mode 100644 index c1b037c3..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_basalt_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_basalt_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_basalt_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_basalt_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_basalt_brick_wall.json deleted file mode 100644 index 80b89a7d..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_basalt_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_basalt_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_basalt_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_basalt_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_basalt_bricks.json deleted file mode 100644 index 84eb86b7..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_basalt_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_basalt_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_basalt_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_basanite_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_basanite_cobblestone.json deleted file mode 100644 index 3999aaea..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_basanite_cobblestone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:mossy_basanite_cobblestone" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_blairmorite_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_blairmorite_cobblestone.json deleted file mode 100644 index 2c07b77e..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_blairmorite_cobblestone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:mossy_blairmorite_cobblestone" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_chalk_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_chalk_brick_slab.json deleted file mode 100644 index c7010c4e..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_chalk_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:mossy_chalk_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:mossy_chalk_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_chalk_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_chalk_brick_stairs.json deleted file mode 100644 index 67a833e5..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_chalk_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_chalk_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_chalk_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_chalk_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_chalk_brick_wall.json deleted file mode 100644 index 94d0112b..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_chalk_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_chalk_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_chalk_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_chalk_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_chalk_bricks.json deleted file mode 100644 index 949d1093..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_chalk_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_chalk_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_chalk_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_chalk_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_chalk_cobblestone.json deleted file mode 100644 index 53347cb9..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_chalk_cobblestone.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_chalk_cobblestone" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_chalk_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_chalk_cobblestone_slab.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_chalk_cobblestone_slab.json deleted file mode 100644 index 027e41d9..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_chalk_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:mossy_chalk_cobblestone_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:mossy_chalk_cobblestone_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_chalk_cobblestone_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_chalk_cobblestone_stairs.json deleted file mode 100644 index c2150096..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_chalk_cobblestone_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_chalk_cobblestone_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_chalk_cobblestone_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_chalk_cobblestone_wall.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_chalk_cobblestone_wall.json deleted file mode 100644 index 82d36085..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_chalk_cobblestone_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_chalk_cobblestone_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_chalk_cobblestone_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_dacite_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_dacite_cobblestone.json deleted file mode 100644 index 775fd085..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_dacite_cobblestone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:mossy_dacite_cobblestone" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_eclogite_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_eclogite_brick_slab.json deleted file mode 100644 index 1f317c7b..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_eclogite_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:mossy_eclogite_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:mossy_eclogite_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_eclogite_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_eclogite_brick_stairs.json deleted file mode 100644 index 99bc44b7..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_eclogite_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_eclogite_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_eclogite_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_eclogite_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_eclogite_brick_wall.json deleted file mode 100644 index 6ffdae19..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_eclogite_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_eclogite_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_eclogite_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_eclogite_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_eclogite_bricks.json deleted file mode 100644 index 802d8690..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_eclogite_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_eclogite_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_eclogite_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_eclogite_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_eclogite_cobblestone.json deleted file mode 100644 index d5f49740..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_eclogite_cobblestone.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_eclogite_cobblestone" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_eclogite_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_eclogite_cobblestone_slab.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_eclogite_cobblestone_slab.json deleted file mode 100644 index 532d2481..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_eclogite_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:mossy_eclogite_cobblestone_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:mossy_eclogite_cobblestone_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_eclogite_cobblestone_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_eclogite_cobblestone_stairs.json deleted file mode 100644 index 25435c70..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_eclogite_cobblestone_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_eclogite_cobblestone_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_eclogite_cobblestone_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_eclogite_cobblestone_wall.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_eclogite_cobblestone_wall.json deleted file mode 100644 index 643c613b..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_eclogite_cobblestone_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_eclogite_cobblestone_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_eclogite_cobblestone_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_foidolite_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_foidolite_cobblestone.json deleted file mode 100644 index e1b631a5..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_foidolite_cobblestone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:mossy_foidolite_cobblestone" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_gabbro_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_gabbro_brick_slab.json deleted file mode 100644 index 2e472b78..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_gabbro_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:mossy_gabbro_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:mossy_gabbro_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_gabbro_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_gabbro_brick_stairs.json deleted file mode 100644 index 8224653f..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_gabbro_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_gabbro_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_gabbro_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_gabbro_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_gabbro_brick_wall.json deleted file mode 100644 index d50442b0..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_gabbro_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_gabbro_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_gabbro_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_gabbro_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_gabbro_bricks.json deleted file mode 100644 index 0ab5832e..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_gabbro_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_gabbro_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_gabbro_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_gneiss_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_gneiss_brick_slab.json deleted file mode 100644 index 821777c9..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_gneiss_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:mossy_gneiss_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:mossy_gneiss_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_gneiss_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_gneiss_brick_stairs.json deleted file mode 100644 index 84033647..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_gneiss_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_gneiss_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_gneiss_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_gneiss_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_gneiss_brick_wall.json deleted file mode 100644 index d029d38c..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_gneiss_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_gneiss_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_gneiss_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_gneiss_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_gneiss_bricks.json deleted file mode 100644 index bd9d2899..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_gneiss_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_gneiss_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_gneiss_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_jaspillite_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_jaspillite_brick_slab.json deleted file mode 100644 index 8254954a..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_jaspillite_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:mossy_jaspillite_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:mossy_jaspillite_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_jaspillite_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_jaspillite_brick_stairs.json deleted file mode 100644 index 2f048cd3..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_jaspillite_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_jaspillite_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_jaspillite_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_jaspillite_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_jaspillite_brick_wall.json deleted file mode 100644 index 34e3a8a6..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_jaspillite_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_jaspillite_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_jaspillite_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_jaspillite_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_jaspillite_bricks.json deleted file mode 100644 index 0c161f3d..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_jaspillite_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_jaspillite_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_jaspillite_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_jaspillite_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_jaspillite_cobblestone.json deleted file mode 100644 index 6336958c..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_jaspillite_cobblestone.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_jaspillite_cobblestone" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_jaspillite_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_jaspillite_cobblestone_slab.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_jaspillite_cobblestone_slab.json deleted file mode 100644 index 16b6a96f..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_jaspillite_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:mossy_jaspillite_cobblestone_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:mossy_jaspillite_cobblestone_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_jaspillite_cobblestone_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_jaspillite_cobblestone_stairs.json deleted file mode 100644 index bf275792..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_jaspillite_cobblestone_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_jaspillite_cobblestone_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_jaspillite_cobblestone_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_jaspillite_cobblestone_wall.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_jaspillite_cobblestone_wall.json deleted file mode 100644 index e15fbc9b..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_jaspillite_cobblestone_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_jaspillite_cobblestone_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_jaspillite_cobblestone_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_limestone_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_limestone_brick_slab.json deleted file mode 100644 index 9023603f..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_limestone_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:mossy_limestone_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:mossy_limestone_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_limestone_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_limestone_brick_stairs.json deleted file mode 100644 index 34ea600f..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_limestone_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_limestone_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_limestone_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_limestone_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_limestone_brick_wall.json deleted file mode 100644 index 2b3b2853..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_limestone_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_limestone_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_limestone_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_limestone_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_limestone_bricks.json deleted file mode 100644 index e889a915..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_limestone_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_limestone_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_limestone_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_marble_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_marble_brick_slab.json deleted file mode 100644 index 5f73a42a..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_marble_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:mossy_marble_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:mossy_marble_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_marble_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_marble_brick_stairs.json deleted file mode 100644 index e926cb77..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_marble_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_marble_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_marble_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_marble_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_marble_brick_wall.json deleted file mode 100644 index a8866fdd..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_marble_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_marble_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_marble_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_marble_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_marble_bricks.json deleted file mode 100644 index 4b314a6b..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_marble_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_marble_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_marble_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_marble_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_marble_cobblestone.json deleted file mode 100644 index 5790f7ce..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_marble_cobblestone.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_marble_cobblestone" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_marble_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_marble_cobblestone_slab.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_marble_cobblestone_slab.json deleted file mode 100644 index 6c86a6fe..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_marble_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:mossy_marble_cobblestone_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:mossy_marble_cobblestone_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_marble_cobblestone_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_marble_cobblestone_stairs.json deleted file mode 100644 index 645bfb3e..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_marble_cobblestone_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_marble_cobblestone_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_marble_cobblestone_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_marble_cobblestone_wall.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_marble_cobblestone_wall.json deleted file mode 100644 index e2f3fe3d..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_marble_cobblestone_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_marble_cobblestone_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_marble_cobblestone_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_pahoehoe_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_pahoehoe_brick_slab.json deleted file mode 100644 index 6ed37d7a..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_pahoehoe_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:mossy_pahoehoe_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:mossy_pahoehoe_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_pahoehoe_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_pahoehoe_brick_stairs.json deleted file mode 100644 index 94f17146..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_pahoehoe_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_pahoehoe_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_pahoehoe_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_pahoehoe_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_pahoehoe_brick_wall.json deleted file mode 100644 index 992b86c4..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_pahoehoe_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_pahoehoe_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_pahoehoe_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_pahoehoe_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_pahoehoe_bricks.json deleted file mode 100644 index 2bf77f58..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_pahoehoe_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_pahoehoe_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_pahoehoe_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_pahoehoe_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_pahoehoe_cobblestone.json deleted file mode 100644 index 4814ba83..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_pahoehoe_cobblestone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:mossy_pahoehoe_cobblestone" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_pahoehoe_cobblestone_slab.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_pahoehoe_cobblestone_slab.json deleted file mode 100644 index 9a00f335..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_pahoehoe_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:mossy_pahoehoe_cobblestone_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:mossy_pahoehoe_cobblestone_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_pahoehoe_cobblestone_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_pahoehoe_cobblestone_stairs.json deleted file mode 100644 index a71c0817..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_pahoehoe_cobblestone_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_pahoehoe_cobblestone_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_pahoehoe_cobblestone_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_pahoehoe_cobblestone_wall.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_pahoehoe_cobblestone_wall.json deleted file mode 100644 index 43c6f727..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_pahoehoe_cobblestone_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_pahoehoe_cobblestone_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_pahoehoe_cobblestone_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_schist_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_schist_brick_slab.json deleted file mode 100644 index eb52f5ad..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_schist_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:mossy_schist_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:mossy_schist_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_schist_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_schist_brick_stairs.json deleted file mode 100644 index a3129ae6..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_schist_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_schist_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_schist_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_schist_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_schist_brick_wall.json deleted file mode 100644 index 5639adfb..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_schist_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_schist_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_schist_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_schist_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_schist_bricks.json deleted file mode 100644 index 662e5c11..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_schist_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_schist_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_schist_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_shale_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_shale_brick_slab.json deleted file mode 100644 index c943d824..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_shale_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:mossy_shale_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:mossy_shale_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_shale_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_shale_brick_stairs.json deleted file mode 100644 index 7bddb7ac..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_shale_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_shale_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_shale_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_shale_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_shale_brick_wall.json deleted file mode 100644 index 9c8cc051..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_shale_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_shale_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_shale_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_shale_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_shale_bricks.json deleted file mode 100644 index 5bb28a18..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_shale_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:mossy_shale_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:mossy_shale_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/mossy_shoshonite_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/mossy_shoshonite_cobblestone.json deleted file mode 100644 index 2d010819..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/mossy_shoshonite_cobblestone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:mossy_shoshonite_cobblestone" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe.json b/src/test/resources/data/strata/loot_tables/blocks/pahoehoe.json deleted file mode 100644 index 3965e909..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:pahoehoe" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:pahoehoe_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_brick_slab.json deleted file mode 100644 index 26bf17a9..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:pahoehoe_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:pahoehoe_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_brick_stairs.json deleted file mode 100644 index ac4d7b1f..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:pahoehoe_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:pahoehoe_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_brick_wall.json deleted file mode 100644 index fb22db6b..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:pahoehoe_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:pahoehoe_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_bricks.json deleted file mode 100644 index 2830b4fd..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:pahoehoe_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:pahoehoe_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_button.json b/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_button.json deleted file mode 100644 index 9e8c155d..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_button.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:pahoehoe_button" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_cobblestone.json deleted file mode 100644 index 886fec97..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_cobblestone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:pahoehoe_cobblestone" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_cobblestone_slab.json b/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_cobblestone_slab.json deleted file mode 100644 index df09a261..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_cobblestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:pahoehoe_cobblestone_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:pahoehoe_cobblestone_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_cobblestone_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_cobblestone_stairs.json deleted file mode 100644 index 3f8e5a42..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_cobblestone_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:pahoehoe_cobblestone_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:pahoehoe_cobblestone_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_cobblestone_wall.json b/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_cobblestone_wall.json deleted file mode 100644 index 22b53626..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_cobblestone_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:pahoehoe_cobblestone_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:pahoehoe_cobblestone_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_pressure_plate.json b/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_pressure_plate.json deleted file mode 100644 index 58b24b6e..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_pressure_plate.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:pahoehoe_pressure_plate" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_slab.json b/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_slab.json deleted file mode 100644 index 55eb4cd1..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:pahoehoe_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:pahoehoe_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_stairs.json deleted file mode 100644 index 31b1b64a..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:pahoehoe_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:pahoehoe_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_wall.json b/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_wall.json deleted file mode 100644 index d93597f4..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/pahoehoe_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:pahoehoe_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:pahoehoe_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_aa.json b/src/test/resources/data/strata/loot_tables/blocks/polished_aa.json deleted file mode 100644 index dccba069..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_aa.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_aa" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_aa" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_aa_slab.json b/src/test/resources/data/strata/loot_tables/blocks/polished_aa_slab.json deleted file mode 100644 index 4042a2dd..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_aa_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:polished_aa_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:polished_aa_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_aa_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/polished_aa_stairs.json deleted file mode 100644 index c09ee000..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_aa_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_aa_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_aa_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_adakite.json b/src/test/resources/data/strata/loot_tables/blocks/polished_adakite.json deleted file mode 100644 index cb719d30..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_adakite.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_adakite" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_adakite" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_adakite_slab.json b/src/test/resources/data/strata/loot_tables/blocks/polished_adakite_slab.json deleted file mode 100644 index 4cea9771..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_adakite_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:polished_adakite_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:polished_adakite_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_adakite_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/polished_adakite_stairs.json deleted file mode 100644 index 1e3d67b7..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_adakite_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_adakite_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_adakite_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_amphibolite.json b/src/test/resources/data/strata/loot_tables/blocks/polished_amphibolite.json deleted file mode 100644 index f2209706..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_amphibolite.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_amphibolite" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_amphibolite" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_amphibolite_slab.json b/src/test/resources/data/strata/loot_tables/blocks/polished_amphibolite_slab.json deleted file mode 100644 index 218fcd59..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_amphibolite_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:polished_amphibolite_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:polished_amphibolite_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_amphibolite_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/polished_amphibolite_stairs.json deleted file mode 100644 index bde73608..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_amphibolite_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_amphibolite_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_amphibolite_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_argillite.json b/src/test/resources/data/strata/loot_tables/blocks/polished_argillite.json deleted file mode 100644 index 752b3807..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_argillite.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_argillite" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_argillite" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_argillite_slab.json b/src/test/resources/data/strata/loot_tables/blocks/polished_argillite_slab.json deleted file mode 100644 index dba0c7a9..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_argillite_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:polished_argillite_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:polished_argillite_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_argillite_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/polished_argillite_stairs.json deleted file mode 100644 index 7511b8b7..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_argillite_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_argillite_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_argillite_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_basalt.json b/src/test/resources/data/strata/loot_tables/blocks/polished_basalt.json deleted file mode 100644 index e9f12445..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_basalt.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_basalt" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_basalt" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_basalt_slab.json b/src/test/resources/data/strata/loot_tables/blocks/polished_basalt_slab.json deleted file mode 100644 index 8a793313..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_basalt_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:polished_basalt_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:polished_basalt_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_basalt_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/polished_basalt_stairs.json deleted file mode 100644 index 28a40fa8..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_basalt_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_basalt_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_basalt_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_chalk.json b/src/test/resources/data/strata/loot_tables/blocks/polished_chalk.json deleted file mode 100644 index 72726355..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_chalk.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_chalk" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_chalk" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_chalk_slab.json b/src/test/resources/data/strata/loot_tables/blocks/polished_chalk_slab.json deleted file mode 100644 index 602be271..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_chalk_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:polished_chalk_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:polished_chalk_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_chalk_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/polished_chalk_stairs.json deleted file mode 100644 index 87b328d0..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_chalk_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_chalk_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_chalk_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_eclogite.json b/src/test/resources/data/strata/loot_tables/blocks/polished_eclogite.json deleted file mode 100644 index 03c9ebb6..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_eclogite.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_eclogite" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_eclogite" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_eclogite_slab.json b/src/test/resources/data/strata/loot_tables/blocks/polished_eclogite_slab.json deleted file mode 100644 index 0fde96f2..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_eclogite_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:polished_eclogite_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:polished_eclogite_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_eclogite_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/polished_eclogite_stairs.json deleted file mode 100644 index 4a3b0f9d..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_eclogite_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_eclogite_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_eclogite_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_gabbro.json b/src/test/resources/data/strata/loot_tables/blocks/polished_gabbro.json deleted file mode 100644 index fe5cd01a..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_gabbro.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_gabbro" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_gabbro" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_gabbro_slab.json b/src/test/resources/data/strata/loot_tables/blocks/polished_gabbro_slab.json deleted file mode 100644 index 59e6a222..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_gabbro_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:polished_gabbro_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:polished_gabbro_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_gabbro_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/polished_gabbro_stairs.json deleted file mode 100644 index da97e37f..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_gabbro_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_gabbro_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_gabbro_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_gneiss.json b/src/test/resources/data/strata/loot_tables/blocks/polished_gneiss.json deleted file mode 100644 index bf23fe8e..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_gneiss.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_gneiss" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_gneiss" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_gneiss_slab.json b/src/test/resources/data/strata/loot_tables/blocks/polished_gneiss_slab.json deleted file mode 100644 index 58192b11..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_gneiss_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:polished_gneiss_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:polished_gneiss_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_gneiss_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/polished_gneiss_stairs.json deleted file mode 100644 index ad4fec79..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_gneiss_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_gneiss_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_gneiss_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_jaspillite.json b/src/test/resources/data/strata/loot_tables/blocks/polished_jaspillite.json deleted file mode 100644 index f587bbca..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_jaspillite.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_jaspillite" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_jaspillite" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_jaspillite_slab.json b/src/test/resources/data/strata/loot_tables/blocks/polished_jaspillite_slab.json deleted file mode 100644 index 584e2ea7..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_jaspillite_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:polished_jaspillite_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:polished_jaspillite_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_jaspillite_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/polished_jaspillite_stairs.json deleted file mode 100644 index c171c58e..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_jaspillite_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_jaspillite_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_jaspillite_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_limestone.json b/src/test/resources/data/strata/loot_tables/blocks/polished_limestone.json deleted file mode 100644 index eaac4bec..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_limestone.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_limestone" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_limestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_limestone_slab.json b/src/test/resources/data/strata/loot_tables/blocks/polished_limestone_slab.json deleted file mode 100644 index 7c182596..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_limestone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:polished_limestone_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:polished_limestone_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_limestone_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/polished_limestone_stairs.json deleted file mode 100644 index 7dfb8302..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_limestone_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_limestone_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_limestone_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_marble.json b/src/test/resources/data/strata/loot_tables/blocks/polished_marble.json deleted file mode 100644 index 7f9467bd..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_marble.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_marble" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_marble" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_marble_slab.json b/src/test/resources/data/strata/loot_tables/blocks/polished_marble_slab.json deleted file mode 100644 index d29cd89d..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_marble_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:polished_marble_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:polished_marble_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_marble_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/polished_marble_stairs.json deleted file mode 100644 index e7002118..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_marble_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_marble_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_marble_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_pahoehoe.json b/src/test/resources/data/strata/loot_tables/blocks/polished_pahoehoe.json deleted file mode 100644 index eed7c6e4..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_pahoehoe.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_pahoehoe" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_pahoehoe" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_pahoehoe_slab.json b/src/test/resources/data/strata/loot_tables/blocks/polished_pahoehoe_slab.json deleted file mode 100644 index c02a4d76..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_pahoehoe_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:polished_pahoehoe_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:polished_pahoehoe_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_pahoehoe_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/polished_pahoehoe_stairs.json deleted file mode 100644 index 8d99c939..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_pahoehoe_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_pahoehoe_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_pahoehoe_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_schist.json b/src/test/resources/data/strata/loot_tables/blocks/polished_schist.json deleted file mode 100644 index 71697bb5..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_schist.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_schist" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_schist" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_schist_slab.json b/src/test/resources/data/strata/loot_tables/blocks/polished_schist_slab.json deleted file mode 100644 index 5c6032c7..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_schist_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:polished_schist_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:polished_schist_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_schist_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/polished_schist_stairs.json deleted file mode 100644 index a16dcb84..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_schist_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_schist_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_schist_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_shale.json b/src/test/resources/data/strata/loot_tables/blocks/polished_shale.json deleted file mode 100644 index f9375541..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_shale.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_shale" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_shale" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_shale_slab.json b/src/test/resources/data/strata/loot_tables/blocks/polished_shale_slab.json deleted file mode 100644 index 51562e6f..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_shale_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:polished_shale_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:polished_shale_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/polished_shale_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/polished_shale_stairs.json deleted file mode 100644 index c08bd4e8..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/polished_shale_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:polished_shale_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:polished_shale_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/schist.json b/src/test/resources/data/strata/loot_tables/blocks/schist.json deleted file mode 100644 index d6ff0d2b..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/schist.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:schist" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:schist" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/schist_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/schist_brick_slab.json deleted file mode 100644 index 7625eae8..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/schist_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:schist_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:schist_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/schist_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/schist_brick_stairs.json deleted file mode 100644 index 5b1bb67d..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/schist_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:schist_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:schist_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/schist_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/schist_brick_wall.json deleted file mode 100644 index ca68df34..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/schist_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:schist_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:schist_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/schist_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/schist_bricks.json deleted file mode 100644 index b64ec50c..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/schist_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:schist_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:schist_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/schist_button.json b/src/test/resources/data/strata/loot_tables/blocks/schist_button.json deleted file mode 100644 index ecebedde..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/schist_button.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:schist_button" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/schist_pressure_plate.json b/src/test/resources/data/strata/loot_tables/blocks/schist_pressure_plate.json deleted file mode 100644 index cb4df797..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/schist_pressure_plate.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:schist_pressure_plate" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/schist_slab.json b/src/test/resources/data/strata/loot_tables/blocks/schist_slab.json deleted file mode 100644 index e6816d91..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/schist_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:schist_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:schist_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/schist_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/schist_stairs.json deleted file mode 100644 index 18158e0c..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/schist_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:schist_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:schist_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/schist_wall.json b/src/test/resources/data/strata/loot_tables/blocks/schist_wall.json deleted file mode 100644 index eb8b558c..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/schist_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:schist_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:schist_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/shale.json b/src/test/resources/data/strata/loot_tables/blocks/shale.json deleted file mode 100644 index 7e5e3820..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/shale.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:shale" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:shale" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/shale_brick_slab.json b/src/test/resources/data/strata/loot_tables/blocks/shale_brick_slab.json deleted file mode 100644 index 7ca54335..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/shale_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:shale_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:shale_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/shale_brick_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/shale_brick_stairs.json deleted file mode 100644 index 4600e836..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/shale_brick_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:shale_brick_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:shale_brick_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/shale_brick_wall.json b/src/test/resources/data/strata/loot_tables/blocks/shale_brick_wall.json deleted file mode 100644 index 699988bb..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/shale_brick_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:shale_brick_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:shale_brick_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/shale_bricks.json b/src/test/resources/data/strata/loot_tables/blocks/shale_bricks.json deleted file mode 100644 index b68333f7..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/shale_bricks.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:shale_bricks" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:shale_bricks" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/shale_button.json b/src/test/resources/data/strata/loot_tables/blocks/shale_button.json deleted file mode 100644 index 357bcf21..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/shale_button.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:shale_button" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/shale_pressure_plate.json b/src/test/resources/data/strata/loot_tables/blocks/shale_pressure_plate.json deleted file mode 100644 index ae0b2459..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/shale_pressure_plate.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:shale_pressure_plate" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/shale_slab.json b/src/test/resources/data/strata/loot_tables/blocks/shale_slab.json deleted file mode 100644 index d1d0cb7f..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/shale_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "strata:shale_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "strata:shale_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/shale_stairs.json b/src/test/resources/data/strata/loot_tables/blocks/shale_stairs.json deleted file mode 100644 index c115e5a7..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/shale_stairs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:shale_stairs" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:shale_stairs" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/shale_wall.json b/src/test/resources/data/strata/loot_tables/blocks/shale_wall.json deleted file mode 100644 index 7ee65efa..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/shale_wall.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:shale_wall" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:shale_wall" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/shoshonite.json b/src/test/resources/data/strata/loot_tables/blocks/shoshonite.json deleted file mode 100644 index 7ed3de69..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/shoshonite.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "strata:shoshonite" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "name": "strata:shoshonite_cobblestone" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/loot_tables/blocks/shoshonite_cobblestone.json b/src/test/resources/data/strata/loot_tables/blocks/shoshonite_cobblestone.json deleted file mode 100644 index b2cbf5e1..00000000 --- a/src/test/resources/data/strata/loot_tables/blocks/shoshonite_cobblestone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "strata:shoshonite_cobblestone" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/aa_bricks.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/aa_bricks.json deleted file mode 100644 index 0bf0ce9e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/aa_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:polished_aa" - } - }, - "result": { - "item": "strata:aa_bricks" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/adakite_bricks.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/adakite_bricks.json deleted file mode 100644 index f46b7003..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/adakite_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:polished_adakite" - } - }, - "result": { - "item": "strata:adakite_bricks" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/basalt_bricks.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/basalt_bricks.json deleted file mode 100644 index 168a4d8b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/basalt_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:polished_basalt" - } - }, - "result": { - "item": "strata:basalt_bricks", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/chiseled_aa_bricks.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/chiseled_aa_bricks.json deleted file mode 100644 index 75f7526f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/chiseled_aa_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "# " - ], - "key": { - "#": { - "item": "strata:aa_slab_brick" - } - }, - "result": { - "item": "strata:chiseled_aa_bricks" - "count": 1 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/chiseled_adakite_bricks.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/chiseled_adakite_bricks.json deleted file mode 100644 index 679f1e96..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/chiseled_adakite_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "# " - ], - "key": { - "#": { - "item": "strata:adakite_slab_brick" - } - }, - "result": { - "item": "strata:chiseled_adakite_bricks" - "count": 1 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/chiseled_basalt_bricks.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/chiseled_basalt_bricks.json deleted file mode 100644 index 470a0866..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/chiseled_basalt_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "# " - ], - "key": { - "#": { - "item": "strata:basalt_brick_slab" - } - }, - "result": { - "item": "strata:chiseled_basalt_bricks", - "count": 1 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/chiseled_gabbro_bricks.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/chiseled_gabbro_bricks.json deleted file mode 100644 index 847b1b82..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/chiseled_gabbro_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "# " - ], - "key": { - "#": { - "item": "strata:gabbro_brick_slab" - } - }, - "result": { - "item": "strata:chiseled_gabbro_bricks", - "count": 1 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/chiseled_pahoehoe_bricks.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/chiseled_pahoehoe_bricks.json deleted file mode 100644 index 197aef3b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/chiseled_pahoehoe_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "# " - ], - "key": { - "#": { - "item": "strata:pahoehoe_slab_brick" - } - }, - "result": { - "item": "strata:chiseled_pahoehoe_bricks" - "count": 1 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/gabbro_bricks.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/gabbro_bricks.json deleted file mode 100644 index c261b8af..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/gabbro_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:polished_gabbro" - } - }, - "result": { - "item": "strata:gabbro_bricks", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_aa_bricks.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_aa_bricks.json deleted file mode 100644 index 87179758..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_aa_bricks.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:aa_bricks" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "strata:mossy_aa_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_aa_cobblestone.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_aa_cobblestone.json deleted file mode 100644 index bd0e8277..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_aa_cobblestone.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:aa_cobblestone" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "strata:mossy_aa_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_adakite_bricks.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_adakite_bricks.json deleted file mode 100644 index 12c6b79d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_adakite_bricks.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:adakite_bricks" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "strata:mossy_adakite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_adakite_cobblestone.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_adakite_cobblestone.json deleted file mode 100644 index 62685b0b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_adakite_cobblestone.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:adakite_cobblestone" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "strata:mossy_adakite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_basalt_bricks.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_basalt_bricks.json deleted file mode 100644 index fd8281df..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_basalt_bricks.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:basalt_bricks" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "strata:mossy_basalt_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_gabbro_bricks.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_gabbro_bricks.json deleted file mode 100644 index 6af96a9a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_gabbro_bricks.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:gabbro_bricks" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "strata:mossy_gabbro_bricks" - } -} diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_pahoehoe_bricks.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_pahoehoe_bricks.json deleted file mode 100644 index 15318823..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_pahoehoe_bricks.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:pahoehoe_bricks" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "strata:mossy_pahoehoe_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_pahoehoe_cobblestone.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_pahoehoe_cobblestone.json deleted file mode 100644 index f222e511..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/mossy_pahoehoe_cobblestone.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:pahoehoe_cobblestone" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "strata:mossy_pahoehoe_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/pahoehoe_bricks.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/pahoehoe_bricks.json deleted file mode 100644 index 9a0abc9a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/pahoehoe_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:polished_pahoehoe" - } - }, - "result": { - "item": "strata:pahoehoe_bricks" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/polished_aa.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/polished_aa.json deleted file mode 100644 index 1d6c0765..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/polished_aa.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:aa" - } - }, - "result": { - "item": "strata:polished_aa" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/polished_adakite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/polished_adakite.json deleted file mode 100644 index 2e81fae4..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/polished_adakite.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:adakite" - } - }, - "result": { - "item": "strata:polished_adakite" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/polished_basalt.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/polished_basalt.json deleted file mode 100644 index 6a900c77..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/polished_basalt.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:basalt" - } - }, - "result": { - "item": "strata:polished_basalt", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/polished_gabbro.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/polished_gabbro.json deleted file mode 100644 index 15040c52..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/polished_gabbro.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:gabbro" - } - }, - "result": { - "item": "strata:polished_gabbro", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/polished_pahoehoe.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/polished_pahoehoe.json deleted file mode 100644 index 9ec35377..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/polished_pahoehoe.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:pahoehoe" - } - }, - "result": { - "item": "strata:polished_pahoehoe" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/aa_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/aa_brick_slab.json deleted file mode 100644 index 422e62b1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/aa_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:aa_bricks" - } - }, - "result": { - "item": "strata:aa_brick_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/aa_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/aa_slab.json deleted file mode 100644 index 3fd78c8c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/aa_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:aa" - } - }, - "result": { - "item": "strata:aa_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/adakite_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/adakite_brick_slab.json deleted file mode 100644 index c1d81a7d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/adakite_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:adakite_bricks" - } - }, - "result": { - "item": "strata:adakite_brick_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/adakite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/adakite_slab.json deleted file mode 100644 index ab6d9666..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/adakite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:adakite" - } - }, - "result": { - "item": "strata:adakite_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/basalt_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/basalt_brick_slab.json deleted file mode 100644 index 0c3da30a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/basalt_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:basalt_bricks" - } - }, - "result": { - "item": "strata:basalt_brick_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/basalt_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/basalt_slab.json deleted file mode 100644 index e855e7bd..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/basalt_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:basalt" - } - }, - "result": { - "item": "strata:basalt_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/cobblestone_aa_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/cobblestone_aa_slab.json deleted file mode 100644 index 8c66a409..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/cobblestone_aa_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:cobblestone_aa" - } - }, - "result": { - "item": "strata:cobblestone_aa_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/cobblestone_adakite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/cobblestone_adakite_slab.json deleted file mode 100644 index 27e6f003..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/cobblestone_adakite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:cobblestone_adakite" - } - }, - "result": { - "item": "strata:cobblestone_adakite_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/cobblestone_pahoehoe_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/cobblestone_pahoehoe_slab.json deleted file mode 100644 index dbc1df25..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/cobblestone_pahoehoe_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:cobblestone_pahoehoe" - } - }, - "result": { - "item": "strata:cobblestone_pahoehoe_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/gabbro_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/gabbro_brick_slab.json deleted file mode 100644 index 387dcba2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/gabbro_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:gabbro_bricks" - } - }, - "result": { - "item": "strata:gabbro_brick_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/gabbro_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/gabbro_slab.json deleted file mode 100644 index 80a39958..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/gabbro_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:gabbro" - } - }, - "result": { - "item": "strata:gabbro_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_aa_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_aa_brick_slab.json deleted file mode 100644 index 6bcab218..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_aa_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mossy_aa_bricks" - } - }, - "result": { - "item": "strata:mossy_aa_brick_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_aa_cobblestone_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_aa_cobblestone_slab.json deleted file mode 100644 index 6872a224..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_aa_cobblestone_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mossy_aa_cobblestone" - } - }, - "result": { - "item": "strata:mossy_aa_cobblestone_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_adakite_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_adakite_brick_slab.json deleted file mode 100644 index 00f6dffa..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_adakite_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mossy_adakite_bricks" - } - }, - "result": { - "item": "strata:mossy_adakite_brick_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_adakite_cobblestone_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_adakite_cobblestone_slab.json deleted file mode 100644 index 0973c61c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_adakite_cobblestone_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mossy_adakite_cobblestone" - } - }, - "result": { - "item": "strata:mossy_adakite_cobblestone_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_basalt_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_basalt_brick_slab.json deleted file mode 100644 index ccc883dc..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_basalt_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mossy_basalt_bricks" - } - }, - "result": { - "item": "strata:mossy_basalt_brick_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_gabbro_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_gabbro_brick_slab.json deleted file mode 100644 index 8216c79a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_gabbro_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mossy_gabbro_bricks" - } - }, - "result": { - "item": "strata:mossy_gabbro_brick_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_pahoehoe_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_pahoehoe_brick_slab.json deleted file mode 100644 index 9c7c744b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_pahoehoe_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mossy_pahoehoe_bricks" - } - }, - "result": { - "item": "strata:mossy_pahoehoe_brick_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_pahoehoe_cobblestone_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_pahoehoe_cobblestone_slab.json deleted file mode 100644 index c2d39748..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/mossy_pahoehoe_cobblestone_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mossy_pahoehoe_cobblestone" - } - }, - "result": { - "item": "strata:mossy_pahoehoe_cobblestone_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/pahoehoe_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/pahoehoe_brick_slab.json deleted file mode 100644 index 39e0b234..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/pahoehoe_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:pahoehoe_bricks" - } - }, - "result": { - "item": "strata:pahoehoe_brick_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/pahoehoe_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/pahoehoe_slab.json deleted file mode 100644 index 00375c70..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/pahoehoe_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:pahoehoe" - } - }, - "result": { - "item": "strata:pahoehoe_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/polished_aa_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/polished_aa_slab.json deleted file mode 100644 index 7bd52ae9..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/polished_aa_slab.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###" - ], - "key": { - "#": { - "item": "strata:polished_aa" - } - }, - "result": { - "item": "strata:polished_aa_slab" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/polished_adakite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/polished_adakite_slab.json deleted file mode 100644 index d5f8038f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/polished_adakite_slab.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###" - ], - "key": { - "#": { - "item": "strata:polished_adakite" - } - }, - "result": { - "item": "strata:polished_adakite_slab" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/polished_basalt_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/polished_basalt_slab.json deleted file mode 100644 index 9c5a064b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/polished_basalt_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:polished_basalt" - } - }, - "result": { - "item": "strata:polished_basalt_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/polished_gabbro_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/polished_gabbro_slab.json deleted file mode 100644 index e6e216b0..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/polished_gabbro_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:polished_gabbro" - } - }, - "result": { - "item": "strata:polished_gabbro_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/polished_pahoehoe_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/polished_pahoehoe_slab.json deleted file mode 100644 index 74a61ebb..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/slab/polished_pahoehoe_slab.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###" - ], - "key": { - "#": { - "item": "strata:polished_pahoehoe" - } - }, - "result": { - "item": "strata:polished_pahoehoe_slab" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/aa_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/aa_brick_stairs.json deleted file mode 100644 index 1c8cdbce..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/aa_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:aa_bricks" - } - }, - "result": { - "item": "strata:aa_brick_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/aa_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/aa_stairs.json deleted file mode 100644 index e5dfaf45..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/aa_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:aa" - } - }, - "result": { - "item": "strata:aa_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/adakite_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/adakite_brick_stairs.json deleted file mode 100644 index ddfe0db1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/adakite_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:adakite_bricks" - } - }, - "result": { - "item": "strata:adakite_brick_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/adakite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/adakite_stairs.json deleted file mode 100644 index baf2a467..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/adakite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:adakite" - } - }, - "result": { - "item": "strata:adakite_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/basalt_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/basalt_brick_stairs.json deleted file mode 100644 index babef99c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/basalt_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:basalt_bricks" - } - }, - "result": { - "item": "strata:basalt_brick_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/basalt_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/basalt_stairs.json deleted file mode 100644 index 443be8e3..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/basalt_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:basalt" - } - }, - "result": { - "item": "strata:basalt_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/cobblestone_aa_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/cobblestone_aa_stairs.json deleted file mode 100644 index a9e9ca24..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/cobblestone_aa_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:cobblestone_aa" - } - }, - "result": { - "item": "strata:cobblestone_aa_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/cobblestone_adakite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/cobblestone_adakite_stairs.json deleted file mode 100644 index cc7868ef..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/cobblestone_adakite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:cobblestone_adakite" - } - }, - "result": { - "item": "strata:cobblestone_adakite_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/cobblestone_pahoehoe_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/cobblestone_pahoehoe_stairs.json deleted file mode 100644 index e45f7d7d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/cobblestone_pahoehoe_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:cobblestone_pahoehoe" - } - }, - "result": { - "item": "strata:cobblestone_pahoehoe_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/gabbro_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/gabbro_brick_stairs.json deleted file mode 100644 index d2505369..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/gabbro_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:gabbro_bricks" - } - }, - "result": { - "item": "strata:gabbro_brick_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/gabbro_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/gabbro_stairs.json deleted file mode 100644 index c4afe11a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/gabbro_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:gabbro" - } - }, - "result": { - "item": "strata:gabbro_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_aa_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_aa_brick_stairs.json deleted file mode 100644 index 2133254f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_aa_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_aa_bricks" - } - }, - "result": { - "item": "strata:mossy_aa_brick_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_aa_cobblestone_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_aa_cobblestone_stairs.json deleted file mode 100644 index aa9efa4b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_aa_cobblestone_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_aa_cobblestone" - } - }, - "result": { - "item": "strata:mossy_aa_cobblestone_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_adakite_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_adakite_brick_stairs.json deleted file mode 100644 index cd781bb6..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_adakite_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_adakite_bricks" - } - }, - "result": { - "item": "strata:mossy_adakite_brick_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_adakite_cobblestone_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_adakite_cobblestone_stairs.json deleted file mode 100644 index f4fbe97b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_adakite_cobblestone_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_adakite_cobblestone" - } - }, - "result": { - "item": "strata:mossy_adakite_cobblestone_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_basalt_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_basalt_brick_stairs.json deleted file mode 100644 index f388a3d0..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_basalt_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_basalt_bricks" - } - }, - "result": { - "item": "strata:mossy_basalt_brick_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_gabbro_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_gabbro_brick_stairs.json deleted file mode 100644 index 3dce13fd..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_gabbro_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_gabbro_bricks" - } - }, - "result": { - "item": "strata:mossy_gabbro_brick_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_pahoehoe_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_pahoehoe_brick_stairs.json deleted file mode 100644 index 4aa2c9f2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_pahoehoe_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_pahoehoe_bricks" - } - }, - "result": { - "item": "strata:mossy_pahoehoe_brick_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_pahoehoe_cobblestone_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_pahoehoe_cobblestone_stairs.json deleted file mode 100644 index b644ff81..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/mossy_pahoehoe_cobblestone_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_pahoehoe_cobblestone" - } - }, - "result": { - "item": "strata:mossy_pahoehoe_cobblestone_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/pahoehoe_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/pahoehoe_brick_stairs.json deleted file mode 100644 index 76b5eca7..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/pahoehoe_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:pahoehoe_bricks" - } - }, - "result": { - "item": "strata:pahoehoe_brick_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/pahoehoe_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/pahoehoe_stairs.json deleted file mode 100644 index 20c46e6c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/pahoehoe_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:pahoehoe" - } - }, - "result": { - "item": "strata:pahoehoe_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/polished_aa_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/polished_aa_stairs.json deleted file mode 100644 index 56f3f83f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/polished_aa_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:polished_aa" - } - }, - "result": { - "item": "strata:polished_aa_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/polished_adakite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/polished_adakite_stairs.json deleted file mode 100644 index e117a940..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/polished_adakite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:polished_adakite" - } - }, - "result": { - "item": "strata:polished_adakite_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/polished_basalt_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/polished_basalt_stairs.json deleted file mode 100644 index d77fd7fe..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/polished_basalt_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:polished_basalt" - } - }, - "result": { - "item": "strata:polished_basalt_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/polished_gabbro_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/polished_gabbro_stairs.json deleted file mode 100644 index 388a42bb..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/polished_gabbro_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:polished_gabbro" - } - }, - "result": { - "item": "strata:polished_gabbro_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/polished_pahoehoe_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/polished_pahoehoe_stairs.json deleted file mode 100644 index 76ec56c6..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/stairs/polished_pahoehoe_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:polished_pahoehoe" - } - }, - "result": { - "item": "strata:polished_pahoehoe_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/aa_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/aa_brick_wall.json deleted file mode 100644 index 850b22ff..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/aa_brick_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:aa_bricks" - } - }, - "result": { - "item": "strata:aa_brick_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/aa_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/aa_wall.json deleted file mode 100644 index 6c99520b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/aa_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:aa" - } - }, - "result": { - "item": "strata:aa_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/adakite_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/adakite_brick_wall.json deleted file mode 100644 index 208f51a7..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/adakite_brick_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:adakite_bricks" - } - }, - "result": { - "item": "strata:adakite_brick_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/adakite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/adakite_wall.json deleted file mode 100644 index ecaf2129..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/adakite_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:adakite" - } - }, - "result": { - "item": "strata:adakite_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/basalt_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/basalt_brick_wall.json deleted file mode 100644 index 1b867ac1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/basalt_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:basalt_bricks" - } - }, - "result": { - "item": "strata:basalt_brick_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/basalt_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/basalt_wall.json deleted file mode 100644 index dc10fb78..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/basalt_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:basalt" - } - }, - "result": { - "item": "strata:basalt_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/cobblestone_aa_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/cobblestone_aa_wall.json deleted file mode 100644 index 6c20ed9d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/cobblestone_aa_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:cobblestone_aa" - } - }, - "result": { - "item": "strata:cobblestone_aa_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/cobblestone_adakite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/cobblestone_adakite_wall.json deleted file mode 100644 index eb5d150c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/cobblestone_adakite_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:cobblestone_adakite" - } - }, - "result": { - "item": "strata:cobblestone_adakite_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/cobblestone_pahoehoe_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/cobblestone_pahoehoe_wall.json deleted file mode 100644 index 6966870d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/cobblestone_pahoehoe_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:cobblestone_pahoehoe" - } - }, - "result": { - "item": "strata:cobblestone_pahoehoe_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/gabbro_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/gabbro_brick_wall.json deleted file mode 100644 index 176bde39..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/gabbro_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:gabbro_bricks" - } - }, - "result": { - "item": "strata:gabbro_brick_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/gabbro_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/gabbro_wall.json deleted file mode 100644 index daff4758..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/gabbro_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:gabbro" - } - }, - "result": { - "item": "strata:gabbro_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_aa_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_aa_brick_wall.json deleted file mode 100644 index 2cd00f71..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_aa_brick_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_aa_bricks" - } - }, - "result": { - "item": "strata:mossy_aa_brick_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_aa_cobblestone_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_aa_cobblestone_wall.json deleted file mode 100644 index eb7b19e0..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_aa_cobblestone_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_aa_cobblestone" - } - }, - "result": { - "item": "strata:mossy_aa_cobblestone_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_adakite_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_adakite_brick_wall.json deleted file mode 100644 index 8c26c250..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_adakite_brick_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_adakite_bricks" - } - }, - "result": { - "item": "strata:mossy_adakite_brick_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_adakite_cobblestone_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_adakite_cobblestone_wall.json deleted file mode 100644 index bad955c2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_adakite_cobblestone_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_adakite_cobblestone" - } - }, - "result": { - "item": "strata:mossy_adakite_cobblestone_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_basalt_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_basalt_brick_wall.json deleted file mode 100644 index 26ce2356..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_basalt_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_basalt_bricks" - } - }, - "result": { - "item": "strata:mossy_basalt_brick_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_gabbro_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_gabbro_brick_wall.json deleted file mode 100644 index e3527bbc..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_gabbro_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_gabbro_bricks" - } - }, - "result": { - "item": "strata:mossy_gabbro_brick_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_pahoehoe_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_pahoehoe_brick_wall.json deleted file mode 100644 index cb5a3467..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_pahoehoe_brick_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_pahoehoe_bricks" - } - }, - "result": { - "item": "strata:mossy_pahoehoe_brick_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_pahoehoe_cobblestone_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_pahoehoe_cobblestone_wall.json deleted file mode 100644 index 7a1456cc..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/mossy_pahoehoe_cobblestone_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_pahoehoe_cobblestone" - } - }, - "result": { - "item": "strata:mossy_pahoehoe_cobblestone_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/pahoehoe_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/pahoehoe_brick_wall.json deleted file mode 100644 index 561df5ae..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/pahoehoe_brick_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:pahoehoe_bricks" - } - }, - "result": { - "item": "strata:pahoehoe_brick_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/pahoehoe_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/pahoehoe_wall.json deleted file mode 100644 index e9743fa4..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/block/wall/pahoehoe_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:pahoehoe" - } - }, - "result": { - "item": "strata:pahoehoe_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/button/aa_button.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/button/aa_button.json deleted file mode 100644 index 87356847..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/button/aa_button.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:aa" - } - ], - "result": { - "item": "strata:aa_button" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/button/adakite_button.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/button/adakite_button.json deleted file mode 100644 index c1bd6db1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/button/adakite_button.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:adakite" - } - ], - "result": { - "item": "strata:adakite_button" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/button/basalt_button.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/button/basalt_button.json deleted file mode 100644 index 63643306..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/button/basalt_button.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:basalt" - } - ], - "result": { - "item": "strata:basalt_button" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/button/gabbro_button.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/button/gabbro_button.json deleted file mode 100644 index 8bbf6097..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/button/gabbro_button.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:gabbro" - } - ], - "result": { - "item": "strata:gabbro_button" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/button/pahoehoe_button.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/button/pahoehoe_button.json deleted file mode 100644 index c69640ea..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/button/pahoehoe_button.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:pahoehoe" - } - ], - "result": { - "item": "strata:pahoehoe_button" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/pressure_plate/aa_pressure_plate.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/pressure_plate/aa_pressure_plate.json deleted file mode 100644 index ce937429..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/pressure_plate/aa_pressure_plate.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## " - ], - "key": { - "#": { - "item": "strata:aa" - } - }, - "result": { - "item": "strata:aa_pressure_plate" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/pressure_plate/adakite_pressure_plate.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/pressure_plate/adakite_pressure_plate.json deleted file mode 100644 index ce3a2fc5..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/pressure_plate/adakite_pressure_plate.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## " - ], - "key": { - "#": { - "item": "strata:adakite" - } - }, - "result": { - "item": "strata:adakite_pressure_plate" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/pressure_plate/basalt_pressure_plate.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/pressure_plate/basalt_pressure_plate.json deleted file mode 100644 index 35d97d01..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/pressure_plate/basalt_pressure_plate.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## " - ], - "key": { - "#": { - "item": "strata:basalt" - } - }, - "result": { - "item": "strata:basalt_pressure_plate" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/pressure_plate/gabbro_pressure_plate.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/pressure_plate/gabbro_pressure_plate.json deleted file mode 100644 index 04689d4f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/pressure_plate/gabbro_pressure_plate.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## " - ], - "key": { - "#": { - "item": "strata:gabbro" - } - }, - "result": { - "item": "strata:gabbro_pressure_plate" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/pressure_plate/pahoehoe_pressure_plate.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/pressure_plate/pahoehoe_pressure_plate.json deleted file mode 100644 index 85170252..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/crafting/pressure_plate/pahoehoe_pressure_plate.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## " - ], - "key": { - "#": { - "item": "strata:pahoehoe" - } - }, - "result": { - "item": "strata:pahoehoe_pressure_plate" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/aa.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/aa.json deleted file mode 100644 index cd9f328e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/aa.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:aa_cobblestone" - }, - "result": "strata:aa", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/aa_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/aa_slab.json deleted file mode 100644 index b2bc7d26..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/aa_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:aa" - } - }, - "result": { - "item": "strata:aa_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/aa_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/aa_stairs.json deleted file mode 100644 index 0bfe2679..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/aa_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:aa" - } - }, - "result": { - "item": "strata:aa_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/aa_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/aa_wall.json deleted file mode 100644 index 58bd1d27..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/aa_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:aa" - } - }, - "result": { - "item": "strata:aa_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/adakite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/adakite.json deleted file mode 100644 index eeebba0c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/adakite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:adakite_cobblestone" - }, - "result": "strata:adakite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/adakite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/adakite_slab.json deleted file mode 100644 index ef4d1834..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/adakite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:adakite" - } - }, - "result": { - "item": "strata:adakite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/adakite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/adakite_stairs.json deleted file mode 100644 index a00cd356..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/adakite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:adakite" - } - }, - "result": { - "item": "strata:adakite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/adakite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/adakite_wall.json deleted file mode 100644 index 3c86d815..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/adakite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:adakite" - } - }, - "result": { - "item": "strata:adakite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/alkali_fieldspar_granite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/alkali_fieldspar_granite.json deleted file mode 100644 index 1c482747..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/alkali_fieldspar_granite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:alkali_fieldspar_granite_cobblestone" - }, - "result": "strata:alkali_fieldspar_granite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/alkali_fieldspar_granite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/alkali_fieldspar_granite_slab.json deleted file mode 100644 index 9cf9fb59..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/alkali_fieldspar_granite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:alkali_fieldspar_granite" - } - }, - "result": { - "item": "strata:alkali_fieldspar_granite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/alkali_fieldspar_granite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/alkali_fieldspar_granite_stairs.json deleted file mode 100644 index 4029d3cf..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/alkali_fieldspar_granite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:alkali_fieldspar_granite" - } - }, - "result": { - "item": "strata:alkali_fieldspar_granite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/alkali_fieldspar_granite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/alkali_fieldspar_granite_wall.json deleted file mode 100644 index f3aac823..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/alkali_fieldspar_granite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:alkali_fieldspar_granite" - } - }, - "result": { - "item": "strata:alkali_fieldspar_granite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/aplite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/aplite.json deleted file mode 100644 index 2da92fd4..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/aplite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:aplite_cobblestone" - }, - "result": "strata:aplite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/aplite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/aplite_slab.json deleted file mode 100644 index 2f16982f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/aplite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:aplite" - } - }, - "result": { - "item": "strata:aplite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/aplite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/aplite_stairs.json deleted file mode 100644 index dd94f950..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/aplite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:aplite" - } - }, - "result": { - "item": "strata:aplite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/aplite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/aplite_wall.json deleted file mode 100644 index d8f9b973..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/aplite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:aplite" - } - }, - "result": { - "item": "strata:aplite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basalt.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basalt.json deleted file mode 100644 index 90585131..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basalt.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:basalt_cobblestone" - }, - "result": "strata:basalt", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basalt_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basalt_slab.json deleted file mode 100644 index e855e7bd..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basalt_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:basalt" - } - }, - "result": { - "item": "strata:basalt_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basalt_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basalt_stairs.json deleted file mode 100644 index 443be8e3..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basalt_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:basalt" - } - }, - "result": { - "item": "strata:basalt_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basalt_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basalt_wall.json deleted file mode 100644 index dc10fb78..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basalt_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:basalt" - } - }, - "result": { - "item": "strata:basalt_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basaltic_trachyandesite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basaltic_trachyandesite.json deleted file mode 100644 index 3662e3ee..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basaltic_trachyandesite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:basaltic_trachyandesite_cobblestone" - }, - "result": "strata:basaltic_trachyandesite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basaltic_trachyandesite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basaltic_trachyandesite_slab.json deleted file mode 100644 index 87e62458..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basaltic_trachyandesite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:basaltic_trachyandesite" - } - }, - "result": { - "item": "strata:basaltic_trachyandesite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basaltic_trachyandesite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basaltic_trachyandesite_stairs.json deleted file mode 100644 index a2613107..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basaltic_trachyandesite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:basaltic_trachyandesite" - } - }, - "result": { - "item": "strata:basaltic_trachyandesite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basaltic_trachyandesite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basaltic_trachyandesite_wall.json deleted file mode 100644 index d4131b4a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basaltic_trachyandesite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:basaltic_trachyandesite" - } - }, - "result": { - "item": "strata:basaltic_trachyandesite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basanite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basanite.json deleted file mode 100644 index a64eb0a9..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basanite.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:basanite" - } - }, - "result": { - "item": "strata:basanite", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basanite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basanite_slab.json deleted file mode 100644 index 8a962e57..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basanite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:basanite" - } - }, - "result": { - "item": "strata:basanite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basanite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basanite_stairs.json deleted file mode 100644 index a01b308b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basanite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:basanite" - } - }, - "result": { - "item": "strata:basanite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basanite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basanite_wall.json deleted file mode 100644 index 5c79696c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/basanite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:basanite" - } - }, - "result": { - "item": "strata:basanite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/benmoreite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/benmoreite.json deleted file mode 100644 index e35fef60..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/benmoreite.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:benmoreite" - } - }, - "result": { - "item": "strata:benmoreite", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/benmoreite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/benmoreite_slab.json deleted file mode 100644 index 8a962e57..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/benmoreite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:basanite" - } - }, - "result": { - "item": "strata:basanite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/benmoreite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/benmoreite_stairs.json deleted file mode 100644 index a01b308b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/benmoreite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:basanite" - } - }, - "result": { - "item": "strata:basanite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/benmoreite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/benmoreite_wall.json deleted file mode 100644 index 5c79696c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/benmoreite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:basanite" - } - }, - "result": { - "item": "strata:basanite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/blairmorite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/blairmorite.json deleted file mode 100644 index e57682dc..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/blairmorite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:blairmorite_cobblestone" - }, - "result": "strata:blairmorite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/blairmorite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/blairmorite_slab.json deleted file mode 100644 index 9dca7424..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/blairmorite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:blairmorite" - } - }, - "result": { - "item": "strata:blairmorite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/blairmorite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/blairmorite_stairs.json deleted file mode 100644 index cfc3ae9f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/blairmorite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:blairmorite" - } - }, - "result": { - "item": "strata:blairmorite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/blairmorite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/blairmorite_wall.json deleted file mode 100644 index d26f7d98..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/blairmorite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:blairmorite" - } - }, - "result": { - "item": "strata:blairmorite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/boninite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/boninite.json deleted file mode 100644 index e57682dc..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/boninite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:blairmorite_cobblestone" - }, - "result": "strata:blairmorite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/boninite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/boninite_slab.json deleted file mode 100644 index a595ee8f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/boninite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:boninite" - } - }, - "result": { - "item": "strata:blairmorite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/boninite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/boninite_stairs.json deleted file mode 100644 index cfc3ae9f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/boninite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:blairmorite" - } - }, - "result": { - "item": "strata:blairmorite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/boninite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/boninite_wall.json deleted file mode 100644 index d26f7d98..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/boninite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:blairmorite" - } - }, - "result": { - "item": "strata:blairmorite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/carbonatite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/carbonatite.json deleted file mode 100644 index 16fbcb6f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/carbonatite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:carbonatite_cobblestone" - }, - "result": "strata:carbonatite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/carbonatite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/carbonatite_slab.json deleted file mode 100644 index 3e08062c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/carbonatite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:carbonatite" - } - }, - "result": { - "item": "strata:carbonatite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/carbonatite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/carbonatite_stairs.json deleted file mode 100644 index e6727193..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/carbonatite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:carbonatite" - } - }, - "result": { - "item": "strata:carbonatite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/carbonatite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/carbonatite_wall.json deleted file mode 100644 index 97c1efb4..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/carbonatite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:carbonatite" - } - }, - "result": { - "item": "strata:carbonatite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/charnockite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/charnockite.json deleted file mode 100644 index c9e6d639..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/charnockite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:charnockite_cobblestone" - }, - "result": "strata:charnockite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/charnockite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/charnockite_slab.json deleted file mode 100644 index df1dc5a0..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/charnockite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:charnockite" - } - }, - "result": { - "item": "strata:charnockite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/charnockite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/charnockite_stairs.json deleted file mode 100644 index 4abc6dfa..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/charnockite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:charnockite" - } - }, - "result": { - "item": "strata:charnockite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/charnockite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/charnockite_wall.json deleted file mode 100644 index 76c11a2c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/charnockite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:charnockite" - } - }, - "result": { - "item": "strata:charnockite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/comendite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/comendite.json deleted file mode 100644 index 9f3c941c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/comendite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:comendite_cobblestone" - }, - "result": "strata:comendite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/comendite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/comendite_slab.json deleted file mode 100644 index 1ade5e28..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/comendite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:comendite" - } - }, - "result": { - "item": "strata:comendite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/comendite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/comendite_stairs.json deleted file mode 100644 index aaebcc47..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/comendite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:comendite" - } - }, - "result": { - "item": "strata:comendite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/comendite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/comendite_wall.json deleted file mode 100644 index 1543b90b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/comendite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:comendite" - } - }, - "result": { - "item": "strata:comendite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/dacite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/dacite.json deleted file mode 100644 index a19a8a72..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/dacite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:dacite_cobblestone" - }, - "result": "strata:dacite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/dacite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/dacite_slab.json deleted file mode 100644 index 037a1164..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/dacite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:dacite" - } - }, - "result": { - "item": "strata:dacite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/dacite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/dacite_stairs.json deleted file mode 100644 index 15a454bc..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/dacite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:dacite" - } - }, - "result": { - "item": "strata:dacite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/dacite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/dacite_wall.json deleted file mode 100644 index 82b3eee7..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/dacite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:dacite" - } - }, - "result": { - "item": "strata:dacite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/diabase.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/diabase.json deleted file mode 100644 index a7c33910..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/diabase.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:diabase_cobblestone" - }, - "result": "strata:diabase", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/diabase_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/diabase_slab.json deleted file mode 100644 index 0e371887..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/diabase_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:diabase" - } - }, - "result": { - "item": "strata:diabase_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/diabase_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/diabase_stairs.json deleted file mode 100644 index 1b4cd3be..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/diabase_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:diabase" - } - }, - "result": { - "item": "strata:diabase_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/diabase_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/diabase_wall.json deleted file mode 100644 index f65396a8..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/diabase_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:diabase" - } - }, - "result": { - "item": "strata:diabase_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/dunite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/dunite.json deleted file mode 100644 index 3fd583ef..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/dunite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:dunite_cobblestone" - }, - "result": "strata:dunite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/dunite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/dunite_slab.json deleted file mode 100644 index c057929a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/dunite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:dunite" - } - }, - "result": { - "item": "strata:dunite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/dunite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/dunite_stairs.json deleted file mode 100644 index c39cbb38..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/dunite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:dunite" - } - }, - "result": { - "item": "strata:dunite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/dunite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/dunite_wall.json deleted file mode 100644 index baa6cad5..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/dunite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:dunite" - } - }, - "result": { - "item": "strata:dunite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/enderbite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/enderbite.json deleted file mode 100644 index 0e62676e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/enderbite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:enderbite_cobblestone" - }, - "result": "strata:enderbite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/enderbite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/enderbite_slab.json deleted file mode 100644 index f46cad88..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/enderbite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:enderbite" - } - }, - "result": { - "item": "strata:enderbite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/enderbite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/enderbite_stairs.json deleted file mode 100644 index 44576cf5..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/enderbite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:enderbite" - } - }, - "result": { - "item": "strata:enderbite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/enderbite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/enderbite_wall.json deleted file mode 100644 index 2fc90dab..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/enderbite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:enderbite" - } - }, - "result": { - "item": "strata:enderbite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/essexite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/essexite.json deleted file mode 100644 index a3916401..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/essexite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:essexite_cobblestone" - }, - "result": "strata:essexite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/essexite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/essexite_slab.json deleted file mode 100644 index 6fd894bc..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/essexite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:essexite" - } - }, - "result": { - "item": "strata:essexite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/essexite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/essexite_stairs.json deleted file mode 100644 index 91d34b15..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/essexite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:essexite" - } - }, - "result": { - "item": "strata:essexite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/essexite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/essexite_wall.json deleted file mode 100644 index 2125ec0e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/essexite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:essexite" - } - }, - "result": { - "item": "strata:essexite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/foidolite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/foidolite.json deleted file mode 100644 index f8daa2d6..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/foidolite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:foidolite_cobblestone" - }, - "result": "strata:foidolite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/foidolite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/foidolite_slab.json deleted file mode 100644 index 23b507aa..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/foidolite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:foidolite" - } - }, - "result": { - "item": "strata:foidolite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/foidolite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/foidolite_stairs.json deleted file mode 100644 index bc3e76cb..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/foidolite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:foidolite" - } - }, - "result": { - "item": "strata:foidolite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/foidolite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/foidolite_wall.json deleted file mode 100644 index 3443ebf5..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/foidolite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:foidolite" - } - }, - "result": { - "item": "strata:foidolite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/gabbro.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/gabbro.json deleted file mode 100644 index 138b24e0..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/gabbro.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:gabbro_cobblestone" - }, - "result": "strata:gabbro", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/gabbro_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/gabbro_slab.json deleted file mode 100644 index 80a39958..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/gabbro_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:gabbro" - } - }, - "result": { - "item": "strata:gabbro_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/gabbro_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/gabbro_stairs.json deleted file mode 100644 index c4afe11a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/gabbro_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:gabbro" - } - }, - "result": { - "item": "strata:gabbro_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/gabbro_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/gabbro_wall.json deleted file mode 100644 index daff4758..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/gabbro_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:gabbro" - } - }, - "result": { - "item": "strata:gabbro_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/granodiorite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/granodiorite.json deleted file mode 100644 index 138b24e0..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/granodiorite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:gabbro_cobblestone" - }, - "result": "strata:gabbro", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/granodiorite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/granodiorite_slab.json deleted file mode 100644 index 80a39958..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/granodiorite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:gabbro" - } - }, - "result": { - "item": "strata:gabbro_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/granodiorite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/granodiorite_stairs.json deleted file mode 100644 index c4afe11a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/granodiorite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:gabbro" - } - }, - "result": { - "item": "strata:gabbro_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/granodiorite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/granodiorite_wall.json deleted file mode 100644 index daff4758..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/granodiorite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:gabbro" - } - }, - "result": { - "item": "strata:gabbro_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/granophyre.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/granophyre.json deleted file mode 100644 index d8b9f5f4..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/granophyre.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:granophyre_cobblestone" - }, - "result": "strata:granophyre", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/granophyre_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/granophyre_slab.json deleted file mode 100644 index f62c3291..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/granophyre_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:granophyre" - } - }, - "result": { - "item": "strata:granophyre_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/granophyre_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/granophyre_stairs.json deleted file mode 100644 index ce995c3f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/granophyre_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:granophyre" - } - }, - "result": { - "item": "strata:granophyre_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/granophyre_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/granophyre_wall.json deleted file mode 100644 index 94cdcac9..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/granophyre_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:granophyre" - } - }, - "result": { - "item": "strata:granophyre_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hawaiite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hawaiite.json deleted file mode 100644 index 594ee4f2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hawaiite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:hawaiite_cobblestone" - }, - "result": "strata:hawaiite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hawaiite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hawaiite_slab.json deleted file mode 100644 index 96c17c28..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hawaiite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:hawaiite" - } - }, - "result": { - "item": "strata:hawaiite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hawaiite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hawaiite_stairs.json deleted file mode 100644 index f06f9c28..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hawaiite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:hawaiite" - } - }, - "result": { - "item": "strata:hawaiite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hawaiite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hawaiite_wall.json deleted file mode 100644 index 76b8048b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hawaiite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:hawaiite" - } - }, - "result": { - "item": "strata:hawaiite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hazburgite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hazburgite.json deleted file mode 100644 index 0a32a8b8..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hazburgite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:hazburgite_cobblestone" - }, - "result": "strata:hazburgite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hazburgite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hazburgite_slab.json deleted file mode 100644 index 12146136..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hazburgite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:hazburgite" - } - }, - "result": { - "item": "strata:hazburgite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hazburgite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hazburgite_stairs.json deleted file mode 100644 index b40747fe..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hazburgite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:hazburgite" - } - }, - "result": { - "item": "strata:hazburgite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hazburgite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hazburgite_wall.json deleted file mode 100644 index a423955f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hazburgite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:hazburgite" - } - }, - "result": { - "item": "strata:hazburgite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hornblendite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hornblendite.json deleted file mode 100644 index 133dd983..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hornblendite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:hornblendite_cobblestone" - }, - "result": "strata:hornblendite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hornblendite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hornblendite_slab.json deleted file mode 100644 index 09c78241..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hornblendite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:hornblendite" - } - }, - "result": { - "item": "strata:hornblendite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hornblendite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hornblendite_stairs.json deleted file mode 100644 index fb3eb4fb..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hornblendite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:hornblendite" - } - }, - "result": { - "item": "strata:hornblendite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hornblendite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hornblendite_wall.json deleted file mode 100644 index 71742001..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hornblendite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:hornblendite" - } - }, - "result": { - "item": "strata:hornblendite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hyaloclastit.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hyaloclastit.json deleted file mode 100644 index 3e395129..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hyaloclastit.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:hyaloclastit_cobblestone" - }, - "result": "strata:hyaloclastit", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hyaloclastit_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hyaloclastit_slab.json deleted file mode 100644 index 8e92cf23..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hyaloclastit_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:hyaloclastit" - } - }, - "result": { - "item": "strata:hyaloclastit_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hyaloclastit_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hyaloclastit_stairs.json deleted file mode 100644 index d5cb6f0c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hyaloclastit_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:hyaloclastit" - } - }, - "result": { - "item": "strata:hyaloclastit_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hyaloclastit_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hyaloclastit_wall.json deleted file mode 100644 index 8e599c8f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/hyaloclastit_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:hyaloclastit" - } - }, - "result": { - "item": "strata:hyaloclastit_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/icelandite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/icelandite.json deleted file mode 100644 index cfe5e81a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/icelandite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:icelandite_cobblestone" - }, - "result": "strata:icelandite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/icelandite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/icelandite_slab.json deleted file mode 100644 index ba37b2b9..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/icelandite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:icelandite" - } - }, - "result": { - "item": "strata:icelandite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/icelandite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/icelandite_stairs.json deleted file mode 100644 index 862ca807..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/icelandite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:icelandite" - } - }, - "result": { - "item": "strata:icelandite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/icelandite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/icelandite_wall.json deleted file mode 100644 index 577fa76b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/icelandite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:icelandite" - } - }, - "result": { - "item": "strata:icelandite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/ijolite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/ijolite.json deleted file mode 100644 index 503613d7..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/ijolite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:ijolite_cobblestone" - }, - "result": "strata:ijolite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/ijolite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/ijolite_slab.json deleted file mode 100644 index 73fb1df5..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/ijolite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:ijolite" - } - }, - "result": { - "item": "strata:ijolite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/ijolite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/ijolite_stairs.json deleted file mode 100644 index 4813d310..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/ijolite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:ijolite" - } - }, - "result": { - "item": "strata:ijolite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/ijolite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/ijolite_wall.json deleted file mode 100644 index b2f7f83e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/ijolite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:ijolite" - } - }, - "result": { - "item": "strata:ijolite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/kimberlite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/kimberlite.json deleted file mode 100644 index 33bfa23c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/kimberlite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:kimberlite_cobblestone" - }, - "result": "strata:kimberlite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/kimberlite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/kimberlite_slab.json deleted file mode 100644 index 7f4da820..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/kimberlite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:kimberlite" - } - }, - "result": { - "item": "strata:kimberlite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/kimberlite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/kimberlite_stairs.json deleted file mode 100644 index 50d462b2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/kimberlite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:kimberlite" - } - }, - "result": { - "item": "strata:kimberlite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/komatiite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/komatiite.json deleted file mode 100644 index bd39d0f1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/komatiite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:komatiite_cobblestone" - }, - "result": "strata:komatiite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/komatiite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/komatiite_slab.json deleted file mode 100644 index 5395bfe6..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/komatiite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:komatiite" - } - }, - "result": { - "item": "strata:komatiite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/komatiite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/komatiite_stairs.json deleted file mode 100644 index 6cc13341..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/komatiite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:komatiite" - } - }, - "result": { - "item": "strata:komatiite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/komatiite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/komatiite_wall.json deleted file mode 100644 index cc9c5c9d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/komatiite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:komatiite" - } - }, - "result": { - "item": "strata:komatiite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/lamprophyre.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/lamprophyre.json deleted file mode 100644 index 539041f1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/lamprophyre.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:lamprophyre_cobblestone" - }, - "result": "strata:lamprophyre", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/lamprophyre_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/lamprophyre_slab.json deleted file mode 100644 index 4e1dd35c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/lamprophyre_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:lamprophyre" - } - }, - "result": { - "item": "strata:lamprophyre_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/lamprophyre_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/lamprophyre_stairs.json deleted file mode 100644 index b05a7572..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/lamprophyre_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:lamprophyre" - } - }, - "result": { - "item": "strata:lamprophyre_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/lamprophyre_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/lamprophyre_wall.json deleted file mode 100644 index 44669233..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/lamprophyre_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:lamprophyre" - } - }, - "result": { - "item": "strata:lamprophyre_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/latite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/latite.json deleted file mode 100644 index 1530631e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/latite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:latite_cobblestone" - }, - "result": "strata:latite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/latite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/latite_slab.json deleted file mode 100644 index 940a9785..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/latite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:latite" - } - }, - "result": { - "item": "strata:latite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/latite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/latite_stairs.json deleted file mode 100644 index b51a219c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/latite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:latite" - } - }, - "result": { - "item": "strata:latite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/latite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/latite_wall.json deleted file mode 100644 index e0bf447a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/latite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:latite" - } - }, - "result": { - "item": "strata:latite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/lherzolite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/lherzolite.json deleted file mode 100644 index 7a8fe660..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/lherzolite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:lherzolite_cobblestone" - }, - "result": "strata:lherzolite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/lherzolite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/lherzolite_slab.json deleted file mode 100644 index 0842d833..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/lherzolite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:lherzolite" - } - }, - "result": { - "item": "strata:lherzolite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/lherzolite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/lherzolite_stairs.json deleted file mode 100644 index 5efbaebf..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/lherzolite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:lherzolite" - } - }, - "result": { - "item": "strata:lherzolite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/lherzolite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/lherzolite_wall.json deleted file mode 100644 index b6c24e97..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/lherzolite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:lherzolite" - } - }, - "result": { - "item": "strata:lherzolite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/monzogranite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/monzogranite.json deleted file mode 100644 index 21995059..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/monzogranite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:monzogranite_cobblestone" - }, - "result": "strata:monzogranite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/monzogranite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/monzogranite_slab.json deleted file mode 100644 index 5be5f357..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/monzogranite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:monzogranite" - } - }, - "result": { - "item": "strata:monzogranite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/monzogranite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/monzogranite_stairs.json deleted file mode 100644 index 0c3eab82..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/monzogranite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:monzogranite" - } - }, - "result": { - "item": "strata:monzogranite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/monzogranite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/monzogranite_wall.json deleted file mode 100644 index 853323da..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/monzogranite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:monzogranite" - } - }, - "result": { - "item": "strata:monzogranite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/monzonite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/monzonite.json deleted file mode 100644 index 9a8e963e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/monzonite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:monzonite_cobblestone" - }, - "result": "strata:monzonite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/monzonite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/monzonite_slab.json deleted file mode 100644 index 82ddfc0c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/monzonite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:monzonite" - } - }, - "result": { - "item": "strata:monzonite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/monzonite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/monzonite_stairs.json deleted file mode 100644 index f92ccf09..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/monzonite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:monzonite" - } - }, - "result": { - "item": "strata:monzonite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/monzonite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/monzonite_wall.json deleted file mode 100644 index e6c433ac..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/monzonite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:monzonite" - } - }, - "result": { - "item": "strata:monzonite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/mugearite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/mugearite.json deleted file mode 100644 index ab592766..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/mugearite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:mugearite_cobblestone" - }, - "result": "strata:mugearite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/mugearite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/mugearite_slab.json deleted file mode 100644 index 0b5b0d81..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/mugearite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mugearite" - } - }, - "result": { - "item": "strata:mugearite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/mugearite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/mugearite_stairs.json deleted file mode 100644 index 0baf62a7..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/mugearite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mugearite" - } - }, - "result": { - "item": "strata:mugearite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/mugearite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/mugearite_wall.json deleted file mode 100644 index da128a52..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/mugearite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mugearite" - } - }, - "result": { - "item": "strata:mugearite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/napoleonite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/napoleonite.json deleted file mode 100644 index f05e0629..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/napoleonite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:napoleonite_cobblestone" - }, - "result": "strata:napoleonite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/napoleonite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/napoleonite_slab.json deleted file mode 100644 index 9b1c1f8d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/napoleonite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:napoleonite" - } - }, - "result": { - "item": "strata:napoleonite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/napoleonite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/napoleonite_stairs.json deleted file mode 100644 index 7442720f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/napoleonite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:napoleonite" - } - }, - "result": { - "item": "strata:napoleonite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/napoleonite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/napoleonite_wall.json deleted file mode 100644 index 781b2425..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/napoleonite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:napoleonite" - } - }, - "result": { - "item": "strata:napoleonite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/nephelinite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/nephelinite.json deleted file mode 100644 index ce907e60..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/nephelinite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:nephelinite_cobblestone" - }, - "result": "strata:nephelinite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/nephelinite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/nephelinite_slab.json deleted file mode 100644 index 0f95f18d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/nephelinite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:nephelinite" - } - }, - "result": { - "item": "strata:nephelinite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/nephelinite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/nephelinite_stairs.json deleted file mode 100644 index 85eb39a5..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/nephelinite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:nephelinite" - } - }, - "result": { - "item": "strata:nephelinite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/nephelinite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/nephelinite_wall.json deleted file mode 100644 index 6d793e91..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/nephelinite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:nephelinite" - } - }, - "result": { - "item": "strata:nephelinite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/norite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/norite.json deleted file mode 100644 index 26e67b69..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/norite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:norite_cobblestone" - }, - "result": "strata:norite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/norite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/norite_slab.json deleted file mode 100644 index 9164d2b6..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/norite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:norite" - } - }, - "result": { - "item": "strata:norite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/norite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/norite_stairs.json deleted file mode 100644 index 2e547564..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/norite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:norite" - } - }, - "result": { - "item": "strata:norite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/norite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/norite_wall.json deleted file mode 100644 index ab0b1403..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/norite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:norite" - } - }, - "result": { - "item": "strata:norite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pahoehoe.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pahoehoe.json deleted file mode 100644 index 488b6b67..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pahoehoe.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:pahoehoe_cobblestone" - }, - "result": "strata:pahoehoe", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pahoehoe_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pahoehoe_slab.json deleted file mode 100644 index 7d103069..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pahoehoe_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:pahoehoe" - } - }, - "result": { - "item": "strata:pahoehoe_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pahoehoe_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pahoehoe_stairs.json deleted file mode 100644 index ef56b714..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pahoehoe_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:pahoehoe" - } - }, - "result": { - "item": "strata:pahoehoe_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pahoehoe_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pahoehoe_wall.json deleted file mode 100644 index 6c1c53e2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pahoehoe_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:pahoehoe" - } - }, - "result": { - "item": "strata:pahoehoe_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pantellerite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pantellerite.json deleted file mode 100644 index 5d3e6cd5..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pantellerite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:pantellerite_cobblestone" - }, - "result": "strata:pantellerite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pantellerite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pantellerite_slab.json deleted file mode 100644 index 944a52be..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pantellerite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:pantellerite" - } - }, - "result": { - "item": "strata:pantellerite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pantellerite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pantellerite_stairs.json deleted file mode 100644 index e48683f8..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pantellerite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:pantellerite" - } - }, - "result": { - "item": "strata:pantellerite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pantellerite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pantellerite_wall.json deleted file mode 100644 index cdc4b7ad..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pantellerite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:pantellerite" - } - }, - "result": { - "item": "strata:pantellerite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pegmatite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pegmatite.json deleted file mode 100644 index e5fd9818..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pegmatite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:pegmatite_cobblestone" - }, - "result": "strata:pegmatite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pegmatite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pegmatite_slab.json deleted file mode 100644 index 7e8a05db..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pegmatite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:pegmatite" - } - }, - "result": { - "item": "strata:pegmatite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pegmatite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pegmatite_stairs.json deleted file mode 100644 index a428ce86..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pegmatite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:pegmatite" - } - }, - "result": { - "item": "strata:pegmatite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pegmatite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pegmatite_wall.json deleted file mode 100644 index 89fbebb9..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pegmatite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:pegmatite" - } - }, - "result": { - "item": "strata:pegmatite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/peridotite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/peridotite.json deleted file mode 100644 index 4f5cc435..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/peridotite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:peridotite_cobblestone" - }, - "result": "strata:peridotite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/peridotite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/peridotite_slab.json deleted file mode 100644 index 7e33d21c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/peridotite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:peridotite" - } - }, - "result": { - "item": "strata:peridotite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/peridotite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/peridotite_stairs.json deleted file mode 100644 index 5751792b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/peridotite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:peridotite" - } - }, - "result": { - "item": "strata:peridotite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/peridotite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/peridotite_wall.json deleted file mode 100644 index a90cddcc..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/peridotite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:peridotite" - } - }, - "result": { - "item": "strata:peridotite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/phonolite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/phonolite.json deleted file mode 100644 index 744d6727..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/phonolite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:phonolite_cobblestone" - }, - "result": "strata:phonolite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/phonolite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/phonolite_slab.json deleted file mode 100644 index 7ce9aa53..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/phonolite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:phonolite" - } - }, - "result": { - "item": "strata:phonolite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/phonolite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/phonolite_stairs.json deleted file mode 100644 index 848376c4..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/phonolite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:phonolite" - } - }, - "result": { - "item": "strata:phonolite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/phonolite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/phonolite_wall.json deleted file mode 100644 index f2c8bb30..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/phonolite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:phonolite" - } - }, - "result": { - "item": "strata:phonolite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/phonotephrite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/phonotephrite.json deleted file mode 100644 index dd87c9ff..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/phonotephrite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:phonotephrite_cobblestone" - }, - "result": "strata:phonotephrite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/phonotephrite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/phonotephrite_slab.json deleted file mode 100644 index 8bf508e9..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/phonotephrite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:phonotephrite" - } - }, - "result": { - "item": "strata:phonotephrite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/phonotephrite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/phonotephrite_stairs.json deleted file mode 100644 index 31b13a01..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/phonotephrite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:phonotephrite" - } - }, - "result": { - "item": "strata:phonotephrite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/phonotephrite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/phonotephrite_wall.json deleted file mode 100644 index 44b171da..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/phonotephrite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:phonotephrite" - } - }, - "result": { - "item": "strata:phonotephrite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/picrite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/picrite.json deleted file mode 100644 index eaa876b5..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/picrite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:picrite_cobblestone" - }, - "result": "strata:picrite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/picrite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/picrite_slab.json deleted file mode 100644 index a1724e0c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/picrite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:picrite" - } - }, - "result": { - "item": "strata:picrite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/picrite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/picrite_stairs.json deleted file mode 100644 index 26a35e88..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/picrite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:picrite" - } - }, - "result": { - "item": "strata:picrite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/picrite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/picrite_wall.json deleted file mode 100644 index 9682b8d3..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/picrite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:picrite" - } - }, - "result": { - "item": "strata:picrite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/porphyry.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/porphyry.json deleted file mode 100644 index 9e4c53e2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/porphyry.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:porphyry_cobblestone" - }, - "result": "strata:porphyry", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/porphyry_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/porphyry_slab.json deleted file mode 100644 index 8f20d99d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/porphyry_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:porphyry" - } - }, - "result": { - "item": "strata:porphyry_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/porphyry_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/porphyry_stairs.json deleted file mode 100644 index 68b26183..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/porphyry_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:porphyry" - } - }, - "result": { - "item": "strata:porphyry_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/porphyry_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/porphyry_wall.json deleted file mode 100644 index 48b777bf..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/porphyry_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:porphyry" - } - }, - "result": { - "item": "strata:porphyry_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pumice.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pumice.json deleted file mode 100644 index 40775988..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pumice.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:pumice_cobblestone" - }, - "result": "strata:pumice", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pumice_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pumice_slab.json deleted file mode 100644 index 4b2c2cc1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pumice_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:pumice" - } - }, - "result": { - "item": "strata:pumice_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pumice_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pumice_stairs.json deleted file mode 100644 index ed07b3c7..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pumice_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:pumice" - } - }, - "result": { - "item": "strata:pumice_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pumice_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pumice_wall.json deleted file mode 100644 index c0475dec..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pumice_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:pumice" - } - }, - "result": { - "item": "strata:pumice_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pyroxenite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pyroxenite.json deleted file mode 100644 index 8bf60ae0..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pyroxenite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:pyroxenite_cobblestone" - }, - "result": "strata:pyroxenite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pyroxenite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pyroxenite_slab.json deleted file mode 100644 index f7f6f9b8..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pyroxenite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:pyroxenite" - } - }, - "result": { - "item": "strata:pyroxenite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pyroxenite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pyroxenite_stairs.json deleted file mode 100644 index 64d7237e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pyroxenite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:pyroxenite" - } - }, - "result": { - "item": "strata:pyroxenite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pyroxenite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pyroxenite_wall.json deleted file mode 100644 index 625c90d2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/pyroxenite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:pyroxenite" - } - }, - "result": { - "item": "strata:pyroxenite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartz_diorite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartz_diorite.json deleted file mode 100644 index e62bbf86..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartz_diorite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:quartz_diorite_cobblestone" - }, - "result": "strata:quartz_diorite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartz_diorite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartz_diorite_slab.json deleted file mode 100644 index 94c982b6..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartz_diorite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:quartz_diorite" - } - }, - "result": { - "item": "strata:quartz_diorite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartz_diorite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartz_diorite_stairs.json deleted file mode 100644 index 95de3f33..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartz_diorite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:quartz_diorite" - } - }, - "result": { - "item": "strata:quartz_diorite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartz_diorite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartz_diorite_wall.json deleted file mode 100644 index 5c5508e2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartz_diorite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:quartz_diorite" - } - }, - "result": { - "item": "strata:quartz_diorite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartz_monzonite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartz_monzonite.json deleted file mode 100644 index c2f43a9b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartz_monzonite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:quartz_monzonite_cobblestone" - }, - "result": "strata:quartz_monzonite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartz_monzonite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartz_monzonite_slab.json deleted file mode 100644 index dbbf16e0..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartz_monzonite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:quartz_monzonite" - } - }, - "result": { - "item": "strata:quartz_monzonite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartz_monzonite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartz_monzonite_stairs.json deleted file mode 100644 index a3290df7..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartz_monzonite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:quartz_monzonite" - } - }, - "result": { - "item": "strata:quartz_monzonite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartz_monzonite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartz_monzonite_wall.json deleted file mode 100644 index 0bc766f1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartz_monzonite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:quartz_monzonite" - } - }, - "result": { - "item": "strata:quartz_monzonite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartzolite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartzolite.json deleted file mode 100644 index 3bd0af21..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartzolite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:quartzolite_cobblestone" - }, - "result": "strata:quartzolite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartzolite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartzolite_slab.json deleted file mode 100644 index 57de3a04..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartzolite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:quartzolite" - } - }, - "result": { - "item": "strata:quartzolite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartzolite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartzolite_stairs.json deleted file mode 100644 index 7246bc6e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartzolite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:quartzolite" - } - }, - "result": { - "item": "strata:quartzolite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartzolite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartzolite_wall.json deleted file mode 100644 index 227956c2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/quartzolite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:quartzolite" - } - }, - "result": { - "item": "strata:quartzolite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/rhyodacite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/rhyodacite.json deleted file mode 100644 index 0cf29c2f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/rhyodacite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:rhyodacite_cobblestone" - }, - "result": "strata:rhyodacite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/rhyodacite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/rhyodacite_slab.json deleted file mode 100644 index a709ff63..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/rhyodacite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:rhyodacite" - } - }, - "result": { - "item": "strata:rhyodacite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/rhyodacite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/rhyodacite_stairs.json deleted file mode 100644 index ed1f42fb..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/rhyodacite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:rhyodacite" - } - }, - "result": { - "item": "strata:rhyodacite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/rhyodacite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/rhyodacite_wall.json deleted file mode 100644 index 133fd372..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/rhyodacite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:rhyodacite" - } - }, - "result": { - "item": "strata:rhyodacite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/rhyolite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/rhyolite.json deleted file mode 100644 index f8a1bb92..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/rhyolite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:rhyolite_cobblestone" - }, - "result": "strata:rhyolite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/rhyolite_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/rhyolite_slab.json deleted file mode 100644 index 782d0618..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/rhyolite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:rhyolite" - } - }, - "result": { - "item": "strata:rhyolite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/rhyolite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/rhyolite_stairs.json deleted file mode 100644 index 8946f5a7..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/rhyolite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:rhyolite" - } - }, - "result": { - "item": "strata:rhyolite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/rhyolite_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/rhyolite_wall.json deleted file mode 100644 index e1dc95a1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/rhyolite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:rhyolite" - } - }, - "result": { - "item": "strata:rhyolite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/scoria.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/scoria.json deleted file mode 100644 index d5baf827..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/scoria.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:scoria_cobblestone" - }, - "result": "strata:scoria", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/scoria_slab.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/scoria_slab.json deleted file mode 100644 index 9a46a9d5..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/scoria_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:scoria" - } - }, - "result": { - "item": "strata:scoria_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/scoria_stairs.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/scoria_stairs.json deleted file mode 100644 index 57c182a4..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/scoria_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:scoria" - } - }, - "result": { - "item": "strata:scoria_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/scoria_wall.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/scoria_wall.json deleted file mode 100644 index a286c86e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/raw_stone/scoria_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:scoria" - } - }, - "result": { - "item": "strata:scoria_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/aa.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/aa.json deleted file mode 100644 index cd9f328e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/aa.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:aa_cobblestone" - }, - "result": "strata:aa", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/adakite.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/adakite.json deleted file mode 100644 index eeebba0c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/adakite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:adakite_cobblestone" - }, - "result": "strata:adakite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/cracked_aa_bricks.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/cracked_aa_bricks.json deleted file mode 100644 index 2fe26df4..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/cracked_aa_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:aa_bricks" - }, - "result": "strata:cracked_aa_bricks", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/cracked_adakite_bricks.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/cracked_adakite_bricks.json deleted file mode 100644 index fb711a06..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/cracked_adakite_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:adakite_bricks" - }, - "result": "strata:cracked_adakite_bricks", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/cracked_basalt_bricks.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/cracked_basalt_bricks.json deleted file mode 100644 index d140af87..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/cracked_basalt_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:basalt_bricks" - }, - "result": "strata:cracked_basalt_bricks", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/cracked_gabbro_bricks.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/cracked_gabbro_bricks.json deleted file mode 100644 index a74dc0d2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/cracked_gabbro_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:gabbro_bricks" - }, - "result": "strata:cracked_gabbro_bricks", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/cracked_pahoehoe_bricks.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/cracked_pahoehoe_bricks.json deleted file mode 100644 index a1e4987a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/cracked_pahoehoe_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:pahoehoe_bricks" - }, - "result": "strata:cracked_pahoehoe_bricks", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/pahoehoe.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/pahoehoe.json deleted file mode 100644 index 488b6b67..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/smelting/block/pahoehoe.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:pahoehoe_cobblestone" - }, - "result": "strata:pahoehoe", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/aa_slab_stonecutter.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/aa_slab_stonecutter.json deleted file mode 100644 index 88b818de..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/aa_slab_stonecutter.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:aa" - }, - "result": "strata:aa_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/aa_stairs_stonecutter.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/aa_stairs_stonecutter.json deleted file mode 100644 index f675fa59..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/aa_stairs_stonecutter.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:aa" - }, - "result": "strata:aa_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/aa_wall_stonecutter.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/aa_wall_stonecutter.json deleted file mode 100644 index 0f300d97..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/aa_wall_stonecutter.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:aa" - }, - "result": "strata:aa_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/basalt_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/basalt_slab_stonecutting.json deleted file mode 100644 index b7be99ab..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/basalt_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt" - }, - "result": "strata:basalt_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/basalt_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/basalt_stairs_stonecutting.json deleted file mode 100644 index 943b90bf..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/basalt_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt" - }, - "result": "strata:basalt_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/basalt_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/basalt_wall_stonecutting.json deleted file mode 100644 index 78c30be4..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/basalt_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt" - }, - "result": "strata:basalt_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/gabbro_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/gabbro_slab_stonecutting.json deleted file mode 100644 index 0672d579..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/gabbro_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gabbro" - }, - "result": "strata:gabbro_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/gabbro_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/gabbro_stairs_stonecutting.json deleted file mode 100644 index 6e26bb9a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/gabbro_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gabbro" - }, - "result": "strata:gabbro_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/gabbro_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/gabbro_wall_stonecutting.json deleted file mode 100644 index 25500677..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutter_recipies/gabbro_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gabbro" - }, - "result": "strata:gabbro_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/aa_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/aa_bricks_polished_stonecutting.json deleted file mode 100644 index 4f745609..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/aa_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:aa" - }, - "result": "strata:aa_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/aa_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/aa_bricks_stone_stonecutting.json deleted file mode 100644 index 4f745609..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/aa_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:aa" - }, - "result": "strata:aa_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/adakite_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/adakite_bricks_polished_stonecutting.json deleted file mode 100644 index 79674389..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/adakite_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:adakite" - }, - "result": "strata:adakite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/adakite_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/adakite_bricks_stone_stonecutting.json deleted file mode 100644 index 79674389..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/adakite_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:adakite" - }, - "result": "strata:adakite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_polished_stonecutting.json deleted file mode 100644 index 09088f85..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_basalt" - }, - "result": "strata:basalt_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_stone_stonecutting.json deleted file mode 100644 index 1bde2dd2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/basalt_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt" - }, - "result": "strata:basalt_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_aa_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_aa_bricks_bricks_stonecutting.json deleted file mode 100644 index e8e4eabe..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_aa_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:aa_bricks" - }, - "result": "strata:chiseled_aa_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_aa_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_aa_bricks_polished_stonecutting.json deleted file mode 100644 index 1410c68c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_aa_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_aa" - }, - "result": "strata:chiseled_aa_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_aa_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_aa_bricks_stone_stonecutting.json deleted file mode 100644 index d2ac515a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_aa_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:aa" - }, - "result": "strata:chiseled_aa_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_adakite_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_adakite_bricks_bricks_stonecutting.json deleted file mode 100644 index 026d6613..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_adakite_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:adakite_bricks" - }, - "result": "strata:chiseled_adakite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_adakite_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_adakite_bricks_polished_stonecutting.json deleted file mode 100644 index f74df8eb..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_adakite_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_adakite" - }, - "result": "strata:chiseled_adakite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_adakite_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_adakite_bricks_stone_stonecutting.json deleted file mode 100644 index 3a6316d7..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_adakite_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:adakite" - }, - "result": "strata:chiseled_adakite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_bricks_stonecutting.json deleted file mode 100644 index 74c67c60..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt_bricks" - }, - "result": "strata:chiseled_basalt_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_polished_stonecutting.json deleted file mode 100644 index a43d4372..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_basalt" - }, - "result": "strata:chiseled_basalt_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_stone_stonecutting.json deleted file mode 100644 index eb906323..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_basalt_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt" - }, - "result": "strata:chiseled_basalt_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_gabbro_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_gabbro_bricks_bricks_stonecutting.json deleted file mode 100644 index a07e3612..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_gabbro_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gabbro_bricks" - }, - "result": "strata:chiseled_gabbro_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_gabbro_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_gabbro_bricks_polished_stonecutting.json deleted file mode 100644 index f560cb48..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_gabbro_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_gabbro" - }, - "result": "strata:chiseled_gabbro_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_gabbro_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_gabbro_bricks_stone_stonecutting.json deleted file mode 100644 index f5f18038..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_gabbro_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gabbro" - }, - "result": "strata:chiseled_gabbro_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_pahoehoe_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_pahoehoe_bricks_bricks_stonecutting.json deleted file mode 100644 index 51e9a266..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_pahoehoe_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:pahoehoe_bricks" - }, - "result": "strata:chiseled_pahoehoe_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_pahoehoe_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_pahoehoe_bricks_polished_stonecutting.json deleted file mode 100644 index 26255818..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_pahoehoe_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_pahoehoe" - }, - "result": "strata:chiseled_pahoehoe_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_pahoehoe_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_pahoehoe_bricks_stone_stonecutting.json deleted file mode 100644 index ed5b58cb..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/chiseled_pahoehoe_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:pahoehoe" - }, - "result": "strata:chiseled_pahoehoe_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/gabbro_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/gabbro_bricks_polished_stonecutting.json deleted file mode 100644 index feb362bd..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/gabbro_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_gabbro" - }, - "result": "strata:gabbro_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/gabbro_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/gabbro_bricks_stone_stonecutting.json deleted file mode 100644 index 34f099a9..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/gabbro_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gabbro" - }, - "result": "strata:gabbro_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/pahoehoe_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/pahoehoe_bricks_polished_stonecutting.json deleted file mode 100644 index 017f0953..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/pahoehoe_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:pahoehoe" - }, - "result": "strata:pahoehoe_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/pahoehoe_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/pahoehoe_bricks_stone_stonecutting.json deleted file mode 100644 index 017f0953..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/pahoehoe_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:pahoehoe" - }, - "result": "strata:pahoehoe_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/polished_aa_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/polished_aa_stonecutting.json deleted file mode 100644 index e8fa9467..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/polished_aa_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:aa" - }, - "result": "strata:polished_aa", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/polished_adakite_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/polished_adakite_stonecutting.json deleted file mode 100644 index 90ea6d9a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/polished_adakite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:adakite" - }, - "result": "strata:polished_adakite", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/polished_basalt_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/polished_basalt_stonecutting.json deleted file mode 100644 index d0923a8f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/polished_basalt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt" - }, - "result": "strata:polished_basalt", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/polished_gabbro_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/polished_gabbro_stonecutting.json deleted file mode 100644 index 9b17954b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/polished_gabbro_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gabbro" - }, - "result": "strata:polished_gabbro", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/polished_pahoehoe_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/polished_pahoehoe_stonecutting.json deleted file mode 100644 index 9b2e4214..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/polished_pahoehoe_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:pahoehoe" - }, - "result": "strata:polished_pahoehoe", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/aa_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/aa_brick_slab_bricks_stonecutting.json deleted file mode 100644 index 80fc6da0..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/aa_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:aa_bricks" - }, - "result": "strata:aa_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/aa_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/aa_brick_slab_polished_stonecutting.json deleted file mode 100644 index 96e09ec7..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/aa_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_aa" - }, - "result": "strata:aa_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/aa_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/aa_brick_slab_stone_stonecutting.json deleted file mode 100644 index 18e4ed83..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/aa_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:aa" - }, - "result": "strata:aa_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/aa_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/aa_cobblestone_slab_stonecutting.json deleted file mode 100644 index d13835c9..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/aa_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:aa_cobblestone" - }, - "result": "strata:aa_cobblestone_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/aa_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/aa_slab_stonecutting.json deleted file mode 100644 index 88b818de..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/aa_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:aa" - }, - "result": "strata:aa_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/adakite_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/adakite_brick_slab_bricks_stonecutting.json deleted file mode 100644 index 88f39ca8..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/adakite_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:adakite_bricks" - }, - "result": "strata:adakite_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/adakite_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/adakite_brick_slab_polished_stonecutting.json deleted file mode 100644 index 9fa3bde5..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/adakite_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_adakite" - }, - "result": "strata:adakite_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/adakite_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/adakite_brick_slab_stone_stonecutting.json deleted file mode 100644 index 99d73c80..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/adakite_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:adakite" - }, - "result": "strata:adakite_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/adakite_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/adakite_cobblestone_slab_stonecutting.json deleted file mode 100644 index 215c5ce3..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/adakite_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:adakite_cobblestone" - }, - "result": "strata:adakite_cobblestone_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/adakite_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/adakite_slab_stonecutting.json deleted file mode 100644 index 132b5e69..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/adakite_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:adakite" - }, - "result": "strata:adakite_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_bricks_stonecutting.json deleted file mode 100644 index 0532aa9d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt_bricks" - }, - "result": "strata:basalt_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_polished_stonecutting.json deleted file mode 100644 index 5a57cfde..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_basalt" - }, - "result": "strata:basalt_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_stone_stonecutting.json deleted file mode 100644 index 2f8eba71..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt" - }, - "result": "strata:basalt_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_slab_stonecutting.json deleted file mode 100644 index b7be99ab..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/basalt_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt" - }, - "result": "strata:basalt_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/gabbro_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/gabbro_brick_slab_bricks_stonecutting.json deleted file mode 100644 index b9be4a53..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/gabbro_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gabbro_bricks" - }, - "result": "strata:gabbro_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/gabbro_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/gabbro_brick_slab_polished_stonecutting.json deleted file mode 100644 index 52eb870c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/gabbro_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_gabbro" - }, - "result": "strata:gabbro_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/gabbro_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/gabbro_brick_slab_stone_stonecutting.json deleted file mode 100644 index dec5692e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/gabbro_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gabbro" - }, - "result": "strata:gabbro_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/gabbro_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/gabbro_slab_stonecutting.json deleted file mode 100644 index 0672d579..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/gabbro_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gabbro" - }, - "result": "strata:gabbro_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_aa_brick_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_aa_brick_slab_stonecutting.json deleted file mode 100644 index c210d791..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_aa_brick_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_aa_bricks" - }, - "result": "strata:mossy_aa_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_aa_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_aa_cobblestone_slab_stonecutting.json deleted file mode 100644 index b1a37a98..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_aa_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_aa_cobblestone" - }, - "result": "strata:mossy_aa_cobblestone_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_adakite_brick_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_adakite_brick_slab_stonecutting.json deleted file mode 100644 index 97d5c6af..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_adakite_brick_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_adakite_bricks" - }, - "result": "strata:mossy_adakite_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_adakite_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_adakite_cobblestone_slab_stonecutting.json deleted file mode 100644 index 36b91dc3..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_adakite_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_adakite_cobblestone" - }, - "result": "strata:mossy_adakite_cobblestone_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_basalt_brick_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_basalt_brick_slab_stonecutting.json deleted file mode 100644 index 76594f37..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_basalt_brick_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_basalt_bricks" - }, - "result": "strata:mossy_basalt_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_gabbro_brick_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_gabbro_brick_slab_stonecutting.json deleted file mode 100644 index ae07063a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_gabbro_brick_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_gabbro_bricks" - }, - "result": "strata:mossy_gabbro_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_pahoehoe_brick_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_pahoehoe_brick_slab_stonecutting.json deleted file mode 100644 index 0b684bb0..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_pahoehoe_brick_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_pahoehoe_bricks" - }, - "result": "strata:mossy_pahoehoe_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_pahoehoe_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_pahoehoe_cobblestone_slab_stonecutting.json deleted file mode 100644 index 9026c4cb..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/mossy_pahoehoe_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_pahoehoe_cobblestone" - }, - "result": "strata:mossy_pahoehoe_cobblestone_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/pahoehoe_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/pahoehoe_brick_slab_bricks_stonecutting.json deleted file mode 100644 index e2ca5ca7..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/pahoehoe_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:pahoehoe_bricks" - }, - "result": "strata:pahoehoe_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/pahoehoe_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/pahoehoe_brick_slab_polished_stonecutting.json deleted file mode 100644 index 5591d352..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/pahoehoe_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_pahoehoe" - }, - "result": "strata:pahoehoe_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/pahoehoe_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/pahoehoe_brick_slab_stone_stonecutting.json deleted file mode 100644 index 632d7f7a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/pahoehoe_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:pahoehoe" - }, - "result": "strata:pahoehoe_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/pahoehoe_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/pahoehoe_cobblestone_slab_stonecutting.json deleted file mode 100644 index 98938472..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/pahoehoe_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:pahoehoe_cobblestone" - }, - "result": "strata:pahoehoe_cobblestone_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/pahoehoe_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/pahoehoe_slab_stonecutting.json deleted file mode 100644 index def536a8..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/pahoehoe_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:pahoehoe" - }, - "result": "strata:pahoehoe_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_aa_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_aa_slab_polished_stonecutting.json deleted file mode 100644 index eaab8702..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_aa_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_aa" - }, - "result": "strata:polished_aa_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_aa_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_aa_slab_stone_stonecutting.json deleted file mode 100644 index dee43923..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_aa_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:aa" - }, - "result": "strata:polished_aa_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_adakite_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_adakite_slab_polished_stonecutting.json deleted file mode 100644 index 8a846a85..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_adakite_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_adakite" - }, - "result": "strata:polished_adakite_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_adakite_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_adakite_slab_stone_stonecutting.json deleted file mode 100644 index e8ab28fe..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_adakite_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:adakite" - }, - "result": "strata:polished_adakite_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_polished_stonecutting.json deleted file mode 100644 index 35118a1f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_basalt" - }, - "result": "strata:polished_basalt_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_stone_stonecutting.json deleted file mode 100644 index ad357baf..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_basalt_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt" - }, - "result": "strata:polished_basalt_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_gabbro_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_gabbro_slab_polished_stonecutting.json deleted file mode 100644 index 5160c585..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_gabbro_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_gabbro" - }, - "result": "strata:polished_gabbro_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_gabbro_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_gabbro_slab_stone_stonecutting.json deleted file mode 100644 index 1b788ae4..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_gabbro_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gabbro" - }, - "result": "strata:polished_gabbro_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_pahoehoe_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_pahoehoe_slab_polished_stonecutting.json deleted file mode 100644 index d9d94ceb..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_pahoehoe_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_pahoehoe" - }, - "result": "strata:polished_pahoehoe_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_pahoehoe_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_pahoehoe_slab_stone_stonecutting.json deleted file mode 100644 index 4c689678..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/slab/polished_pahoehoe_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:pahoehoe" - }, - "result": "strata:polished_pahoehoe_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/aa_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/aa_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index 96d7803f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/aa_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:aa_bricks" - }, - "result": "strata:aa_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/aa_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/aa_brick_stairs_polished_stonecutting.json deleted file mode 100644 index e8701293..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/aa_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_aa" - }, - "result": "strata:aa_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/aa_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/aa_brick_stairs_stone_stonecutting.json deleted file mode 100644 index bd0afa54..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/aa_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:aa" - }, - "result": "strata:aa_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/aa_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/aa_cobblestone_stairs_stonecutting.json deleted file mode 100644 index a427dd3c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/aa_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:aa_cobblestone" - }, - "result": "strata:aa_cobblestone_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/aa_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/aa_stairs_stonecutting.json deleted file mode 100644 index f675fa59..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/aa_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:aa" - }, - "result": "strata:aa_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/adakite_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/adakite_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index 974dd071..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/adakite_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:adakite_bricks" - }, - "result": "strata:adakite_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/adakite_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/adakite_brick_stairs_polished_stonecutting.json deleted file mode 100644 index fd021f02..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/adakite_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_adakite" - }, - "result": "strata:adakite_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/adakite_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/adakite_brick_stairs_stone_stonecutting.json deleted file mode 100644 index e0a7a7c6..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/adakite_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:adakite" - }, - "result": "strata:adakite_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/adakite_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/adakite_cobblestone_stairs_stonecutting.json deleted file mode 100644 index 444aafaa..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/adakite_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:adakite_cobblestone" - }, - "result": "strata:adakite_cobblestone_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/adakite_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/adakite_stairs_stonecutting.json deleted file mode 100644 index 2d1382d8..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/adakite_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:adakite" - }, - "result": "strata:adakite_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index 4d53682c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt_bricks" - }, - "result": "strata:basalt_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_polished_stonecutting.json deleted file mode 100644 index f08980c3..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_basalt" - }, - "result": "strata:basalt_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_stone_stonecutting.json deleted file mode 100644 index c54521be..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt" - }, - "result": "strata:basalt_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_stairs_stonecutting.json deleted file mode 100644 index 943b90bf..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/basalt_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt" - }, - "result": "strata:basalt_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index 7bffae77..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gabbro_bricks" - }, - "result": "strata:gabbro_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_brick_stairs_polished_stonecutting.json deleted file mode 100644 index dd0b7334..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_gabbro" - }, - "result": "strata:gabbro_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_brick_stairs_stone_stonecutting.json deleted file mode 100644 index 3a2e87f9..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gabbro" - }, - "result": "strata:gabbro_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_stairs_stonecutting.json deleted file mode 100644 index 6e26bb9a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/gabbro_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gabbro" - }, - "result": "strata:gabbro_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_aa_brick_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_aa_brick_stairs_stonecutting.json deleted file mode 100644 index 7a889a86..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_aa_brick_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_aa_bricks" - }, - "result": "strata:mossy_aa_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_aa_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_aa_cobblestone_stairs_stonecutting.json deleted file mode 100644 index 8f2a3713..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_aa_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_aa_cobblestone" - }, - "result": "strata:mossy_aa_cobblestone_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_adakite_brick_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_adakite_brick_stairs_stonecutting.json deleted file mode 100644 index 614faf11..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_adakite_brick_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_adakite_bricks" - }, - "result": "strata:mossy_adakite_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_adakite_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_adakite_cobblestone_stairs_stonecutting.json deleted file mode 100644 index 60fa23ca..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_adakite_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_adakite_cobblestone" - }, - "result": "strata:mossy_adakite_cobblestone_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_basalt_brick_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_basalt_brick_stairs_stonecutting.json deleted file mode 100644 index 26bc79ea..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_basalt_brick_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_basalt_bricks" - }, - "result": "strata:mossy_basalt_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_gabbro_brick_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_gabbro_brick_stairs_stonecutting.json deleted file mode 100644 index 5f885c61..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_gabbro_brick_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_gabbro_bricks" - }, - "result": "strata:mossy_gabbro_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_pahoehoe_brick_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_pahoehoe_brick_stairs_stonecutting.json deleted file mode 100644 index 25c2bd88..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_pahoehoe_brick_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_pahoehoe_bricks" - }, - "result": "strata:mossy_pahoehoe_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_pahoehoe_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_pahoehoe_cobblestone_stairs_stonecutting.json deleted file mode 100644 index d34c5788..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/mossy_pahoehoe_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_pahoehoe_cobblestone" - }, - "result": "strata:mossy_pahoehoe_cobblestone_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/pahoehoe_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/pahoehoe_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index 807ea4a8..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/pahoehoe_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:pahoehoe_bricks" - }, - "result": "strata:pahoehoe_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/pahoehoe_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/pahoehoe_brick_stairs_polished_stonecutting.json deleted file mode 100644 index eae67b5f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/pahoehoe_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_pahoehoe" - }, - "result": "strata:pahoehoe_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/pahoehoe_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/pahoehoe_brick_stairs_stone_stonecutting.json deleted file mode 100644 index 019eaba1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/pahoehoe_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:pahoehoe" - }, - "result": "strata:pahoehoe_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/pahoehoe_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/pahoehoe_cobblestone_stairs_stonecutting.json deleted file mode 100644 index 2781b244..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/pahoehoe_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:pahoehoe_cobblestone" - }, - "result": "strata:pahoehoe_cobblestone_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/pahoehoe_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/pahoehoe_stairs_stonecutting.json deleted file mode 100644 index 1277a8df..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/pahoehoe_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:pahoehoe" - }, - "result": "strata:pahoehoe_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_aa_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_aa_stairs_polished_stonecutting.json deleted file mode 100644 index 51eb0ce4..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_aa_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_aa" - }, - "result": "strata:polished_aa_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_aa_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_aa_stairs_stone_stonecutting.json deleted file mode 100644 index b52a75c6..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_aa_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:aa" - }, - "result": "strata:polished_aa_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_adakite_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_adakite_stairs_polished_stonecutting.json deleted file mode 100644 index 6d40b76e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_adakite_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_adakite" - }, - "result": "strata:polished_adakite_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_adakite_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_adakite_stairs_stone_stonecutting.json deleted file mode 100644 index e6f0e782..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_adakite_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:adakite" - }, - "result": "strata:polished_adakite_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_polished_stonecutting.json deleted file mode 100644 index 50e4b05e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_basalt" - }, - "result": "strata:polished_basalt_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_stone_stonecutting.json deleted file mode 100644 index 8131b0be..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_basalt_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt" - }, - "result": "strata:polished_basalt_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_gabbro_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_gabbro_stairs_polished_stonecutting.json deleted file mode 100644 index bf77fb78..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_gabbro_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_gabbro" - }, - "result": "strata:polished_gabbro_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_gabbro_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_gabbro_stairs_stone_stonecutting.json deleted file mode 100644 index 5bc61ac9..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_gabbro_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gabbro" - }, - "result": "strata:polished_gabbro_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_pahoehoe_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_pahoehoe_stairs_polished_stonecutting.json deleted file mode 100644 index f3c249ea..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_pahoehoe_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_pahoehoe" - }, - "result": "strata:polished_pahoehoe_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_pahoehoe_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_pahoehoe_stairs_stone_stonecutting.json deleted file mode 100644 index b40530d7..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/stairs/polished_pahoehoe_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:pahoehoe" - }, - "result": "strata:polished_pahoehoe_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/aa_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/aa_brick_wall_bricks_stonecutting.json deleted file mode 100644 index 88956566..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/aa_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:aa_bricks" - }, - "result": "strata:aa_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/aa_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/aa_brick_wall_polished_stonecutting.json deleted file mode 100644 index 95e68c64..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/aa_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_aa" - }, - "result": "strata:aa_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/aa_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/aa_brick_wall_stone_stonecutting.json deleted file mode 100644 index 058051d7..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/aa_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:aa" - }, - "result": "strata:aa_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/aa_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/aa_cobblestone_wall_stonecutting.json deleted file mode 100644 index c28983ff..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/aa_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:aa_cobblestone" - }, - "result": "strata:aa_cobblestone_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/aa_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/aa_wall_stonecutting.json deleted file mode 100644 index 0f300d97..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/aa_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:aa" - }, - "result": "strata:aa_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/adakite_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/adakite_brick_wall_bricks_stonecutting.json deleted file mode 100644 index 883a9264..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/adakite_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:adakite_bricks" - }, - "result": "strata:adakite_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/adakite_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/adakite_brick_wall_polished_stonecutting.json deleted file mode 100644 index b42722d3..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/adakite_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_adakite" - }, - "result": "strata:adakite_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/adakite_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/adakite_brick_wall_stone_stonecutting.json deleted file mode 100644 index 8cbe7814..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/adakite_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:adakite" - }, - "result": "strata:adakite_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/adakite_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/adakite_cobblestone_wall_stonecutting.json deleted file mode 100644 index 34bea6d0..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/adakite_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:adakite_cobblestone" - }, - "result": "strata:adakite_cobblestone_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/adakite_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/adakite_wall_stonecutting.json deleted file mode 100644 index 8d7081d5..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/adakite_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:adakite" - }, - "result": "strata:adakite_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_bricks_stonecutting.json deleted file mode 100644 index 68a4119b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt_bricks" - }, - "result": "strata:basalt_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_stone_stonecutting.json deleted file mode 100644 index 02b5e224..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/basalt_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt" - }, - "result": "strata:basalt_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/basalt_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/basalt_wall_stonecutting.json deleted file mode 100644 index 78c30be4..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/basalt_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:basalt" - }, - "result": "strata:basalt_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/gabbro_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/gabbro_brick_wall_bricks_stonecutting.json deleted file mode 100644 index b48c0e18..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/gabbro_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gabbro_bricks" - }, - "result": "strata:gabbro_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/gabbro_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/gabbro_brick_wall_stone_stonecutting.json deleted file mode 100644 index 6f905832..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/gabbro_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gabbro" - }, - "result": "strata:gabbro_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/gabbro_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/gabbro_wall_stonecutting.json deleted file mode 100644 index 25500677..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/gabbro_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gabbro" - }, - "result": "strata:gabbro_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_aa_brick_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_aa_brick_wall_stonecutting.json deleted file mode 100644 index ee1da101..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_aa_brick_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_aa_bricks" - }, - "result": "strata:mossy_aa_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_aa_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_aa_cobblestone_wall_stonecutting.json deleted file mode 100644 index 543a26be..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_aa_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_aa_cobblestone" - }, - "result": "strata:mossy_aa_cobblestone_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_adakite_brick_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_adakite_brick_wall_stonecutting.json deleted file mode 100644 index 7fe273b9..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_adakite_brick_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_adakite_bricks" - }, - "result": "strata:mossy_adakite_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_adakite_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_adakite_cobblestone_wall_stonecutting.json deleted file mode 100644 index 1eafa569..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_adakite_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_adakite_cobblestone" - }, - "result": "strata:mossy_adakite_cobblestone_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_basalt_brick_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_basalt_brick_wall_stonecutting.json deleted file mode 100644 index 43080a26..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_basalt_brick_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_basalt_bricks" - }, - "result": "strata:mossy_basalt_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_gabbro_brick_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_gabbro_brick_wall_stonecutting.json deleted file mode 100644 index d850b865..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_gabbro_brick_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_gabbro_bricks" - }, - "result": "strata:mossy_gabbro_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_pahoehoe_brick_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_pahoehoe_brick_wall_stonecutting.json deleted file mode 100644 index d019acac..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_pahoehoe_brick_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_pahoehoe_bricks" - }, - "result": "strata:mossy_pahoehoe_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_pahoehoe_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_pahoehoe_cobblestone_wall_stonecutting.json deleted file mode 100644 index f9820342..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/mossy_pahoehoe_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_pahoehoe_cobblestone" - }, - "result": "strata:mossy_pahoehoe_cobblestone_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/pahoehoe_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/pahoehoe_brick_wall_bricks_stonecutting.json deleted file mode 100644 index 074f60af..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/pahoehoe_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:pahoehoe_bricks" - }, - "result": "strata:pahoehoe_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/pahoehoe_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/pahoehoe_brick_wall_polished_stonecutting.json deleted file mode 100644 index 91177d75..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/pahoehoe_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_pahoehoe" - }, - "result": "strata:pahoehoe_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/pahoehoe_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/pahoehoe_brick_wall_stone_stonecutting.json deleted file mode 100644 index a28edb0b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/pahoehoe_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:pahoehoe" - }, - "result": "strata:pahoehoe_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/pahoehoe_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/pahoehoe_cobblestone_wall_stonecutting.json deleted file mode 100644 index 7a68eda2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/pahoehoe_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:pahoehoe_cobblestone" - }, - "result": "strata:pahoehoe_cobblestone_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/pahoehoe_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/pahoehoe_wall_stonecutting.json deleted file mode 100644 index 9dda0da8..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/igneous_rocks/stonecutting/block/wall/pahoehoe_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:pahoehoe" - }, - "result": "strata:pahoehoe_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/amphibolite_bricks.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/amphibolite_bricks.json deleted file mode 100644 index 75da5dc1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/amphibolite_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:polished_amphibolite" - } - }, - "result": { - "item": "strata:amphibolite_bricks", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/chiseled_amphibolite_bricks.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/chiseled_amphibolite_bricks.json deleted file mode 100644 index 8a38515c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/chiseled_amphibolite_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "# " - ], - "key": { - "#": { - "item": "strata:amphibolite_brick_slab" - } - }, - "result": { - "item": "strata:chiseled_amphibolite_bricks", - "count": 1 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/chiseled_eclogite_bricks.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/chiseled_eclogite_bricks.json deleted file mode 100644 index d2ddc3cc..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/chiseled_eclogite_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "# " - ], - "key": { - "#": { - "item": "strata:eclogite_slab_brick" - } - }, - "result": { - "item": "strata:chiseled_eclogite_bricks" - "count": 1 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/chiseled_gneiss_bricks.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/chiseled_gneiss_bricks.json deleted file mode 100644 index f1c9cabb..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/chiseled_gneiss_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "# " - ], - "key": { - "#": { - "item": "strata:gneiss_brick_slab" - } - }, - "result": { - "item": "strata:chiseled_gneiss_bricks", - "count": 1 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/chiseled_marble_bricks.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/chiseled_marble_bricks.json deleted file mode 100644 index 18ddf002..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/chiseled_marble_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "# " - ], - "key": { - "#": { - "item": "strata:marble_slab_brick" - } - }, - "result": { - "item": "strata:chiseled_marble_bricks" - "count": 1 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/chiseled_schist_bricks.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/chiseled_schist_bricks.json deleted file mode 100644 index 774d8ac2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/chiseled_schist_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "# " - ], - "key": { - "#": { - "item": "strata:schist_brick_slab" - } - }, - "result": { - "item": "strata:chiseled_schist_bricks", - "count": 1 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/eclogite_bricks.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/eclogite_bricks.json deleted file mode 100644 index e9588e16..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/eclogite_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:polished_eclogite" - } - }, - "result": { - "item": "strata:eclogite_bricks" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/gneiss_bricks.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/gneiss_bricks.json deleted file mode 100644 index ff8a408e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/gneiss_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:polished_gneiss" - } - }, - "result": { - "item": "strata:gneiss_bricks", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/marble_bricks.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/marble_bricks.json deleted file mode 100644 index ea79bc61..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/marble_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:polished_marble" - } - }, - "result": { - "item": "strata:marble_bricks" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/mossy_amphibolite_bricks.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/mossy_amphibolite_bricks.json deleted file mode 100644 index aa29bfca..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/mossy_amphibolite_bricks.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:amphibolite_bricks" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "strata:mossy_amphibolite_bricks" - } -} diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/mossy_eclogite_bricks.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/mossy_eclogite_bricks.json deleted file mode 100644 index 28365e45..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/mossy_eclogite_bricks.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:eclogite_bricks" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "strata:mossy_eclogite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/mossy_eclogite_cobblestone.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/mossy_eclogite_cobblestone.json deleted file mode 100644 index afb073f4..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/mossy_eclogite_cobblestone.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:eclogite_cobblestone" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "strata:mossy_eclogite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/mossy_gneiss_bricks.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/mossy_gneiss_bricks.json deleted file mode 100644 index b6d97e7d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/mossy_gneiss_bricks.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:gneiss_bricks" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "strata:mossy_gneiss_bricks" - } -} diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/mossy_marble_bricks.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/mossy_marble_bricks.json deleted file mode 100644 index 38321ac2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/mossy_marble_bricks.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:marble_bricks" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "strata:mossy_marble_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/mossy_marble_cobblestone.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/mossy_marble_cobblestone.json deleted file mode 100644 index cd69243d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/mossy_marble_cobblestone.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:marble_cobblestone" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "strata:mossy_marble_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/mossy_schist_bricks.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/mossy_schist_bricks.json deleted file mode 100644 index abc854df..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/mossy_schist_bricks.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:schist_bricks" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "strata:mossy_schist_bricks" - } -} diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/polished_amphibolite.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/polished_amphibolite.json deleted file mode 100644 index 5fd49b70..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/polished_amphibolite.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:amphibolite" - } - }, - "result": { - "item": "strata:polished_amphibolite", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/polished_eclogite.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/polished_eclogite.json deleted file mode 100644 index 60797550..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/polished_eclogite.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:eclogite" - } - }, - "result": { - "item": "strata:polished_eclogite" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/polished_gneiss.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/polished_gneiss.json deleted file mode 100644 index 7b9d1d51..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/polished_gneiss.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:gneiss" - } - }, - "result": { - "item": "strata:polished_gneiss", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/polished_marble.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/polished_marble.json deleted file mode 100644 index 266468f4..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/polished_marble.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:marble" - } - }, - "result": { - "item": "strata:polished_marble" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/polished_schist.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/polished_schist.json deleted file mode 100644 index 7bbc14b6..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/polished_schist.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:schist" - } - }, - "result": { - "item": "strata:polished_schist", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/schist_bricks.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/schist_bricks.json deleted file mode 100644 index 5f8887c6..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/schist_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:polished_schist" - } - }, - "result": { - "item": "strata:schist_bricks", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/amphibolite_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/amphibolite_brick_slab.json deleted file mode 100644 index a9d9e523..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/amphibolite_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:amphibolite_bricks" - } - }, - "result": { - "item": "strata:amphibolite_brick_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/amphibolite_slab.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/amphibolite_slab.json deleted file mode 100644 index 86b90228..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/amphibolite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:amphibolite" - } - }, - "result": { - "item": "strata:amphibolite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/cobblestone_eclogite_slab.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/cobblestone_eclogite_slab.json deleted file mode 100644 index 4a56a96d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/cobblestone_eclogite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:cobblestone_eclogite" - } - }, - "result": { - "item": "strata:cobblestone_eclogite_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/cobblestone_marble_slab.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/cobblestone_marble_slab.json deleted file mode 100644 index cafb9cf3..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/cobblestone_marble_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:cobblestone_marble" - } - }, - "result": { - "item": "strata:cobblestone_marble_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/eclogite_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/eclogite_brick_slab.json deleted file mode 100644 index 062ae5bb..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/eclogite_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:eclogite_bricks" - } - }, - "result": { - "item": "strata:eclogite_brick_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/eclogite_slab.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/eclogite_slab.json deleted file mode 100644 index 68048e46..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/eclogite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:eclogite" - } - }, - "result": { - "item": "strata:eclogite_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/gneiss_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/gneiss_brick_slab.json deleted file mode 100644 index d5e93ac8..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/gneiss_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:gneiss_bricks" - } - }, - "result": { - "item": "strata:gneiss_brick_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/gneiss_slab.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/gneiss_slab.json deleted file mode 100644 index b92f7568..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/gneiss_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:gneiss" - } - }, - "result": { - "item": "strata:gneiss_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/marble_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/marble_brick_slab.json deleted file mode 100644 index 99b58df1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/marble_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:marble_bricks" - } - }, - "result": { - "item": "strata:marble_brick_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/marble_slab.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/marble_slab.json deleted file mode 100644 index 25dd161d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/marble_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:marble" - } - }, - "result": { - "item": "strata:marble_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/mossy_amphibolite_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/mossy_amphibolite_brick_slab.json deleted file mode 100644 index d9884b9f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/mossy_amphibolite_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mossy_amphibolite_bricks" - } - }, - "result": { - "item": "strata:mossy_amphibolite_brick_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/mossy_eclogite_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/mossy_eclogite_brick_slab.json deleted file mode 100644 index b87192bb..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/mossy_eclogite_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mossy_eclogite_bricks" - } - }, - "result": { - "item": "strata:mossy_eclogite_brick_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/mossy_eclogite_cobblestone_slab.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/mossy_eclogite_cobblestone_slab.json deleted file mode 100644 index 31941c0f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/mossy_eclogite_cobblestone_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mossy_eclogite_cobblestone" - } - }, - "result": { - "item": "strata:mossy_eclogite_cobblestone_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/mossy_gneiss_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/mossy_gneiss_brick_slab.json deleted file mode 100644 index bfae3b68..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/mossy_gneiss_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mossy_gneiss_bricks" - } - }, - "result": { - "item": "strata:mossy_gneiss_brick_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/mossy_marble_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/mossy_marble_brick_slab.json deleted file mode 100644 index 732d2f8e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/mossy_marble_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mossy_marble_bricks" - } - }, - "result": { - "item": "strata:mossy_marble_brick_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/mossy_marble_cobblestone_slab.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/mossy_marble_cobblestone_slab.json deleted file mode 100644 index 50639c8c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/mossy_marble_cobblestone_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mossy_marble_cobblestone" - } - }, - "result": { - "item": "strata:mossy_marble_cobblestone_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/mossy_schist_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/mossy_schist_brick_slab.json deleted file mode 100644 index 669d2fba..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/mossy_schist_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mossy_schist_bricks" - } - }, - "result": { - "item": "strata:mossy_schist_brick_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/polished_amphibolite_slab.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/polished_amphibolite_slab.json deleted file mode 100644 index 47d43ffb..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/polished_amphibolite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:polished_amphibolite" - } - }, - "result": { - "item": "strata:polished_amphibolite_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/polished_eclogite_slab.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/polished_eclogite_slab.json deleted file mode 100644 index acfbf151..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/polished_eclogite_slab.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###" - ], - "key": { - "#": { - "item": "strata:polished_eclogite" - } - }, - "result": { - "item": "strata:polished_eclogite_slab" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/polished_gneiss_slab.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/polished_gneiss_slab.json deleted file mode 100644 index 787a4ec6..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/polished_gneiss_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:polished_gneiss" - } - }, - "result": { - "item": "strata:polished_gneiss_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/polished_marble_slab.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/polished_marble_slab.json deleted file mode 100644 index 5aa4531e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/polished_marble_slab.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###" - ], - "key": { - "#": { - "item": "strata:polished_marble" - } - }, - "result": { - "item": "strata:polished_marble_slab" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/polished_schist_slab.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/polished_schist_slab.json deleted file mode 100644 index 153fb8d2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/polished_schist_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:polished_schist" - } - }, - "result": { - "item": "strata:polished_schist_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/schist_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/schist_brick_slab.json deleted file mode 100644 index 79a3dd8f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/schist_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:schist_bricks" - } - }, - "result": { - "item": "strata:schist_brick_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/schist_slab.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/schist_slab.json deleted file mode 100644 index 3e837630..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/slab/schist_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:schist" - } - }, - "result": { - "item": "strata:schist_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/amphibolite_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/amphibolite_brick_stairs.json deleted file mode 100644 index d336d6cb..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/amphibolite_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:amphibolite_bricks" - } - }, - "result": { - "item": "strata:amphibolite_brick_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/amphibolite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/amphibolite_stairs.json deleted file mode 100644 index 3fe54988..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/amphibolite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:amphibolite" - } - }, - "result": { - "item": "strata:amphibolite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/cobblestone_eclogite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/cobblestone_eclogite_stairs.json deleted file mode 100644 index fa9b389e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/cobblestone_eclogite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:cobblestone_eclogite" - } - }, - "result": { - "item": "strata:cobblestone_eclogite_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/cobblestone_marble_stairs.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/cobblestone_marble_stairs.json deleted file mode 100644 index 22a80d14..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/cobblestone_marble_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:cobblestone_marble" - } - }, - "result": { - "item": "strata:cobblestone_marble_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/eclogite_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/eclogite_brick_stairs.json deleted file mode 100644 index 84b0b41c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/eclogite_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:eclogite_bricks" - } - }, - "result": { - "item": "strata:eclogite_brick_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/eclogite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/eclogite_stairs.json deleted file mode 100644 index 7f2e1d0b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/eclogite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:eclogite" - } - }, - "result": { - "item": "strata:eclogite_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/gneiss_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/gneiss_brick_stairs.json deleted file mode 100644 index 12e6d571..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/gneiss_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:gneiss_bricks" - } - }, - "result": { - "item": "strata:gneiss_brick_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/gneiss_stairs.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/gneiss_stairs.json deleted file mode 100644 index d4527fcf..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/gneiss_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:gneiss" - } - }, - "result": { - "item": "strata:gneiss_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/marble_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/marble_brick_stairs.json deleted file mode 100644 index 01f8ab57..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/marble_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:marble_bricks" - } - }, - "result": { - "item": "strata:marble_brick_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/marble_stairs.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/marble_stairs.json deleted file mode 100644 index 3283722f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/marble_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:marble" - } - }, - "result": { - "item": "strata:marble_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_amphibolite_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_amphibolite_brick_stairs.json deleted file mode 100644 index 4d10c95b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_amphibolite_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_amphibolite_bricks" - } - }, - "result": { - "item": "strata:mossy_amphibolite_brick_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_eclogite_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_eclogite_brick_stairs.json deleted file mode 100644 index 5f4647c6..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_eclogite_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_eclogite_bricks" - } - }, - "result": { - "item": "strata:mossy_eclogite_brick_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_eclogite_cobblestone_stairs.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_eclogite_cobblestone_stairs.json deleted file mode 100644 index 372d4269..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_eclogite_cobblestone_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_eclogite_cobblestone" - } - }, - "result": { - "item": "strata:mossy_eclogite_cobblestone_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_gneiss_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_gneiss_brick_stairs.json deleted file mode 100644 index ce39065d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_gneiss_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_gneiss_bricks" - } - }, - "result": { - "item": "strata:mossy_gneiss_brick_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_marble_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_marble_brick_stairs.json deleted file mode 100644 index e902c200..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_marble_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_marble_bricks" - } - }, - "result": { - "item": "strata:mossy_marble_brick_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_marble_cobblestone_stairs.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_marble_cobblestone_stairs.json deleted file mode 100644 index ab3186bf..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_marble_cobblestone_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_marble_cobblestone" - } - }, - "result": { - "item": "strata:mossy_marble_cobblestone_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_schist_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_schist_brick_stairs.json deleted file mode 100644 index de219035..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/mossy_schist_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_schist_bricks" - } - }, - "result": { - "item": "strata:mossy_schist_brick_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/polished_amphibolite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/polished_amphibolite_stairs.json deleted file mode 100644 index c06cf48d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/polished_amphibolite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:polished_amphibolite" - } - }, - "result": { - "item": "strata:polished_amphibolite_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/polished_eclogite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/polished_eclogite_stairs.json deleted file mode 100644 index 1a129818..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/polished_eclogite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:polished_eclogite" - } - }, - "result": { - "item": "strata:polished_eclogite_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/polished_gneiss_stairs.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/polished_gneiss_stairs.json deleted file mode 100644 index a38fbf0d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/polished_gneiss_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:polished_gneiss" - } - }, - "result": { - "item": "strata:polished_gneiss_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/polished_marble_stairs.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/polished_marble_stairs.json deleted file mode 100644 index e67dc055..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/polished_marble_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:polished_marble" - } - }, - "result": { - "item": "strata:polished_marble_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/polished_schist_stairs.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/polished_schist_stairs.json deleted file mode 100644 index 7fd5bfe3..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/polished_schist_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:polished_schist" - } - }, - "result": { - "item": "strata:polished_schist_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/schist_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/schist_brick_stairs.json deleted file mode 100644 index cfa4a72e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/schist_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:schist_bricks" - } - }, - "result": { - "item": "strata:schist_brick_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/schist_stairs.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/schist_stairs.json deleted file mode 100644 index f2d101d4..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/stairs/schist_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:schist" - } - }, - "result": { - "item": "strata:schist_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/amphibolite_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/amphibolite_brick_wall.json deleted file mode 100644 index a2bc666b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/amphibolite_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:amphibolite_bricks" - } - }, - "result": { - "item": "strata:amphibolite_brick_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/amphibolite_wall.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/amphibolite_wall.json deleted file mode 100644 index b623b86f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/amphibolite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:amphibolite" - } - }, - "result": { - "item": "strata:amphibolite_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/cobblestone_eclogite_wall.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/cobblestone_eclogite_wall.json deleted file mode 100644 index 4cd9e7b8..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/cobblestone_eclogite_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:cobblestone_eclogite" - } - }, - "result": { - "item": "strata:cobblestone_eclogite_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/cobblestone_marble_wall.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/cobblestone_marble_wall.json deleted file mode 100644 index bbab012f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/cobblestone_marble_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:cobblestone_marble" - } - }, - "result": { - "item": "strata:cobblestone_marble_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/eclogite_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/eclogite_brick_wall.json deleted file mode 100644 index c010af62..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/eclogite_brick_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:eclogite_bricks" - } - }, - "result": { - "item": "strata:eclogite_brick_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/eclogite_wall.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/eclogite_wall.json deleted file mode 100644 index 954e1d5e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/eclogite_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:eclogite" - } - }, - "result": { - "item": "strata:eclogite_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/gneiss_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/gneiss_brick_wall.json deleted file mode 100644 index c3e30493..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/gneiss_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:gneiss_bricks" - } - }, - "result": { - "item": "strata:gneiss_brick_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/gneiss_wall.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/gneiss_wall.json deleted file mode 100644 index f7fb07bc..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/gneiss_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:gneiss" - } - }, - "result": { - "item": "strata:gneiss_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/marble_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/marble_brick_wall.json deleted file mode 100644 index 3ac5961f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/marble_brick_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:marble_bricks" - } - }, - "result": { - "item": "strata:marble_brick_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/marble_wall.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/marble_wall.json deleted file mode 100644 index ffd323f6..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/marble_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:marble" - } - }, - "result": { - "item": "strata:marble_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/mossy_amphibolite_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/mossy_amphibolite_brick_wall.json deleted file mode 100644 index e9c82cff..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/mossy_amphibolite_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_amphibolite_bricks" - } - }, - "result": { - "item": "strata:mossy_amphibolite_brick_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/mossy_eclogite_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/mossy_eclogite_brick_wall.json deleted file mode 100644 index b2c80d2a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/mossy_eclogite_brick_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_eclogite_bricks" - } - }, - "result": { - "item": "strata:mossy_eclogite_brick_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/mossy_eclogite_cobblestone_wall.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/mossy_eclogite_cobblestone_wall.json deleted file mode 100644 index 20946f54..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/mossy_eclogite_cobblestone_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_eclogite_cobblestone" - } - }, - "result": { - "item": "strata:mossy_eclogite_cobblestone_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/mossy_gneiss_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/mossy_gneiss_brick_wall.json deleted file mode 100644 index f5dfa0b0..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/mossy_gneiss_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_gneiss_bricks" - } - }, - "result": { - "item": "strata:mossy_gneiss_brick_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/mossy_marble_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/mossy_marble_brick_wall.json deleted file mode 100644 index e4297579..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/mossy_marble_brick_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_marble_bricks" - } - }, - "result": { - "item": "strata:mossy_marble_brick_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/mossy_marble_cobblestone_wall.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/mossy_marble_cobblestone_wall.json deleted file mode 100644 index 44f9a5ce..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/mossy_marble_cobblestone_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_marble_cobblestone" - } - }, - "result": { - "item": "strata:mossy_marble_cobblestone_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/mossy_schist_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/mossy_schist_brick_wall.json deleted file mode 100644 index 210b1de7..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/mossy_schist_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_schist_bricks" - } - }, - "result": { - "item": "strata:mossy_schist_brick_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/schist_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/schist_brick_wall.json deleted file mode 100644 index 87f9e016..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/schist_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:schist_bricks" - } - }, - "result": { - "item": "strata:schist_brick_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/schist_wall.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/schist_wall.json deleted file mode 100644 index fbe7d124..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/block/wall/schist_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:schist" - } - }, - "result": { - "item": "strata:schist_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/button/amphibolite_button.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/button/amphibolite_button.json deleted file mode 100644 index 1c163bf5..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/button/amphibolite_button.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:amphibolite" - } - ], - "result": { - "item": "strata:amphibolite_button" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/button/eclogite_button.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/button/eclogite_button.json deleted file mode 100644 index 1e43cfe1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/button/eclogite_button.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:eclogite" - } - ], - "result": { - "item": "strata:eclogite_button" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/button/gneiss_button.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/button/gneiss_button.json deleted file mode 100644 index 5634acd2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/button/gneiss_button.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:gneiss" - } - ], - "result": { - "item": "strata:gneiss_button" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/button/marble_button.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/button/marble_button.json deleted file mode 100644 index 74bbbebe..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/button/marble_button.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:marble" - } - ], - "result": { - "item": "strata:marble_button" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/button/schist_button.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/button/schist_button.json deleted file mode 100644 index 60a4a764..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/button/schist_button.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:schist" - } - ], - "result": { - "item": "strata:schist_button" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/pressure_plate/amphibolite_pressure_plate.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/pressure_plate/amphibolite_pressure_plate.json deleted file mode 100644 index 73433b54..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/pressure_plate/amphibolite_pressure_plate.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## " - ], - "key": { - "#": { - "item": "strata:amphibolite" - } - }, - "result": { - "item": "strata:amphibolite_pressure_plate" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/pressure_plate/eclogite_pressure_plate.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/pressure_plate/eclogite_pressure_plate.json deleted file mode 100644 index 42a5e8fa..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/pressure_plate/eclogite_pressure_plate.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## " - ], - "key": { - "#": { - "item": "strata:eclogite" - } - }, - "result": { - "item": "strata:eclogite_pressure_plate" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/pressure_plate/gneiss_pressure_plate.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/pressure_plate/gneiss_pressure_plate.json deleted file mode 100644 index b99c06ef..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/pressure_plate/gneiss_pressure_plate.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## " - ], - "key": { - "#": { - "item": "strata:gneiss" - } - }, - "result": { - "item": "strata:gneiss_pressure_plate" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/pressure_plate/marble_pressure_plate.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/pressure_plate/marble_pressure_plate.json deleted file mode 100644 index 21915a05..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/pressure_plate/marble_pressure_plate.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## " - ], - "key": { - "#": { - "item": "strata:marble" - } - }, - "result": { - "item": "strata:marble_pressure_plate" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/pressure_plate/schist_pressure_plate.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/pressure_plate/schist_pressure_plate.json deleted file mode 100644 index 19b32cec..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/crafting/pressure_plate/schist_pressure_plate.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## " - ], - "key": { - "#": { - "item": "strata:schist" - } - }, - "result": { - "item": "strata:schist_pressure_plate" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/smelting/block/cracked_amphibolite_bricks.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/smelting/block/cracked_amphibolite_bricks.json deleted file mode 100644 index ca7668c1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/smelting/block/cracked_amphibolite_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:amphibolite_bricks" - }, - "result": "strata:cracked_amphibolite_bricks", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/smelting/block/cracked_eclogite_bricks.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/smelting/block/cracked_eclogite_bricks.json deleted file mode 100644 index c08b1700..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/smelting/block/cracked_eclogite_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:eclogite_bricks" - }, - "result": "strata:cracked_eclogite_bricks", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/smelting/block/cracked_gneiss_bricks.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/smelting/block/cracked_gneiss_bricks.json deleted file mode 100644 index 4a77ae05..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/smelting/block/cracked_gneiss_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:gneiss_bricks" - }, - "result": "strata:cracked_gneiss_bricks", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/smelting/block/cracked_marble_bricks.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/smelting/block/cracked_marble_bricks.json deleted file mode 100644 index 06cb632a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/smelting/block/cracked_marble_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:marble_bricks" - }, - "result": "strata:cracked_marble_bricks", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/smelting/block/cracked_schist_bricks.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/smelting/block/cracked_schist_bricks.json deleted file mode 100644 index dbf64d80..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/smelting/block/cracked_schist_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:schist_bricks" - }, - "result": "strata:cracked_schist_bricks", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/smelting/block/eclogite.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/smelting/block/eclogite.json deleted file mode 100644 index 63f537a3..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/smelting/block/eclogite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:eclogite_cobblestone" - }, - "result": "strata:eclogite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/smelting/block/marble.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/smelting/block/marble.json deleted file mode 100644 index 2cc8e455..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/smelting/block/marble.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:marble_cobblestone" - }, - "result": "strata:marble", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/amphibolite_slab_stonecutter.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/amphibolite_slab_stonecutter.json deleted file mode 100644 index 1f251d12..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/amphibolite_slab_stonecutter.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:amphibolite" - }, - "result": "strata:amphibolite_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/amphibolite_stairs_stonecutter.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/amphibolite_stairs_stonecutter.json deleted file mode 100644 index baadc651..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/amphibolite_stairs_stonecutter.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:amphibolite" - }, - "result": "strata:amphibolite_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/amphibolite_wall_stonecutter.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/amphibolite_wall_stonecutter.json deleted file mode 100644 index bb22f9b6..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/amphibolite_wall_stonecutter.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:amphibolite" - }, - "result": "strata:amphibolite_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/gneiss_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/gneiss_slab_stonecutting.json deleted file mode 100644 index 979abe59..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/gneiss_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gneiss" - }, - "result": "strata:gneiss_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/gneiss_stairs_stonecutter.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/gneiss_stairs_stonecutter.json deleted file mode 100644 index 7c730dca..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/gneiss_stairs_stonecutter.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gneiss" - }, - "result": "strata:gneiss_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/gneiss_wall_stonecutter.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/gneiss_wall_stonecutter.json deleted file mode 100644 index e8678cd1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/gneiss_wall_stonecutter.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gneiss" - }, - "result": "strata:gneiss_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/schist_slab_stonecutter.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/schist_slab_stonecutter.json deleted file mode 100644 index 8e9ff076..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/schist_slab_stonecutter.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:schist" - }, - "result": "strata:schist_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/schist_stairs_stonecutter.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/schist_stairs_stonecutter.json deleted file mode 100644 index eaacf02f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/schist_stairs_stonecutter.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:schist" - }, - "result": "strata:schist_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/schist_wall_stonecutter.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/schist_wall_stonecutter.json deleted file mode 100644 index 50565375..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutter_recipies/schist_wall_stonecutter.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:schist" - }, - "result": "strata:schist_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/amphibolite_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/amphibolite_bricks_polished_stonecutting.json deleted file mode 100644 index 53862b2d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/amphibolite_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_amphibolite" - }, - "result": "strata:amphibolite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/amphibolite_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/amphibolite_bricks_stone_stonecutting.json deleted file mode 100644 index 9b9cb619..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/amphibolite_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:amphibolite" - }, - "result": "strata:amphibolite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_amphibolite_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_amphibolite_bricks_bricks_stonecutting.json deleted file mode 100644 index 25c85beb..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_amphibolite_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:amphibolite_bricks" - }, - "result": "strata:chiseled_amphibolite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_amphibolite_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_amphibolite_bricks_polished_stonecutting.json deleted file mode 100644 index 7d0ff0cd..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_amphibolite_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_amphibolite" - }, - "result": "strata:chiseled_amphibolite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_amphibolite_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_amphibolite_bricks_stone_stonecutting.json deleted file mode 100644 index eafba92d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_amphibolite_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:amphibolite" - }, - "result": "strata:chiseled_amphibolite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_eclogite_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_eclogite_bricks_bricks_stonecutting.json deleted file mode 100644 index 872db604..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_eclogite_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:eclogite_bricks" - }, - "result": "strata:chiseled_eclogite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_eclogite_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_eclogite_bricks_polished_stonecutting.json deleted file mode 100644 index 447a25bd..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_eclogite_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_eclogite" - }, - "result": "strata:chiseled_eclogite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_eclogite_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_eclogite_bricks_stone_stonecutting.json deleted file mode 100644 index 90331ff4..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_eclogite_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:eclogite" - }, - "result": "strata:chiseled_eclogite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_gneiss_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_gneiss_bricks_bricks_stonecutting.json deleted file mode 100644 index 583e7e06..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_gneiss_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gneiss_bricks" - }, - "result": "strata:chiseled_gneiss_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_gneiss_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_gneiss_bricks_polished_stonecutting.json deleted file mode 100644 index 5f7e3538..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_gneiss_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_gneiss" - }, - "result": "strata:chiseled_gneiss_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_gneiss_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_gneiss_bricks_stone_stonecutting.json deleted file mode 100644 index be408a34..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_gneiss_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gneiss" - }, - "result": "strata:chiseled_gneiss_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_marble_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_marble_bricks_bricks_stonecutting.json deleted file mode 100644 index 53491a86..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_marble_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:marble_bricks" - }, - "result": "strata:chiseled_marble_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_marble_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_marble_bricks_polished_stonecutting.json deleted file mode 100644 index 931b9fe6..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_marble_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_marble" - }, - "result": "strata:chiseled_marble_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_marble_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_marble_bricks_stone_stonecutting.json deleted file mode 100644 index 10c41d24..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_marble_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:marble" - }, - "result": "strata:chiseled_marble_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_schist_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_schist_bricks_bricks_stonecutting.json deleted file mode 100644 index 58796371..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_schist_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:schist_bricks" - }, - "result": "strata:chiseled_schist_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_schist_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_schist_bricks_polished_stonecutting.json deleted file mode 100644 index 189caa83..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_schist_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_schist" - }, - "result": "strata:chiseled_schist_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_schist_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_schist_bricks_stone_stonecutting.json deleted file mode 100644 index 7e09338f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/chiseled_schist_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:schist" - }, - "result": "strata:chiseled_schist_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/eclogite_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/eclogite_bricks_polished_stonecutting.json deleted file mode 100644 index e705e9c9..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/eclogite_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:eclogite" - }, - "result": "strata:eclogite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/eclogite_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/eclogite_bricks_stone_stonecutting.json deleted file mode 100644 index e705e9c9..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/eclogite_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:eclogite" - }, - "result": "strata:eclogite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/gneiss_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/gneiss_bricks_polished_stonecutting.json deleted file mode 100644 index cbe16afe..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/gneiss_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_gneiss" - }, - "result": "strata:gneiss_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/gneiss_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/gneiss_bricks_stone_stonecutting.json deleted file mode 100644 index 49adc925..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/gneiss_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gneiss" - }, - "result": "strata:gneiss_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/marble_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/marble_bricks_polished_stonecutting.json deleted file mode 100644 index 2a87ccad..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/marble_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:marble" - }, - "result": "strata:marble_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/marble_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/marble_bricks_stone_stonecutting.json deleted file mode 100644 index 2a87ccad..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/marble_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:marble" - }, - "result": "strata:marble_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/polished_amphibolite_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/polished_amphibolite_stonecutting.json deleted file mode 100644 index 4ef64d6d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/polished_amphibolite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:amphibolite" - }, - "result": "strata:polished_amphibolite", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/polished_eclogite_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/polished_eclogite_stonecutting.json deleted file mode 100644 index cf2335e1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/polished_eclogite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:eclogite" - }, - "result": "strata:polished_eclogite", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/polished_gneiss_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/polished_gneiss_stonecutting.json deleted file mode 100644 index 1c938986..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/polished_gneiss_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gneiss" - }, - "result": "strata:polished_gneiss", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/polished_marble_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/polished_marble_stonecutting.json deleted file mode 100644 index 63abdfa7..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/polished_marble_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:marble" - }, - "result": "strata:polished_marble", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/polished_schist_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/polished_schist_stonecutting.json deleted file mode 100644 index c9f050df..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/polished_schist_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:schist" - }, - "result": "strata:polished_schist", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/schist_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/schist_bricks_polished_stonecutting.json deleted file mode 100644 index f3173033..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/schist_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_schist" - }, - "result": "strata:schist_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/schist_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/schist_bricks_stone_stonecutting.json deleted file mode 100644 index ad0c2216..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/schist_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:schist" - }, - "result": "strata:schist_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_brick_slab_bricks_stonecutting.json deleted file mode 100644 index 0d3cc6bf..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:amphibolite_bricks" - }, - "result": "strata:amphibolite_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_brick_slab_polished_stonecutting.json deleted file mode 100644 index 06e4edae..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_amphibolite" - }, - "result": "strata:amphibolite_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_brick_slab_stone_stonecutting.json deleted file mode 100644 index dcb2dade..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:amphibolite" - }, - "result": "strata:amphibolite_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_slab_stonecutting.json deleted file mode 100644 index 1f251d12..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/amphibolite_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:amphibolite" - }, - "result": "strata:amphibolite_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/eclogite_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/eclogite_brick_slab_bricks_stonecutting.json deleted file mode 100644 index 0a7c4c00..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/eclogite_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:eclogite_bricks" - }, - "result": "strata:eclogite_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/eclogite_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/eclogite_brick_slab_polished_stonecutting.json deleted file mode 100644 index f6c0026a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/eclogite_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_eclogite" - }, - "result": "strata:eclogite_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/eclogite_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/eclogite_brick_slab_stone_stonecutting.json deleted file mode 100644 index 487522fe..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/eclogite_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:eclogite" - }, - "result": "strata:eclogite_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/eclogite_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/eclogite_cobblestone_slab_stonecutting.json deleted file mode 100644 index 20c9127c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/eclogite_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:eclogite_cobblestone" - }, - "result": "strata:eclogite_cobblestone_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/eclogite_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/eclogite_slab_stonecutting.json deleted file mode 100644 index 3e4c0be1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/eclogite_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:eclogite" - }, - "result": "strata:eclogite_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_brick_slab_bricks_stonecutting.json deleted file mode 100644 index ea98f952..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gneiss_bricks" - }, - "result": "strata:gneiss_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_brick_slab_polished_stonecutting.json deleted file mode 100644 index 3a3decb3..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_gneiss" - }, - "result": "strata:gneiss_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_brick_slab_stone_stonecutting.json deleted file mode 100644 index 281d2f51..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gneiss" - }, - "result": "strata:gneiss_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_slab_stonecutting.json deleted file mode 100644 index 979abe59..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/gneiss_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gneiss" - }, - "result": "strata:gneiss_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/marble_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/marble_brick_slab_bricks_stonecutting.json deleted file mode 100644 index d0bcbc09..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/marble_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:marble_bricks" - }, - "result": "strata:marble_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/marble_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/marble_brick_slab_polished_stonecutting.json deleted file mode 100644 index b951a067..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/marble_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_marble" - }, - "result": "strata:marble_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/marble_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/marble_brick_slab_stone_stonecutting.json deleted file mode 100644 index 7211cded..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/marble_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:marble" - }, - "result": "strata:marble_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/marble_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/marble_cobblestone_slab_stonecutting.json deleted file mode 100644 index 395433f0..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/marble_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:marble_cobblestone" - }, - "result": "strata:marble_cobblestone_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/marble_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/marble_slab_stonecutting.json deleted file mode 100644 index 8059bab1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/marble_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:marble" - }, - "result": "strata:marble_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_amphibolite_brick_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_amphibolite_brick_slab_stonecutting.json deleted file mode 100644 index c2e20e9a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_amphibolite_brick_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_amphibolite_bricks" - }, - "result": "strata:mossy_amphibolite_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_eclogite_brick_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_eclogite_brick_slab_stonecutting.json deleted file mode 100644 index 7097acea..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_eclogite_brick_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_eclogite_bricks" - }, - "result": "strata:mossy_eclogite_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_eclogite_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_eclogite_cobblestone_slab_stonecutting.json deleted file mode 100644 index 2055c753..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_eclogite_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_eclogite_cobblestone" - }, - "result": "strata:mossy_eclogite_cobblestone_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_gneiss_brick_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_gneiss_brick_slab_stonecutting.json deleted file mode 100644 index 5691c7b1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_gneiss_brick_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_gneiss_bricks" - }, - "result": "strata:mossy_gneiss_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_marble_brick_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_marble_brick_slab_stonecutting.json deleted file mode 100644 index 4714f7d8..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_marble_brick_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_marble_bricks" - }, - "result": "strata:mossy_marble_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_marble_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_marble_cobblestone_slab_stonecutting.json deleted file mode 100644 index b35898ce..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_marble_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_marble_cobblestone" - }, - "result": "strata:mossy_marble_cobblestone_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_schist_brick_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_schist_brick_slab_stonecutting.json deleted file mode 100644 index f7abd655..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/mossy_schist_brick_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_schist_bricks" - }, - "result": "strata:mossy_schist_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_amphibolite_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_amphibolite_slab_polished_stonecutting.json deleted file mode 100644 index 4f721065..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_amphibolite_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_amphibolite" - }, - "result": "strata:polished_amphibolite_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_amphibolite_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_amphibolite_slab_stone_stonecutting.json deleted file mode 100644 index 14c4fe69..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_amphibolite_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:amphibolite" - }, - "result": "strata:polished_amphibolite_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_eclogite_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_eclogite_slab_polished_stonecutting.json deleted file mode 100644 index 41bfd8fd..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_eclogite_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_eclogite" - }, - "result": "strata:polished_eclogite_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_eclogite_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_eclogite_slab_stone_stonecutting.json deleted file mode 100644 index ab9aa47a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_eclogite_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:eclogite" - }, - "result": "strata:polished_eclogite_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_gneiss_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_gneiss_slab_polished_stonecutting.json deleted file mode 100644 index 31abe415..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_gneiss_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_gneiss" - }, - "result": "strata:polished_gneiss_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_gneiss_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_gneiss_slab_stone_stonecutting.json deleted file mode 100644 index 64cb5af2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_gneiss_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gneiss" - }, - "result": "strata:polished_gneiss_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_marble_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_marble_slab_polished_stonecutting.json deleted file mode 100644 index b3a038f4..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_marble_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_marble" - }, - "result": "strata:polished_marble_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_marble_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_marble_slab_stone_stonecutting.json deleted file mode 100644 index 5f86e976..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_marble_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:marble" - }, - "result": "strata:polished_marble_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_schist_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_schist_slab_polished_stonecutting.json deleted file mode 100644 index b541ea99..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_schist_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_schist" - }, - "result": "strata:polished_schist_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_schist_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_schist_slab_stone_stonecutting.json deleted file mode 100644 index e90dbda3..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/polished_schist_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:schist" - }, - "result": "strata:polished_schist_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/schist_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/schist_brick_slab_bricks_stonecutting.json deleted file mode 100644 index cc64537c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/schist_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:schist_bricks" - }, - "result": "strata:schist_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/schist_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/schist_brick_slab_polished_stonecutting.json deleted file mode 100644 index 42fad6ca..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/schist_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_schist" - }, - "result": "strata:schist_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/schist_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/schist_brick_slab_stone_stonecutting.json deleted file mode 100644 index 46bc6c0c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/schist_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:schist" - }, - "result": "strata:schist_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/schist_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/schist_slab_stonecutting.json deleted file mode 100644 index 8e9ff076..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/slab/schist_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:schist" - }, - "result": "strata:schist_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index 44eb887a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:amphibolite_bricks" - }, - "result": "strata:amphibolite_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_brick_stairs_polished_stonecutting.json deleted file mode 100644 index 0932c68a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_amphibolite" - }, - "result": "strata:amphibolite_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_brick_stairs_stone_stonecutting.json deleted file mode 100644 index 62889cd3..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:amphibolite" - }, - "result": "strata:amphibolite_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_stairs_stonecutting.json deleted file mode 100644 index baadc651..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/amphibolite_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:amphibolite" - }, - "result": "strata:amphibolite_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/eclogite_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/eclogite_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index f77378b3..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/eclogite_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:eclogite_bricks" - }, - "result": "strata:eclogite_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/eclogite_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/eclogite_brick_stairs_polished_stonecutting.json deleted file mode 100644 index c2cad906..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/eclogite_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_eclogite" - }, - "result": "strata:eclogite_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/eclogite_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/eclogite_brick_stairs_stone_stonecutting.json deleted file mode 100644 index 1f7f58f3..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/eclogite_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:eclogite" - }, - "result": "strata:eclogite_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/eclogite_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/eclogite_cobblestone_stairs_stonecutting.json deleted file mode 100644 index a476300d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/eclogite_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:eclogite_cobblestone" - }, - "result": "strata:eclogite_cobblestone_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/eclogite_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/eclogite_stairs_stonecutting.json deleted file mode 100644 index 3acb5776..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/eclogite_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:eclogite" - }, - "result": "strata:eclogite_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index b1ba8023..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gneiss_bricks" - }, - "result": "strata:gneiss_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_brick_stairs_polished_stonecutting.json deleted file mode 100644 index 22e76f75..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_gneiss" - }, - "result": "strata:gneiss_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_brick_stairs_stone_stonecutting.json deleted file mode 100644 index c613351e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gneiss" - }, - "result": "strata:gneiss_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_stairs_stonecutting.json deleted file mode 100644 index 7c730dca..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/gneiss_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gneiss" - }, - "result": "strata:gneiss_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/marble_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/marble_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index a2982fcf..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/marble_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:marble_bricks" - }, - "result": "strata:marble_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/marble_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/marble_brick_stairs_polished_stonecutting.json deleted file mode 100644 index ec30baf5..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/marble_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_marble" - }, - "result": "strata:marble_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/marble_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/marble_brick_stairs_stone_stonecutting.json deleted file mode 100644 index cf92ab55..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/marble_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:marble" - }, - "result": "strata:marble_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/marble_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/marble_cobblestone_stairs_stonecutting.json deleted file mode 100644 index b099ab39..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/marble_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:marble_cobblestone" - }, - "result": "strata:marble_cobblestone_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/marble_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/marble_stairs_stonecutting.json deleted file mode 100644 index e0236557..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/marble_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:marble" - }, - "result": "strata:marble_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_amphibolite_brick_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_amphibolite_brick_stairs_stonecutting.json deleted file mode 100644 index 9e395e8a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_amphibolite_brick_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_amphibolite_bricks" - }, - "result": "strata:mossy_amphibolite_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_eclogite_brick_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_eclogite_brick_stairs_stonecutting.json deleted file mode 100644 index 45568c2e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_eclogite_brick_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_eclogite_bricks" - }, - "result": "strata:mossy_eclogite_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_eclogite_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_eclogite_cobblestone_stairs_stonecutting.json deleted file mode 100644 index 6ed1207c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_eclogite_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_eclogite_cobblestone" - }, - "result": "strata:mossy_eclogite_cobblestone_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_gneiss_brick_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_gneiss_brick_stairs_stonecutting.json deleted file mode 100644 index 7cd48bbf..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_gneiss_brick_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_gneiss_bricks" - }, - "result": "strata:mossy_gneiss_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_marble_brick_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_marble_brick_stairs_stonecutting.json deleted file mode 100644 index d819a19b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_marble_brick_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_marble_bricks" - }, - "result": "strata:mossy_marble_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_marble_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_marble_cobblestone_stairs_stonecutting.json deleted file mode 100644 index 030e5e1f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_marble_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_marble_cobblestone" - }, - "result": "strata:mossy_marble_cobblestone_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_schist_brick_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_schist_brick_stairs_stonecutting.json deleted file mode 100644 index d282161f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/mossy_schist_brick_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_schist_bricks" - }, - "result": "strata:mossy_schist_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_amphibolite_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_amphibolite_stairs_polished_stonecutting.json deleted file mode 100644 index b815fa5d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_amphibolite_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_amphibolite" - }, - "result": "strata:polished_amphibolite_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_amphibolite_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_amphibolite_stairs_stone_stonecutting.json deleted file mode 100644 index 2fddc9f7..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_amphibolite_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:amphibolite" - }, - "result": "strata:polished_amphibolite_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_eclogite_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_eclogite_stairs_polished_stonecutting.json deleted file mode 100644 index 9ccb6257..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_eclogite_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_eclogite" - }, - "result": "strata:polished_eclogite_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_eclogite_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_eclogite_stairs_stone_stonecutting.json deleted file mode 100644 index d369a78d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_eclogite_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:eclogite" - }, - "result": "strata:polished_eclogite_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_gneiss_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_gneiss_stairs_polished_stonecutting.json deleted file mode 100644 index 5d38ec75..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_gneiss_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_gneiss" - }, - "result": "strata:polished_gneiss_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_gneiss_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_gneiss_stairs_stone_stonecutting.json deleted file mode 100644 index c6c063ba..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_gneiss_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gneiss" - }, - "result": "strata:polished_gneiss_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_marble_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_marble_stairs_polished_stonecutting.json deleted file mode 100644 index efd9995d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_marble_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_marble" - }, - "result": "strata:polished_marble_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_marble_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_marble_stairs_stone_stonecutting.json deleted file mode 100644 index f404b45b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_marble_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:marble" - }, - "result": "strata:polished_marble_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_schist_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_schist_stairs_polished_stonecutting.json deleted file mode 100644 index 13434ac6..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_schist_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_schist" - }, - "result": "strata:polished_schist_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_schist_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_schist_stairs_stone_stonecutting.json deleted file mode 100644 index 45bb8a49..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/polished_schist_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:schist" - }, - "result": "strata:polished_schist_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index 08794fa1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:schist_bricks" - }, - "result": "strata:schist_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_brick_stairs_polished_stonecutting.json deleted file mode 100644 index 6a6754a8..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_schist" - }, - "result": "strata:schist_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_brick_stairs_stone_stonecutting.json deleted file mode 100644 index 37cf6400..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:schist" - }, - "result": "strata:schist_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_stairs_stonecutting.json deleted file mode 100644 index eaacf02f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/stairs/schist_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:schist" - }, - "result": "strata:schist_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_brick_wall_bricks_stonecutting.json deleted file mode 100644 index 66048132..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:amphibolite_bricks" - }, - "result": "strata:amphibolite_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_brick_wall_polished_stonecutting.json deleted file mode 100644 index 1e9d1fd8..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_amphibolite" - }, - "result": "strata:amphibolite_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_brick_wall_stone_stonecutting.json deleted file mode 100644 index 9785cb37..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:amphibolite" - }, - "result": "strata:amphibolite_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_wall_stonecutting.json deleted file mode 100644 index bb22f9b6..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/amphibolite_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:amphibolite" - }, - "result": "strata:amphibolite_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/eclogite_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/eclogite_brick_wall_bricks_stonecutting.json deleted file mode 100644 index 22082e5f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/eclogite_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:eclogite_bricks" - }, - "result": "strata:eclogite_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/eclogite_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/eclogite_brick_wall_polished_stonecutting.json deleted file mode 100644 index 60fcbc03..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/eclogite_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_eclogite" - }, - "result": "strata:eclogite_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/eclogite_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/eclogite_brick_wall_stone_stonecutting.json deleted file mode 100644 index cd43e4e2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/eclogite_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:eclogite" - }, - "result": "strata:eclogite_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/eclogite_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/eclogite_cobblestone_wall_stonecutting.json deleted file mode 100644 index c96bcd48..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/eclogite_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:eclogite_cobblestone" - }, - "result": "strata:eclogite_cobblestone_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/eclogite_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/eclogite_wall_stonecutting.json deleted file mode 100644 index 2479f371..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/eclogite_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:eclogite" - }, - "result": "strata:eclogite_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/gneiss_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/gneiss_brick_wall_bricks_stonecutting.json deleted file mode 100644 index f168984a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/gneiss_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gneiss_bricks" - }, - "result": "strata:gneiss_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/gneiss_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/gneiss_brick_wall_polished_stonecutting.json deleted file mode 100644 index 3991335c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/gneiss_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_gneiss" - }, - "result": "strata:gneiss_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/gneiss_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/gneiss_brick_wall_stone_stonecutting.json deleted file mode 100644 index 8feba332..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/gneiss_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gneiss" - }, - "result": "strata:gneiss_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/gneiss_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/gneiss_wall_stonecutting.json deleted file mode 100644 index e8678cd1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/gneiss_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:gneiss" - }, - "result": "strata:gneiss_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/marble_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/marble_brick_wall_bricks_stonecutting.json deleted file mode 100644 index 3be9a4c2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/marble_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:marble_bricks" - }, - "result": "strata:marble_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/marble_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/marble_brick_wall_polished_stonecutting.json deleted file mode 100644 index d197e7aa..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/marble_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_marble" - }, - "result": "strata:marble_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/marble_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/marble_brick_wall_stone_stonecutting.json deleted file mode 100644 index 7c98db0b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/marble_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:marble" - }, - "result": "strata:marble_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/marble_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/marble_cobblestone_wall_stonecutting.json deleted file mode 100644 index 05ee439f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/marble_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:marble_cobblestone" - }, - "result": "strata:marble_cobblestone_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/marble_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/marble_wall_stonecutting.json deleted file mode 100644 index ff20423d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/marble_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:marble" - }, - "result": "strata:marble_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_amphibolite_brick_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_amphibolite_brick_wall_stonecutting.json deleted file mode 100644 index 9c698cd4..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_amphibolite_brick_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_amphibolite_bricks" - }, - "result": "strata:mossy_amphibolite_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_eclogite_brick_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_eclogite_brick_wall_stonecutting.json deleted file mode 100644 index 6dc5d5fd..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_eclogite_brick_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_eclogite_bricks" - }, - "result": "strata:mossy_eclogite_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_eclogite_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_eclogite_cobblestone_wall_stonecutting.json deleted file mode 100644 index be9a072d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_eclogite_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_eclogite_cobblestone" - }, - "result": "strata:mossy_eclogite_cobblestone_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_gneiss_brick_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_gneiss_brick_wall_stonecutting.json deleted file mode 100644 index 14d74730..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_gneiss_brick_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_gneiss_bricks" - }, - "result": "strata:mossy_gneiss_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_marble_brick_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_marble_brick_wall_stonecutting.json deleted file mode 100644 index 559d557d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_marble_brick_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_marble_bricks" - }, - "result": "strata:mossy_marble_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_marble_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_marble_cobblestone_wall_stonecutting.json deleted file mode 100644 index e080c9aa..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_marble_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_marble_cobblestone" - }, - "result": "strata:mossy_marble_cobblestone_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_schist_brick_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_schist_brick_wall_stonecutting.json deleted file mode 100644 index b3dffae0..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/mossy_schist_brick_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_schist_bricks" - }, - "result": "strata:mossy_schist_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/schist_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/schist_brick_wall_bricks_stonecutting.json deleted file mode 100644 index a5a5f07f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/schist_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:schist_bricks" - }, - "result": "strata:schist_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/schist_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/schist_brick_wall_polished_stonecutting.json deleted file mode 100644 index 1ab130a8..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/schist_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_schist" - }, - "result": "strata:schist_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/schist_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/schist_brick_wall_stone_stonecutting.json deleted file mode 100644 index a22b4050..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/schist_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:schist" - }, - "result": "strata:schist_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/schist_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/schist_wall_stonecutting.json deleted file mode 100644 index 50565375..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/metamorphic_rocks/stonecutting/block/wall/schist_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:schist" - }, - "result": "strata:schist_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/argillite_bricks.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/argillite_bricks.json deleted file mode 100644 index 1827687e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/argillite_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:polished_argillite" - } - }, - "result": { - "item": "strata:argillite_bricks" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/chalk_bricks.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/chalk_bricks.json deleted file mode 100644 index 60ed9208..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/chalk_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:polished_chalk" - } - }, - "result": { - "item": "strata:chalk_bricks" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/chiseled_argillite_bricks.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/chiseled_argillite_bricks.json deleted file mode 100644 index 55ff01be..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/chiseled_argillite_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "# " - ], - "key": { - "#": { - "item": "strata:argillite_slab_brick" - } - }, - "result": { - "item": "strata:chiseled_argillite_bricks" - "count": 1 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/chiseled_chalk_bricks.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/chiseled_chalk_bricks.json deleted file mode 100644 index 2d2d4991..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/chiseled_chalk_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "# " - ], - "key": { - "#": { - "item": "strata:chalk_slab_brick" - } - }, - "result": { - "item": "strata:chiseled_chalk_bricks" - "count": 1 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/chiseled_jaspillite_bricks.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/chiseled_jaspillite_bricks.json deleted file mode 100644 index b312a688..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/chiseled_jaspillite_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "# " - ], - "key": { - "#": { - "item": "strata:jaspillite_slab_brick" - } - }, - "result": { - "item": "strata:chiseled_jaspillite_bricks" - "count": 1 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/chiseled_limestone_bricks.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/chiseled_limestone_bricks.json deleted file mode 100644 index 68ed3dfb..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/chiseled_limestone_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "# " - ], - "key": { - "#": { - "item": "strata:limestone_brick_slab" - } - }, - "result": { - "item": "strata:chiseled_limestone_bricks", - "count": 1 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/chiseled_shale_bricks.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/chiseled_shale_bricks.json deleted file mode 100644 index e0d82ebe..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/chiseled_shale_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "# " - ], - "key": { - "#": { - "item": "strata:shale_brick_slab" - } - }, - "result": { - "item": "strata:chiseled_shale_bricks", - "count": 1 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/jaspillite_bricks.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/jaspillite_bricks.json deleted file mode 100644 index 3890130d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/jaspillite_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:polished_jaspillite" - } - }, - "result": { - "item": "strata:jaspillite_bricks" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/limestone_bricks.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/limestone_bricks.json deleted file mode 100644 index dc37b075..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/limestone_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:polished_limestone" - } - }, - "result": { - "item": "strata:limestone_bricks", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/mossy_argillite_bricks.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/mossy_argillite_bricks.json deleted file mode 100644 index 2079fda2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/mossy_argillite_bricks.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:argillite_bricks" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "strata:mossy_argillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/mossy_argillite_cobblestone.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/mossy_argillite_cobblestone.json deleted file mode 100644 index f96e1387..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/mossy_argillite_cobblestone.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:argillite_cobblestone" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "strata:mossy_argillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/mossy_chalk_bricks.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/mossy_chalk_bricks.json deleted file mode 100644 index cd8f31ea..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/mossy_chalk_bricks.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:chalk_bricks" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "strata:mossy_chalk_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/mossy_chalk_cobblestone.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/mossy_chalk_cobblestone.json deleted file mode 100644 index a0d94fc9..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/mossy_chalk_cobblestone.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:chalk_cobblestone" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "strata:mossy_chalk_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/mossy_jaspillite_bricks.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/mossy_jaspillite_bricks.json deleted file mode 100644 index 37a967be..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/mossy_jaspillite_bricks.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:jaspillite_bricks" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "strata:mossy_jaspillite_bricks" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/mossy_jaspillite_cobblestone.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/mossy_jaspillite_cobblestone.json deleted file mode 100644 index e7a2b6e4..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/mossy_jaspillite_cobblestone.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:jaspillite_cobblestone" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "strata:mossy_jaspillite_cobblestone" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/mossy_limestone_bricks.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/mossy_limestone_bricks.json deleted file mode 100644 index 282b8731..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/mossy_limestone_bricks.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:limestone_bricks" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "strata:mossy_limestone_bricks" - } -} diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/mossy_shale_bricks.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/mossy_shale_bricks.json deleted file mode 100644 index 0ec513e9..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/mossy_shale_bricks.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:shale_bricks" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "strata:mossy_shale_bricks" - } -} diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/polished_argillite.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/polished_argillite.json deleted file mode 100644 index 35a7e59c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/polished_argillite.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:argillite" - } - }, - "result": { - "item": "strata:polished_argillite" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/polished_chalk.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/polished_chalk.json deleted file mode 100644 index a8d456bb..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/polished_chalk.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:chalk" - } - }, - "result": { - "item": "strata:polished_chalk" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/polished_jaspillite.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/polished_jaspillite.json deleted file mode 100644 index c865e3fd..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/polished_jaspillite.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:jaspillite" - } - }, - "result": { - "item": "strata:polished_jaspillite" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/polished_limestone.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/polished_limestone.json deleted file mode 100644 index 1173ca73..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/polished_limestone.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:limestone" - } - }, - "result": { - "item": "strata:polished_limestone", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/polished_shale.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/polished_shale.json deleted file mode 100644 index 6c8ce369..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/polished_shale.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:shale" - } - }, - "result": { - "item": "strata:polished_shale", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/shale_bricks.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/shale_bricks.json deleted file mode 100644 index 36655301..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/shale_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## ", - "## " - ], - "key": { - "#": { - "item": "strata:polished_shale" - } - }, - "result": { - "item": "strata:shale_bricks", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/argillite_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/argillite_brick_slab.json deleted file mode 100644 index f842a1f1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/argillite_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:argillite_bricks" - } - }, - "result": { - "item": "strata:argillite_brick_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/argillite_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/argillite_slab.json deleted file mode 100644 index 840244e6..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/argillite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:argillite" - } - }, - "result": { - "item": "strata:argillite_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/chalk_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/chalk_brick_slab.json deleted file mode 100644 index 7fd8feaf..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/chalk_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:chalk_bricks" - } - }, - "result": { - "item": "strata:chalk_brick_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/chalk_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/chalk_slab.json deleted file mode 100644 index a732df13..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/chalk_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:chalk" - } - }, - "result": { - "item": "strata:chalk_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/cobblestone_argillite_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/cobblestone_argillite_slab.json deleted file mode 100644 index fddc3193..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/cobblestone_argillite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:cobblestone_argillite" - } - }, - "result": { - "item": "strata:cobblestone_argillite_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/cobblestone_chalk_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/cobblestone_chalk_slab.json deleted file mode 100644 index e128f02e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/cobblestone_chalk_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:cobblestone_chalk" - } - }, - "result": { - "item": "strata:cobblestone_chalk_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/cobblestone_jaspillite_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/cobblestone_jaspillite_slab.json deleted file mode 100644 index db46b802..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/cobblestone_jaspillite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:cobblestone_jaspillite" - } - }, - "result": { - "item": "strata:cobblestone_jaspillite_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/jaspillite_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/jaspillite_brick_slab.json deleted file mode 100644 index 7a05df90..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/jaspillite_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:jaspillite_bricks" - } - }, - "result": { - "item": "strata:jaspillite_brick_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/jaspillite_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/jaspillite_slab.json deleted file mode 100644 index 743805db..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/jaspillite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:jaspillite" - } - }, - "result": { - "item": "strata:jaspillite_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/limestone_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/limestone_brick_slab.json deleted file mode 100644 index 6abe9433..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/limestone_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:limestone_bricks" - } - }, - "result": { - "item": "strata:limestone_brick_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/limestone_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/limestone_slab.json deleted file mode 100644 index 928d46c2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/limestone_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:limestone" - } - }, - "result": { - "item": "strata:limestone_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/mossy_argillite_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/mossy_argillite_brick_slab.json deleted file mode 100644 index a412d428..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/mossy_argillite_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mossy_argillite_bricks" - } - }, - "result": { - "item": "strata:mossy_argillite_brick_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/mossy_argillite_cobblestone_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/mossy_argillite_cobblestone_slab.json deleted file mode 100644 index 95ff9344..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/mossy_argillite_cobblestone_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mossy_argillite_cobblestone" - } - }, - "result": { - "item": "strata:mossy_argillite_cobblestone_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/mossy_chalk_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/mossy_chalk_brick_slab.json deleted file mode 100644 index ca991b43..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/mossy_chalk_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mossy_chalk_bricks" - } - }, - "result": { - "item": "strata:mossy_chalk_brick_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/mossy_chalk_cobblestone_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/mossy_chalk_cobblestone_slab.json deleted file mode 100644 index 5afc8e27..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/mossy_chalk_cobblestone_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mossy_chalk_cobblestone" - } - }, - "result": { - "item": "strata:mossy_chalk_cobblestone_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/mossy_jaspillite_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/mossy_jaspillite_brick_slab.json deleted file mode 100644 index fabfacd1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/mossy_jaspillite_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mossy_jaspillite_bricks" - } - }, - "result": { - "item": "strata:mossy_jaspillite_brick_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/mossy_jaspillite_cobblestone_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/mossy_jaspillite_cobblestone_slab.json deleted file mode 100644 index 69249035..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/mossy_jaspillite_cobblestone_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mossy_jaspillite_cobblestone" - } - }, - "result": { - "item": "strata:mossy_jaspillite_cobblestone_slab" - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/mossy_limestone_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/mossy_limestone_brick_slab.json deleted file mode 100644 index 4ed0fb90..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/mossy_limestone_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mossy_limestone_bricks" - } - }, - "result": { - "item": "strata:mossy_limestone_brick_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/mossy_shale_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/mossy_shale_brick_slab.json deleted file mode 100644 index 80f0ac40..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/mossy_shale_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:mossy_shale_bricks" - } - }, - "result": { - "item": "strata:mossy_shale_brick_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/polished_argillite_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/polished_argillite_slab.json deleted file mode 100644 index a78791ca..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/polished_argillite_slab.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###" - ], - "key": { - "#": { - "item": "strata:polished_argillite" - } - }, - "result": { - "item": "strata:polished_argillite_slab" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/polished_chalk_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/polished_chalk_slab.json deleted file mode 100644 index 6bf3ded1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/polished_chalk_slab.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###" - ], - "key": { - "#": { - "item": "strata:polished_chalk" - } - }, - "result": { - "item": "strata:polished_chalk_slab" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/polished_jaspillite_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/polished_jaspillite_slab.json deleted file mode 100644 index 58a29fc7..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/polished_jaspillite_slab.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###" - ], - "key": { - "#": { - "item": "strata:polished_jaspillite" - } - }, - "result": { - "item": "strata:polished_jaspillite_slab" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/polished_limestone_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/polished_limestone_slab.json deleted file mode 100644 index c2c2cda8..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/polished_limestone_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:polished_limestone" - } - }, - "result": { - "item": "strata:polished_limestone_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/polished_shale_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/polished_shale_slab.json deleted file mode 100644 index fa2ed37c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/polished_shale_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:polished_shale" - } - }, - "result": { - "item": "strata:polished_shale_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/shale_brick_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/shale_brick_slab.json deleted file mode 100644 index da81da19..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/shale_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:shale_bricks" - } - }, - "result": { - "item": "strata:shale_brick_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/shale_slab.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/shale_slab.json deleted file mode 100644 index 2fd6d815..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/slab/shale_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "strata:shale" - } - }, - "result": { - "item": "strata:shale_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/argillite_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/argillite_brick_stairs.json deleted file mode 100644 index 267189d2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/argillite_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:argillite_bricks" - } - }, - "result": { - "item": "strata:argillite_brick_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/argillite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/argillite_stairs.json deleted file mode 100644 index fb32aa74..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/argillite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:argillite" - } - }, - "result": { - "item": "strata:argillite_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/chalk_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/chalk_brick_stairs.json deleted file mode 100644 index 74205198..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/chalk_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:chalk_bricks" - } - }, - "result": { - "item": "strata:chalk_brick_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/chalk_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/chalk_stairs.json deleted file mode 100644 index 16db47b5..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/chalk_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:chalk" - } - }, - "result": { - "item": "strata:chalk_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/cobblestone_argillite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/cobblestone_argillite_stairs.json deleted file mode 100644 index 47aa3afc..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/cobblestone_argillite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:cobblestone_argillite" - } - }, - "result": { - "item": "strata:cobblestone_argillite_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/cobblestone_chalk_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/cobblestone_chalk_stairs.json deleted file mode 100644 index 13a10528..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/cobblestone_chalk_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:cobblestone_chalk" - } - }, - "result": { - "item": "strata:cobblestone_chalk_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/cobblestone_jaspillite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/cobblestone_jaspillite_stairs.json deleted file mode 100644 index d1437753..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/cobblestone_jaspillite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:cobblestone_jaspillite" - } - }, - "result": { - "item": "strata:cobblestone_jaspillite_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/jaspillite_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/jaspillite_brick_stairs.json deleted file mode 100644 index 7b586454..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/jaspillite_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:jaspillite_bricks" - } - }, - "result": { - "item": "strata:jaspillite_brick_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/jaspillite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/jaspillite_stairs.json deleted file mode 100644 index 0a6f1870..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/jaspillite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:jaspillite" - } - }, - "result": { - "item": "strata:jaspillite_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/limestone_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/limestone_brick_stairs.json deleted file mode 100644 index 69732ecd..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/limestone_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:limestone_bricks" - } - }, - "result": { - "item": "strata:limestone_brick_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/limestone_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/limestone_stairs.json deleted file mode 100644 index b50a5f8f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/limestone_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:limestone" - } - }, - "result": { - "item": "strata:limestone_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_argillite_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_argillite_brick_stairs.json deleted file mode 100644 index fb769dc0..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_argillite_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_argillite_bricks" - } - }, - "result": { - "item": "strata:mossy_argillite_brick_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_argillite_cobblestone_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_argillite_cobblestone_stairs.json deleted file mode 100644 index 8db8122c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_argillite_cobblestone_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_argillite_cobblestone" - } - }, - "result": { - "item": "strata:mossy_argillite_cobblestone_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_chalk_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_chalk_brick_stairs.json deleted file mode 100644 index cd9e114f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_chalk_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_chalk_bricks" - } - }, - "result": { - "item": "strata:mossy_chalk_brick_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_chalk_cobblestone_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_chalk_cobblestone_stairs.json deleted file mode 100644 index 42421183..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_chalk_cobblestone_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_chalk_cobblestone" - } - }, - "result": { - "item": "strata:mossy_chalk_cobblestone_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_jaspillite_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_jaspillite_brick_stairs.json deleted file mode 100644 index 151586b1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_jaspillite_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_jaspillite_bricks" - } - }, - "result": { - "item": "strata:mossy_jaspillite_brick_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_jaspillite_cobblestone_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_jaspillite_cobblestone_stairs.json deleted file mode 100644 index c0345129..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_jaspillite_cobblestone_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_jaspillite_cobblestone" - } - }, - "result": { - "item": "strata:mossy_jaspillite_cobblestone_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_limestone_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_limestone_brick_stairs.json deleted file mode 100644 index 9e94c06d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_limestone_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_limestone_bricks" - } - }, - "result": { - "item": "strata:mossy_limestone_brick_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_shale_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_shale_brick_stairs.json deleted file mode 100644 index 08a53586..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/mossy_shale_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_shale_bricks" - } - }, - "result": { - "item": "strata:mossy_shale_brick_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/polished_argillite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/polished_argillite_stairs.json deleted file mode 100644 index 01d1dc0c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/polished_argillite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:polished_argillite" - } - }, - "result": { - "item": "strata:polished_argillite_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/polished_chalk_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/polished_chalk_stairs.json deleted file mode 100644 index 1d0589b4..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/polished_chalk_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:polished_chalk" - } - }, - "result": { - "item": "strata:polished_chalk_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/polished_jaspillite_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/polished_jaspillite_stairs.json deleted file mode 100644 index c59fb07f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/polished_jaspillite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:polished_jaspillite" - } - }, - "result": { - "item": "strata:polished_jaspillite_stairs" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/polished_limestone_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/polished_limestone_stairs.json deleted file mode 100644 index eab12af5..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/polished_limestone_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:polished_limestone" - } - }, - "result": { - "item": "strata:polished_limestone_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/polished_shale_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/polished_shale_stairs.json deleted file mode 100644 index 23d5e002..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/polished_shale_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:polished_shale" - } - }, - "result": { - "item": "strata:polished_shale_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/shale_brick_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/shale_brick_stairs.json deleted file mode 100644 index 701ca884..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/shale_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:shale_bricks" - } - }, - "result": { - "item": "strata:shale_brick_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/shale_stairs.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/shale_stairs.json deleted file mode 100644 index 1714e6dc..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/stairs/shale_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "strata:shale" - } - }, - "result": { - "item": "strata:shale_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/argillite_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/argillite_brick_wall.json deleted file mode 100644 index cb16f6b3..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/argillite_brick_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:argillite_bricks" - } - }, - "result": { - "item": "strata:argillite_brick_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/argillite_wall.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/argillite_wall.json deleted file mode 100644 index 8221a81d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/argillite_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:argillite" - } - }, - "result": { - "item": "strata:argillite_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/chalk_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/chalk_brick_wall.json deleted file mode 100644 index 7fe63957..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/chalk_brick_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:chalk_bricks" - } - }, - "result": { - "item": "strata:chalk_brick_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/chalk_wall.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/chalk_wall.json deleted file mode 100644 index 9e5c5c31..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/chalk_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:chalk" - } - }, - "result": { - "item": "strata:chalk_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/cobblestone_argillite_wall.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/cobblestone_argillite_wall.json deleted file mode 100644 index ff3716b1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/cobblestone_argillite_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:cobblestone_argillite" - } - }, - "result": { - "item": "strata:cobblestone_argillite_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/cobblestone_chalk_wall.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/cobblestone_chalk_wall.json deleted file mode 100644 index fc4448ea..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/cobblestone_chalk_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:cobblestone_chalk" - } - }, - "result": { - "item": "strata:cobblestone_chalk_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/cobblestone_jaspillite_wall.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/cobblestone_jaspillite_wall.json deleted file mode 100644 index e00f0686..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/cobblestone_jaspillite_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:cobblestone_jaspillite" - } - }, - "result": { - "item": "strata:cobblestone_jaspillite_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/jaspillite_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/jaspillite_brick_wall.json deleted file mode 100644 index 3d5775a8..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/jaspillite_brick_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:jaspillite_bricks" - } - }, - "result": { - "item": "strata:jaspillite_brick_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/jaspillite_wall.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/jaspillite_wall.json deleted file mode 100644 index fd73f8b0..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/jaspillite_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:jaspillite" - } - }, - "result": { - "item": "strata:jaspillite_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/limestone_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/limestone_brick_wall.json deleted file mode 100644 index fef2fccf..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/limestone_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:limestone_bricks" - } - }, - "result": { - "item": "strata:limestone_brick_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/limestone_wall.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/limestone_wall.json deleted file mode 100644 index f24b0ea4..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/limestone_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:limestone" - } - }, - "result": { - "item": "strata:limestone_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/mossy_argillite_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/mossy_argillite_brick_wall.json deleted file mode 100644 index fac6a31c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/mossy_argillite_brick_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_argillite_bricks" - } - }, - "result": { - "item": "strata:mossy_argillite_brick_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/mossy_argillite_cobblestone_wall.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/mossy_argillite_cobblestone_wall.json deleted file mode 100644 index 634a5b74..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/mossy_argillite_cobblestone_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_argillite_cobblestone" - } - }, - "result": { - "item": "strata:mossy_argillite_cobblestone_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/mossy_chalk_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/mossy_chalk_brick_wall.json deleted file mode 100644 index 7e960787..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/mossy_chalk_brick_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_chalk_bricks" - } - }, - "result": { - "item": "strata:mossy_chalk_brick_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/mossy_chalk_cobblestone_wall.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/mossy_chalk_cobblestone_wall.json deleted file mode 100644 index 2d4cf093..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/mossy_chalk_cobblestone_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_chalk_cobblestone" - } - }, - "result": { - "item": "strata:mossy_chalk_cobblestone_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/mossy_jaspillite_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/mossy_jaspillite_brick_wall.json deleted file mode 100644 index 535ce244..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/mossy_jaspillite_brick_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_jaspillite_bricks" - } - }, - "result": { - "item": "strata:mossy_jaspillite_brick_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/mossy_jaspillite_cobblestone_wall.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/mossy_jaspillite_cobblestone_wall.json deleted file mode 100644 index f14876cd..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/mossy_jaspillite_cobblestone_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_jaspillite_cobblestone" - } - }, - "result": { - "item": "strata:mossy_jaspillite_cobblestone_wall" - "count": 4 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/mossy_limestone_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/mossy_limestone_brick_wall.json deleted file mode 100644 index e969010c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/mossy_limestone_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_limestone_bricks" - } - }, - "result": { - "item": "strata:mossy_limestone_brick_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/mossy_shale_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/mossy_shale_brick_wall.json deleted file mode 100644 index 71c0e6f1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/mossy_shale_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:mossy_shale_bricks" - } - }, - "result": { - "item": "strata:mossy_shale_brick_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/shale_brick_wall.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/shale_brick_wall.json deleted file mode 100644 index 7b91f20f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/shale_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:shale_bricks" - } - }, - "result": { - "item": "strata:shale_brick_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/shale_wall.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/shale_wall.json deleted file mode 100644 index 10fb3b4f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/block/wall/shale_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "strata:shale" - } - }, - "result": { - "item": "strata:shale_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/button/argillite_button.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/button/argillite_button.json deleted file mode 100644 index e5b50adf..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/button/argillite_button.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:argillite" - } - ], - "result": { - "item": "strata:argillite_button" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/button/chalk_button.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/button/chalk_button.json deleted file mode 100644 index afafffdd..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/button/chalk_button.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:chalk" - } - ], - "result": { - "item": "strata:chalk_button" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/button/jaspillite_button.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/button/jaspillite_button.json deleted file mode 100644 index 9309fa3c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/button/jaspillite_button.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:jaspillite" - } - ], - "result": { - "item": "strata:jaspillite_button" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/button/limestone_button.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/button/limestone_button.json deleted file mode 100644 index d4383daf..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/button/limestone_button.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:limestone" - } - ], - "result": { - "item": "strata:limestone_button" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/button/shale_button.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/button/shale_button.json deleted file mode 100644 index 13d116a3..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/button/shale_button.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "strata:shale" - } - ], - "result": { - "item": "strata:shale_button" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/pressure_plate/argillite_pressure_plate.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/pressure_plate/argillite_pressure_plate.json deleted file mode 100644 index ad4eda14..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/pressure_plate/argillite_pressure_plate.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## " - ], - "key": { - "#": { - "item": "strata:argillite" - } - }, - "result": { - "item": "strata:argillite_pressure_plate" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/pressure_plate/chalk_pressure_plate.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/pressure_plate/chalk_pressure_plate.json deleted file mode 100644 index 7b009cef..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/pressure_plate/chalk_pressure_plate.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## " - ], - "key": { - "#": { - "item": "strata:chalk" - } - }, - "result": { - "item": "strata:chalk_pressure_plate" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/pressure_plate/jaspillite_pressure_plate.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/pressure_plate/jaspillite_pressure_plate.json deleted file mode 100644 index 05b09caf..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/pressure_plate/jaspillite_pressure_plate.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## " - ], - "key": { - "#": { - "item": "strata:jaspillite" - } - }, - "result": { - "item": "strata:jaspillite_pressure_plate" - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/pressure_plate/limestone_pressure_plate.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/pressure_plate/limestone_pressure_plate.json deleted file mode 100644 index 5a7e7d29..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/pressure_plate/limestone_pressure_plate.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## " - ], - "key": { - "#": { - "item": "strata:limestone" - } - }, - "result": { - "item": "strata:limestone_pressure_plate", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/pressure_plate/shale_pressure_plate.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/pressure_plate/shale_pressure_plate.json deleted file mode 100644 index a05c9f1a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/crafting/pressure_plate/shale_pressure_plate.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "## " - ], - "key": { - "#": { - "item": "strata:shale" - } - }, - "result": { - "item": "strata:shale_pressure_plate", - "count": 6 - } -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/smelting/block/argillite.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/smelting/block/argillite.json deleted file mode 100644 index 15b23534..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/smelting/block/argillite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:argillite_cobblestone" - }, - "result": "strata:argillite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/smelting/block/chalk.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/smelting/block/chalk.json deleted file mode 100644 index 59468bfa..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/smelting/block/chalk.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:chalk_cobblestone" - }, - "result": "strata:chalk", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/smelting/block/cracked_argillite_bricks.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/smelting/block/cracked_argillite_bricks.json deleted file mode 100644 index ea2cd8d9..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/smelting/block/cracked_argillite_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:argillite_bricks" - }, - "result": "strata:cracked_argillite_bricks", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/smelting/block/cracked_chalk_bricks.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/smelting/block/cracked_chalk_bricks.json deleted file mode 100644 index 3a19669a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/smelting/block/cracked_chalk_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:chalk_bricks" - }, - "result": "strata:cracked_chalk_bricks", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/smelting/block/cracked_jaspillite_bricks.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/smelting/block/cracked_jaspillite_bricks.json deleted file mode 100644 index f642c1c5..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/smelting/block/cracked_jaspillite_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:jaspillite_bricks" - }, - "result": "strata:cracked_jaspillite_bricks", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/smelting/block/cracked_limestone_bricks.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/smelting/block/cracked_limestone_bricks.json deleted file mode 100644 index ebef9e2f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/smelting/block/cracked_limestone_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:limestone_bricks" - }, - "result": "strata:cracked_limestone_bricks", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/smelting/block/cracked_shale_bricks.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/smelting/block/cracked_shale_bricks.json deleted file mode 100644 index c1551107..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/smelting/block/cracked_shale_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:shale_bricks" - }, - "result": "strata:cracked_shale_bricks", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/smelting/block/jaspillite.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/smelting/block/jaspillite.json deleted file mode 100644 index d6317e3d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/smelting/block/jaspillite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "strata:jaspillite_cobblestone" - }, - "result": "strata:jaspillite", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutter_recipies/limestone_slab_stonecutter.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutter_recipies/limestone_slab_stonecutter.json deleted file mode 100644 index 43211581..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutter_recipies/limestone_slab_stonecutter.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:limestone" - }, - "result": "strata:limestone_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutter_recipies/limestone_stairs_stonecutter.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutter_recipies/limestone_stairs_stonecutter.json deleted file mode 100644 index f31bc927..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutter_recipies/limestone_stairs_stonecutter.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:limestone" - }, - "result": "strata:limestone_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutter_recipies/limestone_wall_stonecutter.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutter_recipies/limestone_wall_stonecutter.json deleted file mode 100644 index 610de758..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutter_recipies/limestone_wall_stonecutter.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:limestone" - }, - "result": "strata:limestone_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutter_recipies/shale_slab_stonecutter.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutter_recipies/shale_slab_stonecutter.json deleted file mode 100644 index 15d14bf0..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutter_recipies/shale_slab_stonecutter.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:shale" - }, - "result": "strata:shale_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutter_recipies/shale_stairs_stonecutter.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutter_recipies/shale_stairs_stonecutter.json deleted file mode 100644 index 1148af30..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutter_recipies/shale_stairs_stonecutter.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:shale" - }, - "result": "strata:shale_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutter_recipies/shale_wall_stonecutter.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutter_recipies/shale_wall_stonecutter.json deleted file mode 100644 index d138a9f6..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutter_recipies/shale_wall_stonecutter.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:shale" - }, - "result": "strata:shale_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/argillite_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/argillite_bricks_polished_stonecutting.json deleted file mode 100644 index d448bf3d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/argillite_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:argillite" - }, - "result": "strata:argillite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/argillite_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/argillite_bricks_stone_stonecutting.json deleted file mode 100644 index d448bf3d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/argillite_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:argillite" - }, - "result": "strata:argillite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chalk_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chalk_bricks_polished_stonecutting.json deleted file mode 100644 index a5352874..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chalk_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:chalk" - }, - "result": "strata:chalk_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chalk_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chalk_bricks_stone_stonecutting.json deleted file mode 100644 index a5352874..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chalk_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:chalk" - }, - "result": "strata:chalk_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_argillite_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_argillite_bricks_bricks_stonecutting.json deleted file mode 100644 index 49321344..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_argillite_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:argillite_bricks" - }, - "result": "strata:chiseled_argillite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_argillite_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_argillite_bricks_polished_stonecutting.json deleted file mode 100644 index b78bedfd..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_argillite_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_argillite" - }, - "result": "strata:chiseled_argillite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_argillite_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_argillite_bricks_stone_stonecutting.json deleted file mode 100644 index 7c8f713f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_argillite_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:argillite" - }, - "result": "strata:chiseled_argillite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_chalk_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_chalk_bricks_bricks_stonecutting.json deleted file mode 100644 index 99693cda..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_chalk_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:chalk_bricks" - }, - "result": "strata:chiseled_chalk_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_chalk_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_chalk_bricks_polished_stonecutting.json deleted file mode 100644 index 19bf3cce..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_chalk_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_chalk" - }, - "result": "strata:chiseled_chalk_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_chalk_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_chalk_bricks_stone_stonecutting.json deleted file mode 100644 index 4973f5d1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_chalk_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:chalk" - }, - "result": "strata:chiseled_chalk_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_jaspillite_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_jaspillite_bricks_bricks_stonecutting.json deleted file mode 100644 index 4e4a2a47..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_jaspillite_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:jaspillite_bricks" - }, - "result": "strata:chiseled_jaspillite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_jaspillite_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_jaspillite_bricks_polished_stonecutting.json deleted file mode 100644 index 669f2d49..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_jaspillite_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_jaspillite" - }, - "result": "strata:chiseled_jaspillite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_jaspillite_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_jaspillite_bricks_stone_stonecutting.json deleted file mode 100644 index ef4500f7..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_jaspillite_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:jaspillite" - }, - "result": "strata:chiseled_jaspillite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_limestone_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_limestone_bricks_bricks_stonecutting.json deleted file mode 100644 index 4b1e7d2d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_limestone_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:limestone_bricks" - }, - "result": "strata:chiseled_limestone_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_limestone_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_limestone_bricks_polished_stonecutting.json deleted file mode 100644 index d10dbf07..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_limestone_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_limestone" - }, - "result": "strata:chiseled_limestone_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_limestone_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_limestone_bricks_stone_stonecutting.json deleted file mode 100644 index 1699a21c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_limestone_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:limestone" - }, - "result": "strata:chiseled_limestone_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_shale_bricks_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_shale_bricks_bricks_stonecutting.json deleted file mode 100644 index 89e7d145..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_shale_bricks_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:shale_bricks" - }, - "result": "strata:chiseled_shale_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_shale_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_shale_bricks_polished_stonecutting.json deleted file mode 100644 index 923e8383..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_shale_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_shale" - }, - "result": "strata:chiseled_shale_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_shale_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_shale_bricks_stone_stonecutting.json deleted file mode 100644 index 0795b197..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/chiseled_shale_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:shale" - }, - "result": "strata:chiseled_shale_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/jaspillite_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/jaspillite_bricks_polished_stonecutting.json deleted file mode 100644 index 98b9ac0c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/jaspillite_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:jaspillite" - }, - "result": "strata:jaspillite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/jaspillite_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/jaspillite_bricks_stone_stonecutting.json deleted file mode 100644 index 98b9ac0c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/jaspillite_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:jaspillite" - }, - "result": "strata:jaspillite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/limestone_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/limestone_bricks_polished_stonecutting.json deleted file mode 100644 index 22f8a210..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/limestone_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_limestone" - }, - "result": "strata:limestone_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/limestone_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/limestone_bricks_stone_stonecutting.json deleted file mode 100644 index c31e57af..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/limestone_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:limestone" - }, - "result": "strata:limestone_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/mossy_limestone_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/mossy_limestone_bricks_stonecutting.json deleted file mode 100644 index cc69d61a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/mossy_limestone_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_limestone_bricks" - }, - "result": "strata:mossy_limestone_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/mossy_shale_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/mossy_shale_bricks_stonecutting.json deleted file mode 100644 index f67b725a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/mossy_shale_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_shale_bricks" - }, - "result": "strata:mossy_shale_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/polished_argillite_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/polished_argillite_stonecutting.json deleted file mode 100644 index 3004338d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/polished_argillite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:argillite" - }, - "result": "strata:polished_argillite", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/polished_chalk_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/polished_chalk_stonecutting.json deleted file mode 100644 index 7ed144ea..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/polished_chalk_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:chalk" - }, - "result": "strata:polished_chalk", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/polished_jaspillite_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/polished_jaspillite_stonecutting.json deleted file mode 100644 index ddebc8a4..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/polished_jaspillite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:jaspillite" - }, - "result": "strata:polished_jaspillite", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/polished_limestone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/polished_limestone_stonecutting.json deleted file mode 100644 index f2375006..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/polished_limestone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:limestone" - }, - "result": "strata:polished_limestone", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/polished_shale_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/polished_shale_stonecutting.json deleted file mode 100644 index f851f332..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/polished_shale_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:shale" - }, - "result": "strata:polished_shale", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/shale_bricks_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/shale_bricks_polished_stonecutting.json deleted file mode 100644 index 3d20356d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/shale_bricks_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_shale" - }, - "result": "strata:shale_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/shale_bricks_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/shale_bricks_stone_stonecutting.json deleted file mode 100644 index 45c213c8..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/shale_bricks_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:shale" - }, - "result": "strata:shale_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_brick_slab_bricks_stonecutting.json deleted file mode 100644 index 787cfafe..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:argillite_bricks" - }, - "result": "strata:argillite_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_brick_slab_polished_stonecutting.json deleted file mode 100644 index 0165f5b3..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_argillite" - }, - "result": "strata:argillite_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_brick_slab_stone_stonecutting.json deleted file mode 100644 index 46d3705d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:argillite" - }, - "result": "strata:argillite_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_cobblestone_slab_stonecutting.json deleted file mode 100644 index 210aa139..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:argillite_cobblestone" - }, - "result": "strata:argillite_cobblestone_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_slab_stonecutting.json deleted file mode 100644 index 66cc15b1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/argillite_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:argillite" - }, - "result": "strata:argillite_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_brick_slab_bricks_stonecutting.json deleted file mode 100644 index b99c4e96..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:chalk_bricks" - }, - "result": "strata:chalk_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_brick_slab_polished_stonecutting.json deleted file mode 100644 index 603a7c10..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_chalk" - }, - "result": "strata:chalk_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_brick_slab_stone_stonecutting.json deleted file mode 100644 index e77e1b96..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:chalk" - }, - "result": "strata:chalk_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_cobblestone_slab_stonecutting.json deleted file mode 100644 index cd0c83c5..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:chalk_cobblestone" - }, - "result": "strata:chalk_cobblestone_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_slab_stonecutting.json deleted file mode 100644 index ae8f2b0c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/chalk_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:chalk" - }, - "result": "strata:chalk_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_brick_slab_bricks_stonecutting.json deleted file mode 100644 index fff58f05..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:jaspillite_bricks" - }, - "result": "strata:jaspillite_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_brick_slab_polished_stonecutting.json deleted file mode 100644 index c4c94dcd..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_jaspillite" - }, - "result": "strata:jaspillite_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_brick_slab_stone_stonecutting.json deleted file mode 100644 index 6817c7f6..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:jaspillite" - }, - "result": "strata:jaspillite_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_cobblestone_slab_stonecutting.json deleted file mode 100644 index 0a1b9a28..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:jaspillite_cobblestone" - }, - "result": "strata:jaspillite_cobblestone_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_slab_stonecutting.json deleted file mode 100644 index df8806fd..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/jaspillite_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:jaspillite" - }, - "result": "strata:jaspillite_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_brick_slab_bricks_stonecutting.json deleted file mode 100644 index 13d42129..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:limestone_bricks" - }, - "result": "strata:limestone_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_brick_slab_polished_stonecutting.json deleted file mode 100644 index 0bcebd58..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_limestone" - }, - "result": "strata:limestone_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_brick_slab_stone_stonecutting.json deleted file mode 100644 index d6fe2e9e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:limestone" - }, - "result": "strata:limestone_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_slab_stonecutting.json deleted file mode 100644 index 43211581..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/limestone_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:limestone" - }, - "result": "strata:limestone_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_argillite_brick_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_argillite_brick_slab_stonecutting.json deleted file mode 100644 index c8df04b2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_argillite_brick_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_argillite_bricks" - }, - "result": "strata:mossy_argillite_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_argillite_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_argillite_cobblestone_slab_stonecutting.json deleted file mode 100644 index 49887c2f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_argillite_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_argillite_cobblestone" - }, - "result": "strata:mossy_argillite_cobblestone_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_chalk_brick_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_chalk_brick_slab_stonecutting.json deleted file mode 100644 index a622fd17..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_chalk_brick_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_chalk_bricks" - }, - "result": "strata:mossy_chalk_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_chalk_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_chalk_cobblestone_slab_stonecutting.json deleted file mode 100644 index 0ff0b275..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_chalk_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_chalk_cobblestone" - }, - "result": "strata:mossy_chalk_cobblestone_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_jaspillite_brick_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_jaspillite_brick_slab_stonecutting.json deleted file mode 100644 index ce79124d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_jaspillite_brick_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_jaspillite_bricks" - }, - "result": "strata:mossy_jaspillite_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_jaspillite_cobblestone_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_jaspillite_cobblestone_slab_stonecutting.json deleted file mode 100644 index 40c2fb2c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_jaspillite_cobblestone_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_jaspillite_cobblestone" - }, - "result": "strata:mossy_jaspillite_cobblestone_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_limestone_brick_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_limestone_brick_slab_stonecutting.json deleted file mode 100644 index b3c0ff4c..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_limestone_brick_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_limestone_bricks" - }, - "result": "strata:limestone_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_shale_brick_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_shale_brick_slab_stonecutting.json deleted file mode 100644 index 96b0bc71..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/mossy_shale_brick_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_shale_bricks" - }, - "result": "strata:shale_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_argillite_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_argillite_slab_polished_stonecutting.json deleted file mode 100644 index 1e2b5f68..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_argillite_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_argillite" - }, - "result": "strata:polished_argillite_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_argillite_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_argillite_slab_stone_stonecutting.json deleted file mode 100644 index 35c72572..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_argillite_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:argillite" - }, - "result": "strata:polished_argillite_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_chalk_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_chalk_slab_polished_stonecutting.json deleted file mode 100644 index f91ee8dd..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_chalk_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_chalk" - }, - "result": "strata:polished_chalk_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_chalk_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_chalk_slab_stone_stonecutting.json deleted file mode 100644 index 2aa21081..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_chalk_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:chalk" - }, - "result": "strata:polished_chalk_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_jaspillite_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_jaspillite_slab_polished_stonecutting.json deleted file mode 100644 index abe71aa4..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_jaspillite_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_jaspillite" - }, - "result": "strata:polished_jaspillite_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_jaspillite_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_jaspillite_slab_stone_stonecutting.json deleted file mode 100644 index 1d5d8734..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_jaspillite_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:jaspillite" - }, - "result": "strata:polished_jaspillite_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_limestone_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_limestone_slab_polished_stonecutting.json deleted file mode 100644 index fea79a4a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_limestone_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_limestone" - }, - "result": "strata:polished_limestone_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_limestone_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_limestone_slab_stone_stonecutting.json deleted file mode 100644 index ec30f39e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_limestone_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:limestone" - }, - "result": "strata:polished_limestone_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_shale_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_shale_slab_polished_stonecutting.json deleted file mode 100644 index 3e0a9536..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_shale_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_shale" - }, - "result": "strata:polished_shale_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_shale_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_shale_slab_stone_stonecutting.json deleted file mode 100644 index a9b5f44d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/polished_shale_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:shale" - }, - "result": "strata:polished_shale_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/shale_brick_slab_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/shale_brick_slab_bricks_stonecutting.json deleted file mode 100644 index 3e30709b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/shale_brick_slab_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:shale_bricks" - }, - "result": "strata:shale_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/shale_brick_slab_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/shale_brick_slab_polished_stonecutting.json deleted file mode 100644 index d5652ab7..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/shale_brick_slab_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_shale" - }, - "result": "strata:shale_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/shale_brick_slab_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/shale_brick_slab_stone_stonecutting.json deleted file mode 100644 index 9804b489..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/shale_brick_slab_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:shale" - }, - "result": "strata:shale_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/shale_slab_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/shale_slab_stonecutting.json deleted file mode 100644 index 15d14bf0..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/slab/shale_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:shale" - }, - "result": "strata:shale_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index f61e6a89..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:argillite_bricks" - }, - "result": "strata:argillite_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_brick_stairs_polished_stonecutting.json deleted file mode 100644 index 47823ca7..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_argillite" - }, - "result": "strata:argillite_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_brick_stairs_stone_stonecutting.json deleted file mode 100644 index d113c4c5..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:argillite" - }, - "result": "strata:argillite_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_cobblestone_stairs_stonecutting.json deleted file mode 100644 index 64f0301b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:argillite_cobblestone" - }, - "result": "strata:argillite_cobblestone_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_stairs_stonecutting.json deleted file mode 100644 index d530997d..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/argillite_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:argillite" - }, - "result": "strata:argillite_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index 5f8b8d5e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:chalk_bricks" - }, - "result": "strata:chalk_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_brick_stairs_polished_stonecutting.json deleted file mode 100644 index e556fdeb..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_chalk" - }, - "result": "strata:chalk_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_brick_stairs_stone_stonecutting.json deleted file mode 100644 index 8129bf49..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:chalk" - }, - "result": "strata:chalk_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_cobblestone_stairs_stonecutting.json deleted file mode 100644 index 47d58e48..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:chalk_cobblestone" - }, - "result": "strata:chalk_cobblestone_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_stairs_stonecutting.json deleted file mode 100644 index 653b165b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/chalk_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:chalk" - }, - "result": "strata:chalk_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index 4a2bc365..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:jaspillite_bricks" - }, - "result": "strata:jaspillite_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_polished_stonecutting.json deleted file mode 100644 index f7facc59..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_jaspillite" - }, - "result": "strata:jaspillite_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_stone_stonecutting.json deleted file mode 100644 index d9ce52c1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:jaspillite" - }, - "result": "strata:jaspillite_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_cobblestone_stairs_stonecutting.json deleted file mode 100644 index e7a03d61..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:jaspillite_cobblestone" - }, - "result": "strata:jaspillite_cobblestone_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_stairs_stonecutting.json deleted file mode 100644 index 3b869a91..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/jaspillite_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:jaspillite" - }, - "result": "strata:jaspillite_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index 517ed5bc..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:limestone_bricks" - }, - "result": "strata:limestone_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_brick_stairs_polished_stonecutting.json deleted file mode 100644 index 4010eb2b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_limestone" - }, - "result": "strata:limestone_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_brick_stairs_stone_stonecutting.json deleted file mode 100644 index 8d461512..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:limestone" - }, - "result": "strata:limestone_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_stairs_stonecutting.json deleted file mode 100644 index f31bc927..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/limestone_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:limestone" - }, - "result": "strata:limestone_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_argillite_brick_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_argillite_brick_stairs_stonecutting.json deleted file mode 100644 index f2782e23..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_argillite_brick_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_argillite_bricks" - }, - "result": "strata:mossy_argillite_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_argillite_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_argillite_cobblestone_stairs_stonecutting.json deleted file mode 100644 index 830209ac..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_argillite_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_argillite_cobblestone" - }, - "result": "strata:mossy_argillite_cobblestone_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_chalk_brick_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_chalk_brick_stairs_stonecutting.json deleted file mode 100644 index 842beb61..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_chalk_brick_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_chalk_bricks" - }, - "result": "strata:mossy_chalk_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_chalk_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_chalk_cobblestone_stairs_stonecutting.json deleted file mode 100644 index 4fc79eed..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_chalk_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_chalk_cobblestone" - }, - "result": "strata:mossy_chalk_cobblestone_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_jaspillite_brick_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_jaspillite_brick_stairs_stonecutting.json deleted file mode 100644 index 1c9ee3bc..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_jaspillite_brick_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_jaspillite_bricks" - }, - "result": "strata:mossy_jaspillite_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_jaspillite_cobblestone_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_jaspillite_cobblestone_stairs_stonecutting.json deleted file mode 100644 index 41cae4ae..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_jaspillite_cobblestone_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_jaspillite_cobblestone" - }, - "result": "strata:mossy_jaspillite_cobblestone_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_limestone_brick_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_limestone_brick_stairs_stonecutting.json deleted file mode 100644 index d2551e79..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_limestone_brick_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_limestone_bricks" - }, - "result": "strata:mossy_limestone_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_shale_brick_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_shale_brick_stairs_stonecutting.json deleted file mode 100644 index a69302c4..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/mossy_shale_brick_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_shale_bricks" - }, - "result": "strata:mossy_shale_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_argillite_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_argillite_stairs_polished_stonecutting.json deleted file mode 100644 index 6a7e9ca7..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_argillite_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_argillite" - }, - "result": "strata:polished_argillite_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_argillite_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_argillite_stairs_stone_stonecutting.json deleted file mode 100644 index 7d50ed61..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_argillite_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:argillite" - }, - "result": "strata:polished_argillite_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_chalk_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_chalk_stairs_polished_stonecutting.json deleted file mode 100644 index 025ec7b1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_chalk_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_chalk" - }, - "result": "strata:polished_chalk_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_chalk_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_chalk_stairs_stone_stonecutting.json deleted file mode 100644 index b1951da3..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_chalk_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:chalk" - }, - "result": "strata:polished_chalk_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_jaspillite_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_jaspillite_stairs_polished_stonecutting.json deleted file mode 100644 index fdee6e83..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_jaspillite_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_jaspillite" - }, - "result": "strata:polished_jaspillite_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_jaspillite_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_jaspillite_stairs_stone_stonecutting.json deleted file mode 100644 index 5712a739..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_jaspillite_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:jaspillite" - }, - "result": "strata:polished_jaspillite_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_limestone_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_limestone_stairs_polished_stonecutting.json deleted file mode 100644 index 51aa8df1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_limestone_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_limestone" - }, - "result": "strata:polished_limestone_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_limestone_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_limestone_stairs_stone_stonecutting.json deleted file mode 100644 index ee4fb023..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_limestone_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:limestone" - }, - "result": "strata:polished_limestone_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_shale_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_shale_stairs_polished_stonecutting.json deleted file mode 100644 index 1ff5ad62..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_shale_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_shale" - }, - "result": "strata:polished_shale_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_shale_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_shale_stairs_stone_stonecutting.json deleted file mode 100644 index fac5252f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/polished_shale_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:shale" - }, - "result": "strata:polished_shale_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_brick_stairs_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_brick_stairs_bricks_stonecutting.json deleted file mode 100644 index 7074e837..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_brick_stairs_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:shale_bricks" - }, - "result": "strata:shale_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_brick_stairs_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_brick_stairs_polished_stonecutting.json deleted file mode 100644 index ae38ff5b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_brick_stairs_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_shale" - }, - "result": "strata:shale_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_brick_stairs_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_brick_stairs_stone_stonecutting.json deleted file mode 100644 index d5752dac..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_brick_stairs_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:shale" - }, - "result": "strata:shale_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_stairs_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_stairs_stonecutting.json deleted file mode 100644 index 1148af30..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/stairs/shale_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:shale" - }, - "result": "strata:shale_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_brick_wall_bricks_stonecutting.json deleted file mode 100644 index 6406ec45..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:argillite_bricks" - }, - "result": "strata:argillite_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_brick_wall_polished_stonecutting.json deleted file mode 100644 index 76d92ba6..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_argillite" - }, - "result": "strata:argillite_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_brick_wall_stone_stonecutting.json deleted file mode 100644 index 201470f7..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:argillite" - }, - "result": "strata:argillite_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_cobblestone_wall_stonecutting.json deleted file mode 100644 index c6142ae7..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:argillite_cobblestone" - }, - "result": "strata:argillite_cobblestone_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_wall_stonecutting.json deleted file mode 100644 index f622960f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/argillite_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:argillite" - }, - "result": "strata:argillite_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_brick_wall_bricks_stonecutting.json deleted file mode 100644 index c4755d45..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:chalk_bricks" - }, - "result": "strata:chalk_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_brick_wall_polished_stonecutting.json deleted file mode 100644 index 73cc6e50..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_chalk" - }, - "result": "strata:chalk_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_brick_wall_stone_stonecutting.json deleted file mode 100644 index 95b0048b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:chalk" - }, - "result": "strata:chalk_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_cobblestone_wall_stonecutting.json deleted file mode 100644 index d4c6a0e2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:chalk_cobblestone" - }, - "result": "strata:chalk_cobblestone_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_wall_stonecutting.json deleted file mode 100644 index 10a5fbf0..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/chalk_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:chalk" - }, - "result": "strata:chalk_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_brick_wall_bricks_stonecutting.json deleted file mode 100644 index 48c3d3be..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:jaspillite_bricks" - }, - "result": "strata:jaspillite_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_brick_wall_polished_stonecutting.json deleted file mode 100644 index 0ca346e2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_jaspillite" - }, - "result": "strata:jaspillite_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_brick_wall_stone_stonecutting.json deleted file mode 100644 index ebff56a7..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:jaspillite" - }, - "result": "strata:jaspillite_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_cobblestone_wall_stonecutting.json deleted file mode 100644 index c68d1ddb..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:jaspillite_cobblestone" - }, - "result": "strata:jaspillite_cobblestone_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_wall_stonecutting.json deleted file mode 100644 index fce56b88..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/jaspillite_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:jaspillite" - }, - "result": "strata:jaspillite_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_brick_wall_bricks_stonecutting.json deleted file mode 100644 index 4b2f0c02..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:limestone_bricks" - }, - "result": "strata:limestone_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_brick_wall_polished_stonecutting.json deleted file mode 100644 index 4d43749a..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_limestone" - }, - "result": "strata:limestone_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_brick_wall_stone_stonecutting.json deleted file mode 100644 index fec40140..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:limestone" - }, - "result": "strata:limestone_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_wall_stonecutting.json deleted file mode 100644 index 610de758..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/limestone_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:limestone" - }, - "result": "strata:limestone_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_argillite_brick_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_argillite_brick_wall_stonecutting.json deleted file mode 100644 index 7dae0979..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_argillite_brick_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_argillite_bricks" - }, - "result": "strata:mossy_argillite_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_argillite_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_argillite_cobblestone_wall_stonecutting.json deleted file mode 100644 index 7e8e2f8b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_argillite_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_argillite_cobblestone" - }, - "result": "strata:mossy_argillite_cobblestone_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_chalk_brick_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_chalk_brick_wall_stonecutting.json deleted file mode 100644 index 01b6b4d2..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_chalk_brick_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_chalk_bricks" - }, - "result": "strata:mossy_chalk_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_chalk_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_chalk_cobblestone_wall_stonecutting.json deleted file mode 100644 index f956a85b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_chalk_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_chalk_cobblestone" - }, - "result": "strata:mossy_chalk_cobblestone_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_jaspillite_brick_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_jaspillite_brick_wall_stonecutting.json deleted file mode 100644 index a6d1fa27..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_jaspillite_brick_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_jaspillite_bricks" - }, - "result": "strata:mossy_jaspillite_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_jaspillite_cobblestone_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_jaspillite_cobblestone_wall_stonecutting.json deleted file mode 100644 index 54951005..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_jaspillite_cobblestone_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_jaspillite_cobblestone" - }, - "result": "strata:mossy_jaspillite_cobblestone_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_limestone_brick_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_limestone_brick_wall_stonecutting.json deleted file mode 100644 index a25f3a6b..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_limestone_brick_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_limestone_bricks" - }, - "result": "strata:mossy_limestone_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_shale_brick_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_shale_brick_wall_stonecutting.json deleted file mode 100644 index e7ba6813..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/mossy_shale_brick_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:mossy_shale_bricks" - }, - "result": "strata:mossy_shale_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/shale_brick_wall_bricks_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/shale_brick_wall_bricks_stonecutting.json deleted file mode 100644 index 2a3e0f2f..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/shale_brick_wall_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:shale_bricks" - }, - "result": "strata:shale_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/shale_brick_wall_polished_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/shale_brick_wall_polished_stonecutting.json deleted file mode 100644 index e06d0f6e..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/shale_brick_wall_polished_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:polished_shale" - }, - "result": "strata:shale_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/shale_brick_wall_stone_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/shale_brick_wall_stone_stonecutting.json deleted file mode 100644 index 35f33cf1..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/shale_brick_wall_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:shale" - }, - "result": "strata:shale_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/shale_wall_stonecutting.json b/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/shale_wall_stonecutting.json deleted file mode 100644 index d138a9f6..00000000 --- a/src/test/resources/data/strata/recipes/rock_types/sedimentary_rocks/stonecutting/block/wall/shale_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "strata:shale" - }, - "result": "strata:shale_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/test/resources/data/strata/tags/blocks/testtagblock.json b/src/test/resources/data/strata/tags/blocks/testtagblock.json deleted file mode 100644 index 4e70fe65..00000000 --- a/src/test/resources/data/strata/tags/blocks/testtagblock.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "strata:debug_block", - "minecraft:stone" - ] -} \ No newline at end of file diff --git a/src/test/resources/data/strata/tags/items/testtagitem.json b/src/test/resources/data/strata/tags/items/testtagitem.json deleted file mode 100644 index 75cc28dc..00000000 --- a/src/test/resources/data/strata/tags/items/testtagitem.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "strata:debug_item", - "minecraft:apple" - ] -} \ No newline at end of file diff --git a/src/test/resources/pack.mcmeta b/src/test/resources/pack.mcmeta deleted file mode 100644 index 6df3a045..00000000 --- a/src/test/resources/pack.mcmeta +++ /dev/null @@ -1,7 +0,0 @@ -{ - "pack": { - "description": "Strata Resources", - "pack_format": 5, - "_comment": "A pack_format of 5 requires json lang files and some texture changes from 1.15. Note: we require v5 pack meta for all mods." - } -} diff --git a/src/test/resources/strata.png b/src/test/resources/strata.png deleted file mode 100644 index 2fe35e3b..00000000 Binary files a/src/test/resources/strata.png and /dev/null differ