diff --git a/.github/README.md b/.github/README.md index 0cb1aaad..2a75f2db 100644 --- a/.github/README.md +++ b/.github/README.md @@ -1,10 +1,9 @@ -# Absent by Design +# Absent by Design A Minecraft mod built on the Forge API [https://files.minecraftforge.net/](https://files.minecraftforge.net) -Project page with releases: https://www.curseforge.com/minecraft/mc-mods/absent-by-design - -https://modrinth.com/mod/absent-by-design +[![CurseForge](https://img.shields.io/badge/CurseForge-F16436?style=flat-square&logo=curseforge&logoColor=white)](https://www.curseforge.com/minecraft/mc-mods/absent-by-design) +[![Modrinth](https://img.shields.io/badge/Modrinth-1bd96a?style=flat-square&logo=modrinth&logoColor=white)](https://modrinth.com/mod/absent-by-design) @@ -15,7 +14,7 @@ https://modrinth.com/mod/absent-by-design [![Build](https://github.com/Lothrazar/AbsentByDesign/actions/workflows/build.yml/badge.svg)](https://github.com/Lothrazar/AbsentByDesign/actions/workflows/build.yml) [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT) -[![Discord](https://img.shields.io/discord/749302798797242449.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/uWZ3jf56fV) [![links](https://img.shields.io/badge/more-links-ff69b4.svg)](https://allmylinks.com/lothrazar) -[![Twitter Badge](https://img.shields.io/badge/contact-twitter-blue.svg)](https://twitter.com/lothrazar) + +[![Support](https://img.shields.io/badge/Patreon-Support-orange.svg?logo=Patreon)](https://www.patreon.com/Lothrazar) diff --git a/.gitignore b/.gitignore index ff73fea0..4b1853a1 100644 --- a/.gitignore +++ b/.gitignore @@ -3,7 +3,7 @@ bin *.launch .settings .metadata -.classpath +.cla* .project # idea @@ -16,11 +16,10 @@ out # gradle build .gradle +deploy.properties # other run logs libs - -# Files from Forge MDK -forge*changelog.txt +repo diff --git a/build.gradle b/build.gradle index bc2b6794..d64622ee 100644 --- a/build.gradle +++ b/build.gradle @@ -1,164 +1,181 @@ +import net.darkhax.curseforgegradle.TaskPublishCurseForge + plugins { - id 'eclipse' - id 'idea' + id 'java-library' id 'maven-publish' - id 'net.neoforged.gradle' version '[6.0.18,6.2)' + id 'net.neoforged.moddev' version '2.0.141' + id 'idea' + id 'net.darkhax.curseforgegradle' version '1.1.25' + id 'com.modrinth.minotaur' version '2.8.7' apply false } - -version = "${mc_version}-${mod_version}" +def localProps = new Properties() +def localFile = file("mod.properties") +localFile.withInputStream { localProps.load(it) } +localProps.each { k, v -> project.ext.set(k, v) } + +if (project == rootProject) { +tasks.named('wrapper', Wrapper).configure { + // Define wrapper values here so as to not have to always do so when updating gradlew.properties. + // Switching this to Wrapper.DistributionType.ALL will download the full gradle sources that comes with + // documentation attached on cursor hover of gradle classes and methods. However, this comes with increased + // file size for Gradle. If you do switch this to ALL, run the Gradle wrapper task twice afterwards. + // (Verify by checking gradle/wrapper/gradle-wrapper.properties to see if distributionUrl now points to `-all`) + distributionType = Wrapper.DistributionType.BIN +}} + +version = "${minecraft_version}-${mod_version}" group = mod_group_id +sourceSets.main.resources { + // Include resources generated by data generators. + srcDir('src/generated/resources') + + // Exclude common development only resources from finalized outputs + exclude("**/*.bbmodel") // BlockBench project files + exclude("src/generated/**/.cache") // datagen cache files +} + + + +repositories { +// mavenLocal() + flatDir { dir 'libs' } + + maven { + name = "curios" + url = 'https://maven.theillusivec4.top/' + } + maven { url = 'https://maven.blamejared.com' } + maven { url = 'https://www.cursemaven.com' } +} + base { archivesName = mod_id } -// Mojang ships Java 17 to end users in 1.18+, so your mod should target Java 17. -java.toolchain.languageVersion = JavaLanguageVersion.of(17) -import net.minecraftforge.gradle.common.tasks.SignJar +// Mojang ships Java 21 to end users in 1.21.1, so mods should target Java 21. +// for intellij make sure to set JVM Navigate to Build, Execution, Deployment > Build Tools > Gradle +java.toolchain.languageVersion = JavaLanguageVersion.of(21) 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. - // Channel: Version: - // official MCVersion Official field/method names from Mojang mapping files - // parchment YYYY.MM.DD-MCVersion Open community-sourced parameter names and javadocs layered on top of official - // - // You must be aware of the Mojang license when using the 'official' or 'parchment' mappings. - // See more information here: https://github.com/MinecraftForge/MCPConfig/blob/master/Mojang.md - // - // Parchment is an unofficial project maintained by ParchmentMC, separate from MinecraftForge - // Additional setup is needed to use their mappings: https://parchmentmc.org/docs/getting-started - // - // 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: mapping_channel, version: mapping_version - - // When true, this property will have all Eclipse/IntelliJ IDEA run configurations run the "prepareX" task for the given run configuration before launching the game. - // In most cases, it is not necessary to enable. - // enableEclipsePrepareRuns = true - // enableIdeaPrepareRuns = true - // This property allows configuring Gradle's ProcessResources task(s) to run on IDE output locations before launching the game. - // It is REQUIRED to be set to true for this template to function. - // See https://docs.gradle.org/current/dsl/org.gradle.language.jvm.tasks.ProcessResources.html - copyIdeResources = true - - // When true, this property will add the folder name of all declared run configurations to generated IDE run configurations. - // The folder name can be set on a run configuration using the "folderName" property. - // By default, the folder name of a run configuration is the name of the Gradle project containing it. - // generateRunFolders = true - - // This property enables access transformers for use in development. - // They will be applied to the Minecraft artifact. - // The access transformer file can be anywhere in the project. - // However, it must be at "META-INF/accesstransformer.cfg" in the final mod jar to be loaded by Forge. - // This default location is a best practice to automatically put the file in the right place in the final jar. - // See https://docs.minecraftforge.net/en/latest/advanced/accesstransformers/ for more information. - accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') +neoForge { + // Specify the version of NeoForge to use. + version = project.neo_version - // Default run configurations. - // These can be tweaked, removed, or duplicated as needed. - runs { - // applies to all the run configs below - configureEach { - workingDirectory project.file('run') - // Recommended logging data for a userdev environment - // The markers can be added/remove as needed separated by commas. - // "SCAN": For mods scan. - // "REGISTRIES": For firing of registry events. - // "REGISTRYDUMP": For getting the contents of all registries. - property 'forge.logging.markers', 'REGISTRIES' + // This property allows configuring Gradle's ProcessResources task(s) to run on IDE output locations before launching the game. + // It is REQUIRED to be set to true for the 1.21.1 template to function correctly. + // ideConfigGenerated = true - // Recommended logging level for the console - // You can set various levels here. - // Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels - property 'forge.logging.console.level', 'debug' + // Other optional settings + // validateAccessTransformers = true - mods { - "${mod_id}" { - source sourceSets.main - } - } - } + parchment { + mappingsVersion = project.parchment_mappings_version + minecraftVersion = project.parchment_minecraft_version + } + accessTransformers = project.files('src/main/resources/META-INF/accesstransformer.cfg') + // Default run configurations. + // These can be tweaked, removed, or duplicated as needed. + runs { client { + client() + // Comma-separated list of namespaces to load gametests from. Empty = all namespaces. - property 'forge.enabledGameTestNamespaces', mod_id - property 'mixin.env.remapRefMap', 'true' - property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg" + systemProperty 'neoforge.enabledGameTestNamespaces', project.mod_id } server { - property 'forge.enabledGameTestNamespaces', mod_id - property 'mixin.env.remapRefMap', 'true' - property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg" - args '--nogui' + server() + programArgument '--nogui' + systemProperty 'neoforge.enabledGameTestNamespaces', project.mod_id } // This run config launches GameTestServer and runs all registered gametests, then exits. // By default, the server will crash when no gametests are provided. // The gametest system is also enabled by default for other run configs under the /test command. gameTestServer { - property 'forge.enabledGameTestNamespaces', mod_id + type = "gameTestServer" + systemProperty 'neoforge.enabledGameTestNamespaces', project.mod_id } data { - // example of overriding the workingDirectory set in configureEach above - workingDirectory project.file('run-data') + data() + + // example of overriding the workingDirectory set in configureEach above, uncomment if you want to use it + // gameDirectory = project.file('run-data') // Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources. - args '--mod', mod_id, '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/') + programArguments.addAll '--mod', project.mod_id, '--all', '--output', file('src/generated/resources/').getAbsolutePath(), '--existing', file('src/main/resources/').getAbsolutePath() } - } -} -// Include resources generated by data generators. -sourceSets.main.resources { srcDir 'src/generated/resources' } + // applies to all the run configs above + configureEach { + // Recommended logging data for a userdev environment + // The markers can be added/remove as needed separated by commas. + // "SCAN": For mods scan. + // "REGISTRIES": For firing of registry events. + // "REGISTRYDUMP": For getting the contents of all registries. + systemProperty 'forge.logging.markers', 'REGISTRIES' -repositories { + // Recommended logging level for the console + // You can set various levels here. + // Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels + logLevel = org.slf4j.event.Level.DEBUG - maven { - // location of the maven that hosts JEI files - name = "Progwml6 maven" - url = 'https://dvs1.progwml6.com/files/maven/' - } - maven { - name = "curios" - url = 'https://maven.theillusivec4.top/' - } - maven { url = 'https://maven.blamejared.com' } - maven { url = 'https://modmaven.dev' } - maven { url = 'https://www.cursemaven.com' } + } + } + + mods { + // define mod <-> source bindings + // these are used to tell the game which sources are for which mod + // multi mod projects should define one per mod + "${mod_id}" { + sourceSet(sourceSets.main) + } + } +} + +// Sets up a dependency configuration called 'localRuntime'. +// This configuration should be used instead of 'runtimeOnly' to declare +// a dependency that will be present for runtime testing but that is +// "optional", meaning it will not be pulled by dependents of this mod. +configurations { + runtimeClasspath.extendsFrom localRuntime } + dependencies { - // Specify the version of Minecraft to use. - // Any artifact can be supplied so long as it has a "userdev" classifier artifact and is a compatible patcher artifact. - // The "userdev" classifier will be requested and setup by ForgeGradle. - // If the group id is "net.minecraft" and the artifact id is one of ["client", "server", "joined"], - // then special handling is done to allow a setup of a vanilla dependency without the use of an external repository. - minecraft "net.neoforged:forge:${mc_version}-${neo_version}" + + // for other mods depending on THIS FLIB library, use either a local copy or a maven + // implementation "local.mods:flib:${minecraft_version}-${flib_version}" + implementation "curse.maven:flib-661261:${flib_file}" - //optional integrations + //these mods have API jars for compile as well as the full mod for local + compileOnly "mezz.jei:jei-${minecraft_version}-neoforge-api:${jei_version}" + localRuntime "mezz.jei:jei-${minecraft_version}-neoforge:${jei_version}" - implementation fg.deobf("curse.maven:cyclic-239286:5620124") - implementation fg.deobf("curse.maven:jade-324717:5640610") - - // required dependency - implementation fg.deobf("curse.maven:flib-661261:${flib_file}") + compileOnly "top.theillusivec4.curios:curios-neoforge:${curios_version}+${minecraft_version}" + localRuntime "top.theillusivec4.curios:curios-neoforge:${curios_version}+${minecraft_version}" - // Example mod dependency with JEI - using fg.deobf() ensures the dependency is remapped to your development mappings - // The JEI API is declared for compile time use, while the full JEI artifact is used at runtime - compileOnly fg.deobf("mezz.jei:jei-${mc_version}-common-api:${jei_version}") - compileOnly fg.deobf("mezz.jei:jei-${mc_version}-forge-api:${jei_version}") - runtimeOnly fg.deobf("mezz.jei:jei-${mc_version}-forge:${jei_version}") + // no APIs + compileOnly "vazkii.patchouli:Patchouli:${minecraft_version}-${patchouli_version}-NEOFORGE" + + compileOnly "com.blamejared.crafttweaker:CraftTweaker-neoforge-${minecraft_version}:${crafttweaker_version}" // Example mod dependency using a mod jar from ./libs with a flat dir repository - // This maps to ./libs/coolmod-${mc_version}-${coolmod_version}.jar + // This maps to ./libs/coolmod-${minecraft_version}-${coolmod_version}.jar // The group id is ignored when searching -- in this case, it is "blank" - // implementation fg.deobf("blank:coolmod-${mc_version}:${coolmod_version}") + // implementation "blank:coolmod-${minecraft_version}:${coolmod_version}" + + // Example mod dependency using a file as dependency + // implementation files("libs/coolmod-${minecraft_version}-${coolmod_version}.jar") + + // Example project dependency using a sister or child project: + // implementation project(":myproject") // For more info: // http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html @@ -167,72 +184,97 @@ dependencies { // This block of code expands all declared replace properties in the specified resource targets. // A missing property will result in an error. Properties are expanded using ${} Groovy notation. -// When "copyIdeResources" is enabled, this will also run before the game launches in IDE environments. -// See https://docs.gradle.org/current/dsl/org.gradle.language.jvm.tasks.ProcessResources.html -tasks.named('processResources', ProcessResources).configure { +var generateModMetadata = tasks.register("generateModMetadata", ProcessResources) { var replaceProperties = [ - mc_version: mc_version, minecraft_version_range: minecraft_version_range, - neo_version: neo_version, - loader_version_range: loader_version_range, - mod_id: mod_id, mod_name: mod_name, mod_license: mod_license, mod_version: mod_version, - mod_authors: mod_authors, mod_description: mod_description, + minecraft_version : minecraft_version, + neo_version : neo_version, + loader_version_range : loader_version_range, + curse_slug : curse_slug, + mod_id : mod_id, + mod_name : mod_name, + mod_license : mod_license, + mod_version : mod_version, + mod_authors : mod_authors, + mod_description : mod_description ] inputs.properties replaceProperties - - filesMatching(['META-INF/mods.toml', 'pack.mcmeta']) { - expand replaceProperties + [project: project] - } + expand replaceProperties + from "src/main/templates" + into "build/generated/sources/modMetadata" } -// Example for how to get properties into the manifest for reading at runtime. -tasks.named('jar', Jar).configure { - manifest { - attributes([ - 'Specification-Title' : mod_id, - 'Specification-Vendor' : mod_authors, - 'Specification-Version' : '1', // We are version 1 of ourselves - 'Implementation-Title' : project.name, - 'Implementation-Version' : project.jar.archiveVersion, - 'Implementation-Vendor' : mod_authors, - 'Implementation-Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ") - ]) - } +// ??? +//sourceSets.main.resources.srcDir 'src/main/templates' + +// Include the output of "generateModMetadata" as an input directory for the build +// this works with both building through Gradle and the IDE. +sourceSets.main.resources.srcDir generateModMetadata +// To avoid having to run "generateModMetadata" manually, make it run on every project reload +neoForge.ideSyncTask generateModMetadata +// Ensure standard processResources doesn't try to double-process the same files - // This is the preferred method to reobfuscate your jar file - finalizedBy 'reobfJar' -} +//processResources { +// //from("src/main/resources") +// // 1. Tell Gradle what to do if it finds a duplicate (usually take the first one) +// duplicatesStrategy = DuplicatesStrategy.INCLUDE +// +// // 2. Ensure we aren't accidentally pulling the raw templates folder +// // into the final build (the generateModMetadata task handles this instead) +// exclude 'templates' +//} // Example configuration to allow publishing using the maven-publish plugin publishing { publications { register('mavenJava', MavenPublication) { - artifact jar + from components.java } } repositories { maven { - url "file://${project.projectDir}/mcmodsrepo" + // url "file://${project.projectDir}/repo" + // url uri("${project.projectDir}/repo") + url = uri("${project.projectDir}/repo") } } } -task signJar(type: SignJar, dependsOn: jar) { - - // findProperty allows us to reference the property without it existing. - // Using project.propName would cause the script to fail validation if - // the property did not exist. - keyStore = project.findProperty('keyStore') - alias = project.findProperty('keyStoreAlias') - storePass = project.findProperty('keyStorePass') - keyPass = project.findProperty('keyStoreKeyPass') - inputFile = jar.archivePath - outputFile = jar.archivePath -} -task cleanJar { - delete 'build/libs' -} +apply from: 'gradle/deploy.gradle' + +// Capture ext properties set by deploy.gradle into local vars so they are +// accessible inside the task closure (where ext resolves to the task's ext). +def cfApiKey = ext.cfApiKey +def changelog = ext.changelog + +// --- CurseForge --- +// Defined here (not deploy.gradle) so TaskPublishCurseForge resolves against +// the plugins {} block classpath. +// it will safely fail if the version already exists: will not overwrite or create a duplicate entry +tasks.register('publishCurseForge', TaskPublishCurseForge) { + group = 'publishing' + description = 'Uploads the mod jar to CurseForge.' + dependsOn jar + + apiToken = cfApiKey + def mainFile = upload(curse_id, jar) + mainFile.displayName = "${mod_name} ${project.version}" + mainFile.releaseType = 'release' + mainFile.addGameVersion(minecraft_version) + mainFile.addGameVersion('NeoForge') + mainFile.addGameVersion('Java 21') + mainFile.changelog = changelog + mainFile.changelogType = 'markdown' +} tasks.withType(JavaCompile).configureEach { options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation } + +// IDEA no longer automatically downloads sources/javadoc jars for dependencies, so we need to explicitly enable the behavior. +idea { + module { + downloadSources = true + downloadJavadoc = true + } +} diff --git a/deploy.properties b/deploy.properties new file mode 100644 index 00000000..b266bf82 --- /dev/null +++ b/deploy.properties @@ -0,0 +1,5 @@ + +# absolute paths to copyJar after 'publish'. + +# destinations=C:/temp,C:/Users/USER/Desktop,C:/Users/USER/AppData/Roaming/.minecraft/mods +destinations=C:/temp diff --git a/gradle.properties b/gradle.properties index 99c5ec3e..e1a0e8c7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,33 +1,28 @@ # 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 +org.gradle.daemon=true +org.gradle.parallel=true +org.gradle.caching=true +org.gradle.configuration-cache=true -mod_id=absentbydesign -curse_id=305840 +#read more on this at https://github.com/neoforged/NeoGradle/blob/NG_7.0/README.md#apply-parchment-mappings +# you can also find the latest versions at: https://parchmentmc.org/docs/getting-started +parchment_minecraft_version=1.21.1 +parchment_mappings_version=2024.11.17 -mod_version=1.9.1 +# your properties +# https://www.curseforge.com/minecraft/mc-mods/flib -neo_version=47.1.104 -forge_version=47.1.104 +minecraft_version=1.21.1 +neo_version=21.1.222 -mod_name=Absent by Design -mod_group_id=com.lothrazar.absentbydesign +loader_version_range=[1,) -mod_license=SeeGithub -mod_authors=Lothrazar -mod_description=mod -minecraft_version_range=[1.20.1,) -loader_version_range=[47,) -mapping_channel=official -minecraft_version=1.20.1 -mapping_version=1.20.1 -mc_version=1.20.1 +# flib_version=1.0.0 - - -flib_file=5495793 -flib_version=0.0.14 -jei_version=15.3.0.4 -# 15.12.2.52 +patchouli_version=93 +jei_version=19.27.0.340 +curios_version=9.5.1 +crafttweaker_version=21.0.38 diff --git a/gradle/deploy.gradle b/gradle/deploy.gradle new file mode 100644 index 00000000..685e4c1c --- /dev/null +++ b/gradle/deploy.gradle @@ -0,0 +1,115 @@ +// --------------------------------------------------------------------------- +// deployLocal — copies the built JAR to every folder listed in deploy.properties +// deploy.properties is gitignored; each developer maintains their own copy. +// +// Runs automatically after 'publish' via finalizedBy. +// Can also be run standalone with: gradlew deployLocal +// (depends only on 'jar' so it won't trigger a full publish cycle standalone) +// --------------------------------------------------------------------------- +def deployProps = new Properties() +def deployFile = rootProject.file('deploy.properties') +if (deployFile.exists()) { + deployFile.withInputStream { deployProps.load(it) } +} + +tasks.register('deployLocal') { + description = 'Copies build jar to all destinations in deploy.properties' + group = 'distribution' + dependsOn 'jar' + + def jarFile = layout.buildDirectory.file("libs/${base.archivesName.get()}-${version}.jar") + + def destinations = deployProps.getProperty('destinations', '') + .split(',') + .collect { it.trim() } + .findAll { it } + + onlyIf { !destinations.isEmpty() } + + // doLast avoids configuration cache errors from project.copy() references + doLast { + def source = jarFile.get().asFile + destinations.each { dest -> + def destDir = new File(dest) + destDir.mkdirs() + java.nio.file.Files.copy( + source.toPath(), + new File(destDir, source.name).toPath(), + java.nio.file.StandardCopyOption.REPLACE_EXISTING + ) + logger.lifecycle("Deployed ${source.name} -> ${dest}") + } + } +} + +tasks.named('publish') { + finalizedBy 'deployLocal' +} + +// --------------------------------------------------------------------------- +// publishCurseForge / publishModrinth / release / publishAll +// API keys are read from ~/.gradle/gradle.properties, deploy.properties, or env vars. +// +// ~/.gradle/gradle.properties (recommended): +// curseforge_api_key=... +// modrinth_token=... +// +// Run individually: +// gradlew publishCurseForge +// gradlew publishModrinth +// Run all at once: +// gradlew publishAll +// --------------------------------------------------------------------------- +apply plugin: 'com.modrinth.minotaur' + +def changelogText = (new groovy.json.JsonSlurper().parse(file('update.json'))[minecraft_version]?[mod_version] ?: '') as String +def mrToken = findProperty('modrinth_token') ?: deployProps.getProperty('modrinth_token', '') ?: System.getenv('MODRINTH_TOKEN') ?: '' + +// Exposed as ext so publishCurseForge in build.gradle can read them after apply from: +ext.cfApiKey = findProperty('curseforge_api_key') ?: deployProps.getProperty('curseforge_api_key', '') ?: System.getenv('CURSEFORGE_API_KEY') ?: '' +ext.changelog = changelogText + +// --- Modrinth --- +modrinth { + token = mrToken + projectId = modrinth_id + versionNumber = project.version + versionType = 'release' + uploadFile = jar + gameVersions = [minecraft_version] + loaders = ['neoforge'] + changelog = changelogText +} + +// important: unlike curseforge, modrinth has no problem with you making many copies of the same version +//so we have to hand roll up our own checke +tasks.named('modrinth').configure { + notCompatibleWithConfigurationCache('Minotaur is not configuration-cache compatible') + + doFirst { + def versions = new groovy.json.JsonSlurper() + .parse(new URI("https://api.modrinth.com/v2/project/${modrinth_id}/version").toURL()) + if (versions.any { it.version_number == project.version }) { + throw new GradleException("Modrinth version ${modrinth_id}-${project.version} already exists — bump mod_version before publishing.") + } + } +} + +tasks.register('publishModrinth') { + group = 'publishing' + description = 'Uploads the mod jar to Modrinth.' + dependsOn 'modrinth' +} + +// --- Combined tasks --- +tasks.register('release') { + group = 'publishing' + description = 'Publishes to CurseForge, Modrinth, and Maven.' + dependsOn 'publishCurseForge', 'publishModrinth', 'publish' +} + +//tasks.register('publishAll') { +// group = 'publishing' +// description = 'Uploads to CurseForge and Modrinth, and deploys locally.' +// dependsOn 'publishCurseForge', 'publishModrinth', 'deployLocal' +//} diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 943f0cbf..1b33c55b 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 37aef8d3..23449a2b 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,7 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.1-bin.zip networkTimeout=10000 +validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew index 65dcd68d..23d15a93 100644 --- a/gradlew +++ b/gradlew @@ -15,6 +15,8 @@ # See the License for the specific language governing permissions and # limitations under the License. # +# SPDX-License-Identifier: Apache-2.0 +# ############################################################################## # @@ -55,7 +57,7 @@ # Darwin, MinGW, and NonStop. # # (3) This script is generated from the Groovy template -# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt # within the Gradle project. # # You can find Gradle at https://github.com/gradle/gradle/. @@ -83,10 +85,8 @@ done # This is normally unused # shellcheck disable=SC2034 APP_BASE_NAME=${0##*/} -APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit - -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD=maximum @@ -114,7 +114,7 @@ case "$( uname )" in #( NONSTOP* ) nonstop=true ;; esac -CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar +CLASSPATH="\\\"\\\"" # Determine the Java command to use to start the JVM. @@ -133,10 +133,13 @@ location of your Java installation." fi else JAVACMD=java - which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. Please set the JAVA_HOME variable in your environment to match the location of your Java installation." + fi fi # Increase the maximum file descriptors if we can. @@ -144,7 +147,7 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then case $MAX_FD in #( max*) # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. - # shellcheck disable=SC3045 + # shellcheck disable=SC2039,SC3045 MAX_FD=$( ulimit -H -n ) || warn "Could not query maximum file descriptor limit" esac @@ -152,7 +155,7 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then '' | soft) :;; #( *) # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. - # shellcheck disable=SC3045 + # shellcheck disable=SC2039,SC3045 ulimit -n "$MAX_FD" || warn "Could not set maximum file descriptor limit to $MAX_FD" esac @@ -197,16 +200,20 @@ if "$cygwin" || "$msys" ; then done fi -# Collect all arguments for the java command; -# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of -# shell script including quotes and variable substitutions, so put them in -# double quotes to make sure that they get re-expanded; and -# * put everything else in single quotes, so that it's not re-expanded. + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. set -- \ "-Dorg.gradle.appname=$APP_BASE_NAME" \ -classpath "$CLASSPATH" \ - org.gradle.wrapper.GradleWrapperMain \ + -jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \ "$@" # Stop when "xargs" is not available. diff --git a/gradlew.bat b/gradlew.bat index 93e3f59f..db3a6ac2 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -13,6 +13,8 @@ @rem See the License for the specific language governing permissions and @rem limitations under the License. @rem +@rem SPDX-License-Identifier: Apache-2.0 +@rem @if "%DEBUG%"=="" @echo off @rem ########################################################################## @@ -43,11 +45,11 @@ set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 if %ERRORLEVEL% equ 0 goto execute -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 goto fail @@ -57,22 +59,22 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe if exist "%JAVA_EXE%" goto execute -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 goto fail :execute @rem Setup the command line -set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar +set CLASSPATH= @rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %* :end @rem End local scope for the variables with windows NT shell diff --git a/mod.properties b/mod.properties new file mode 100644 index 00000000..4dbfd2b5 --- /dev/null +++ b/mod.properties @@ -0,0 +1,15 @@ + +mod_version=1.9.1 + +mod_id=absentbydesign +mod_license=MIT +mod_authors=Lothrazar +mod_description=mod +mod_name=Absent by Design +mod_group_id=com.lothrazar.absentbydesign +curse_id=305840 +curse_slug=absent-by-design +modrinth_id=absent-by-design + +flib_version=0.1.0 +flib_file=8022223 diff --git a/settings.gradle b/settings.gradle index 24584e97..7a488e36 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,13 +1,9 @@ pluginManagement { repositories { gradlePluginPortal() - maven { - name = 'NeoForged' - url = 'https://maven.neoforged.net/releases' - } } } plugins { - id 'org.gradle.toolchains.foojay-resolver-convention' version '0.5.0' -} \ No newline at end of file + id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0' +} diff --git a/src/main/java/com/lothrazar/absentbydesign/ModAbsentBD.java b/src/main/java/com/lothrazar/absentbydesign/ModAbsentBD.java index dc9a1962..2c386565 100644 --- a/src/main/java/com/lothrazar/absentbydesign/ModAbsentBD.java +++ b/src/main/java/com/lothrazar/absentbydesign/ModAbsentBD.java @@ -2,7 +2,7 @@ import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; -import net.minecraftforge.fml.common.Mod; +import net.neoforged.fml.common.Mod; @Mod(ModAbsentBD.MODID) public class ModAbsentBD { diff --git a/src/main/java/com/lothrazar/absentbydesign/block/BlockAbsentFence.java b/src/main/java/com/lothrazar/absentbydesign/block/BlockAbsentFence.java index 1039adca..533eb60a 100644 --- a/src/main/java/com/lothrazar/absentbydesign/block/BlockAbsentFence.java +++ b/src/main/java/com/lothrazar/absentbydesign/block/BlockAbsentFence.java @@ -4,8 +4,8 @@ import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.level.block.FenceBlock; import net.minecraft.core.Direction; -import net.minecraftforge.api.distmarker.Dist; -import net.minecraftforge.api.distmarker.OnlyIn; +import net.neoforged.api.distmarker.Dist; +import net.neoforged.api.distmarker.OnlyIn; public class BlockAbsentFence extends FenceBlock implements IBlockAbsent { diff --git a/src/main/java/com/lothrazar/absentbydesign/block/BlockAbsentGate.java b/src/main/java/com/lothrazar/absentbydesign/block/BlockAbsentGate.java index aaf1a325..45d45448 100644 --- a/src/main/java/com/lothrazar/absentbydesign/block/BlockAbsentGate.java +++ b/src/main/java/com/lothrazar/absentbydesign/block/BlockAbsentGate.java @@ -4,13 +4,13 @@ import net.minecraft.world.level.block.FenceGateBlock; import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.level.block.state.properties.WoodType; -import net.minecraftforge.api.distmarker.Dist; -import net.minecraftforge.api.distmarker.OnlyIn; +import net.neoforged.api.distmarker.Dist; +import net.neoforged.api.distmarker.OnlyIn; public class BlockAbsentGate extends FenceGateBlock implements IBlockAbsent { public BlockAbsentGate(Properties p, WoodType type) { - super(p, type); + super(type, p); } public boolean doVisibility = false; diff --git a/src/main/java/com/lothrazar/absentbydesign/block/BlockAbsentSlab.java b/src/main/java/com/lothrazar/absentbydesign/block/BlockAbsentSlab.java index 32f7b6ce..fe220a79 100644 --- a/src/main/java/com/lothrazar/absentbydesign/block/BlockAbsentSlab.java +++ b/src/main/java/com/lothrazar/absentbydesign/block/BlockAbsentSlab.java @@ -8,8 +8,8 @@ import net.minecraft.world.level.Level; import net.minecraft.world.level.block.SlabBlock; import net.minecraft.world.level.block.state.BlockState; -import net.minecraftforge.api.distmarker.Dist; -import net.minecraftforge.api.distmarker.OnlyIn; +import net.neoforged.api.distmarker.Dist; +import net.neoforged.api.distmarker.OnlyIn; public class BlockAbsentSlab extends SlabBlock implements IBlockAbsent { diff --git a/src/main/java/com/lothrazar/absentbydesign/block/BlockAbsentStair.java b/src/main/java/com/lothrazar/absentbydesign/block/BlockAbsentStair.java index c578439c..6b15c786 100644 --- a/src/main/java/com/lothrazar/absentbydesign/block/BlockAbsentStair.java +++ b/src/main/java/com/lothrazar/absentbydesign/block/BlockAbsentStair.java @@ -9,8 +9,8 @@ import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.StairBlock; import net.minecraft.world.level.block.state.BlockState; -import net.minecraftforge.api.distmarker.Dist; -import net.minecraftforge.api.distmarker.OnlyIn; +import net.neoforged.api.distmarker.Dist; +import net.neoforged.api.distmarker.OnlyIn; @SuppressWarnings("deprecation") public class BlockAbsentStair extends StairBlock implements IBlockAbsent { diff --git a/src/main/java/com/lothrazar/absentbydesign/block/BlockAbsentWall.java b/src/main/java/com/lothrazar/absentbydesign/block/BlockAbsentWall.java index ac4818eb..6b49fa89 100644 --- a/src/main/java/com/lothrazar/absentbydesign/block/BlockAbsentWall.java +++ b/src/main/java/com/lothrazar/absentbydesign/block/BlockAbsentWall.java @@ -9,8 +9,8 @@ import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.WallBlock; import net.minecraft.world.level.block.state.BlockState; -import net.minecraftforge.api.distmarker.Dist; -import net.minecraftforge.api.distmarker.OnlyIn; +import net.neoforged.api.distmarker.Dist; +import net.neoforged.api.distmarker.OnlyIn; public class BlockAbsentWall extends WallBlock implements IBlockAbsent { diff --git a/src/main/java/com/lothrazar/absentbydesign/block/DoorAbsentBlock.java b/src/main/java/com/lothrazar/absentbydesign/block/DoorAbsentBlock.java index 7b3593b2..8f7e5774 100644 --- a/src/main/java/com/lothrazar/absentbydesign/block/DoorAbsentBlock.java +++ b/src/main/java/com/lothrazar/absentbydesign/block/DoorAbsentBlock.java @@ -6,7 +6,7 @@ public class DoorAbsentBlock extends DoorBlock implements IBlockAbsent { public DoorAbsentBlock(Properties builder, BlockSetType type) { - super(builder, type); + super(type, builder); } @Override diff --git a/src/main/java/com/lothrazar/absentbydesign/block/TrapDoorAbsent.java b/src/main/java/com/lothrazar/absentbydesign/block/TrapDoorAbsent.java index 1906e750..df3b8f0d 100644 --- a/src/main/java/com/lothrazar/absentbydesign/block/TrapDoorAbsent.java +++ b/src/main/java/com/lothrazar/absentbydesign/block/TrapDoorAbsent.java @@ -4,13 +4,13 @@ import net.minecraft.world.level.block.TrapDoorBlock; import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.level.block.state.properties.BlockSetType; -import net.minecraftforge.api.distmarker.Dist; -import net.minecraftforge.api.distmarker.OnlyIn; +import net.neoforged.api.distmarker.Dist; +import net.neoforged.api.distmarker.OnlyIn; public class TrapDoorAbsent extends TrapDoorBlock implements IBlockAbsent { public TrapDoorAbsent(Properties properties, BlockSetType type) { - super(properties, type); + super(type, properties); } public boolean doVisibility = false; diff --git a/src/main/java/com/lothrazar/absentbydesign/registry/AbsentRegistry.java b/src/main/java/com/lothrazar/absentbydesign/registry/AbsentRegistry.java index cac46ed7..7b830cce 100644 --- a/src/main/java/com/lothrazar/absentbydesign/registry/AbsentRegistry.java +++ b/src/main/java/com/lothrazar/absentbydesign/registry/AbsentRegistry.java @@ -34,11 +34,11 @@ import net.minecraft.world.level.block.state.properties.WoodType; import net.minecraft.world.level.material.MapColor; import net.minecraft.world.level.material.PushReaction; -import net.minecraftforge.eventbus.api.SubscribeEvent; -import net.minecraftforge.fml.common.Mod; -import net.minecraftforge.registries.RegisterEvent; +import net.neoforged.bus.api.SubscribeEvent; +import net.neoforged.fml.common.EventBusSubscriber; +import net.neoforged.neoforge.registries.RegisterEvent; -@Mod.EventBusSubscriber(bus = Mod.EventBusSubscriber.Bus.MOD) +@EventBusSubscriber(modid = ModAbsentBD.MODID, bus = EventBusSubscriber.Bus.MOD) public class AbsentRegistry { // // NO INVENTORY SCREEN BLOCKS (chest, furnace, ...) @@ -61,7 +61,7 @@ public class AbsentRegistry { private static final List BLOCKLIST = new ArrayList<>(); private static final String HAX = "block." + ModAbsentBD.MODID + "."; private static BlockAbsentFence FENCE_QUARTZ; - private static final ResourceKey TAB_BLOCKS = ResourceKey.create(Registries.CREATIVE_MODE_TAB, new ResourceLocation(ModAbsentBD.MODID, "tab")); + private static final ResourceKey TAB_BLOCKS = ResourceKey.create(Registries.CREATIVE_MODE_TAB, ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "tab")); @SubscribeEvent public static void onCreativeModeTabRegister(RegisterEvent event) { @@ -91,529 +91,529 @@ public static void onBlocksRegistry(RegisterEvent event) { event.register(Registries.ITEM, reg -> { for (Block b : AbsentRegistry.BLOCKLIST) { String id = b.getDescriptionId().replace(HAX, ""); - reg.register(id, new BlockItem(b, properties)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, id), new BlockItem(b, properties)); } }); event.register(Registries.BLOCK, reg -> { // // FENCES // - reg.register("fence_log_acacia", createFence(Blocks.ACACIA_LOG, Block.Properties.of().ignitedByLava())); - reg.register("fence_log_birch", createFence(Blocks.BIRCH_LOG, Block.Properties.of().ignitedByLava())); - reg.register("fence_log_darkoak", createFence(Blocks.DARK_OAK_LOG, Block.Properties.of().ignitedByLava())); - reg.register("fence_log_jungle", createFence(Blocks.JUNGLE_LOG, Block.Properties.of().ignitedByLava())); - reg.register("fence_log_oak", createFence(Blocks.OAK_LOG, Block.Properties.of().ignitedByLava())); - reg.register("fence_log_spruce", createFence(Blocks.SPRUCE_LOG, Block.Properties.of().ignitedByLava())); - reg.register("fence_red_netherbrick", createFence(Blocks.RED_NETHER_BRICKS, Block.Properties.of())); - reg.register("fence_crimson", createFence(Blocks.CRIMSON_STEM, Block.Properties.of().ignitedByLava())); - reg.register("fence_warped", createFence(Blocks.WARPED_STEM, Block.Properties.of())); - reg.register("fence_obsidian", createFence(Blocks.OBSIDIAN, Block.Properties.of())); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "fence_log_acacia"), createFence(Blocks.ACACIA_LOG, Block.Properties.of().ignitedByLava())); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "fence_log_birch"), createFence(Blocks.BIRCH_LOG, Block.Properties.of().ignitedByLava())); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "fence_log_darkoak"), createFence(Blocks.DARK_OAK_LOG, Block.Properties.of().ignitedByLava())); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "fence_log_jungle"), createFence(Blocks.JUNGLE_LOG, Block.Properties.of().ignitedByLava())); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "fence_log_oak"), createFence(Blocks.OAK_LOG, Block.Properties.of().ignitedByLava())); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "fence_log_spruce"), createFence(Blocks.SPRUCE_LOG, Block.Properties.of().ignitedByLava())); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "fence_red_netherbrick"), createFence(Blocks.RED_NETHER_BRICKS, Block.Properties.of())); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "fence_crimson"), createFence(Blocks.CRIMSON_STEM, Block.Properties.of().ignitedByLava())); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "fence_warped"), createFence(Blocks.WARPED_STEM, Block.Properties.of())); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "fence_obsidian"), createFence(Blocks.OBSIDIAN, Block.Properties.of())); FENCE_QUARTZ = (BlockAbsentFence) createFence(Blocks.QUARTZ_BLOCK, Block.Properties.of()); - reg.register("fence_quartz", FENCE_QUARTZ); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "fence_quartz"), FENCE_QUARTZ); //??mangrove log? - reg.register("fence_mangrove", createFence(Blocks.CHERRY_LOG, Block.Properties.of())); - reg.register("fence_cherry", createFence(Blocks.CHERRY_LOG, Block.Properties.of())); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "fence_mangrove"), createFence(Blocks.CHERRY_LOG, Block.Properties.of())); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "fence_cherry"), createFence(Blocks.CHERRY_LOG, Block.Properties.of())); // // SLABS // - reg.register("slab_end_stone", createSlab(Block.Properties.of(), Blocks.END_STONE)); - reg.register("slab_netherrack", createSlab(Block.Properties.of(), Blocks.NETHERRACK)); - reg.register("slab_snow", createSlab(Block.Properties.of(), Blocks.SNOW_BLOCK)); - reg.register("slab_bricks_cracked", createSlab(Block.Properties.of(), Blocks.CRACKED_STONE_BRICKS)); - reg.register("slab_coarse_dirt", createSlab(Block.Properties.of().isRedstoneConductor(AbsentRegistry::never), Blocks.COARSE_DIRT)); - reg.register("slab_obsidian", createSlab(Block.Properties.of(), Blocks.OBSIDIAN)); - reg.register("slab_basalt", createSlab(Block.Properties.of(), Blocks.BASALT)); - reg.register("slab_polished_basalt", createSlab(Block.Properties.of(), Blocks.POLISHED_BASALT)); - reg.register("slab_crying_obsidian", createSlab(Block.Properties.of().lightLevel(state -> 10), Blocks.CRYING_OBSIDIAN)); - reg.register("slab_lodestone", createSlab(Block.Properties.of(), Blocks.LODESTONE)); - reg.register("slab_quartz_bricks", createSlab(Block.Properties.of(), Blocks.QUARTZ_BRICKS)); - reg.register("slab_magma", createSlab(Block.Properties.of().lightLevel(state -> 3), Blocks.MAGMA_BLOCK)); - reg.register("slab_glowstone", createSlab(Block.Properties.of().sound(SoundType.GLASS).lightLevel(state -> 15), Blocks.GLOWSTONE)); - reg.register("slab_sea_lantern", createSlab(Block.Properties.of().sound(SoundType.GLASS).lightLevel(state -> 15), Blocks.SEA_LANTERN)); - reg.register("slab_concrete_black", createSlab(Block.Properties.of(), Blocks.BLACK_CONCRETE)); - reg.register("slab_concrete_blue", createSlab(Block.Properties.of(), Blocks.BLUE_CONCRETE)); - reg.register("slab_concrete_brown", createSlab(Block.Properties.of(), Blocks.BROWN_CONCRETE)); - reg.register("slab_concrete_cyan", createSlab(Block.Properties.of(), Blocks.CYAN_CONCRETE)); - reg.register("slab_concrete_gray", createSlab(Block.Properties.of(), Blocks.GRAY_CONCRETE)); - reg.register("slab_concrete_green", createSlab(Block.Properties.of(), Blocks.GREEN_CONCRETE)); - reg.register("slab_concrete_light_blue", createSlab(Block.Properties.of(), Blocks.LIGHT_BLUE_CONCRETE)); - reg.register("slab_concrete_lime", createSlab(Block.Properties.of(), Blocks.LIME_CONCRETE)); - reg.register("slab_concrete_magenta", createSlab(Block.Properties.of(), Blocks.MAGENTA_CONCRETE)); - reg.register("slab_concrete_orange", createSlab(Block.Properties.of(), Blocks.ORANGE_CONCRETE)); - reg.register("slab_concrete_pink", createSlab(Block.Properties.of(), Blocks.PINK_CONCRETE)); - reg.register("slab_concrete_purple", createSlab(Block.Properties.of(), Blocks.PURPLE_CONCRETE)); - reg.register("slab_concrete_red", createSlab(Block.Properties.of(), Blocks.RED_CONCRETE)); - reg.register("slab_concrete_silver", createSlab(Block.Properties.of(), Blocks.LIGHT_GRAY_CONCRETE)); - reg.register("slab_concrete_white", createSlab(Block.Properties.of(), Blocks.WHITE_CONCRETE)); - reg.register("slab_concrete_yellow", createSlab(Block.Properties.of(), Blocks.YELLOW_CONCRETE)); - reg.register("slab_wool_black", createSlab(Block.Properties.of().ignitedByLava(), Blocks.BLACK_WOOL)); - reg.register("slab_wool_blue", createSlab(Block.Properties.of().ignitedByLava(), Blocks.BLUE_WOOL)); - reg.register("slab_wool_brown", createSlab(Block.Properties.of().ignitedByLava(), Blocks.BROWN_WOOL)); - reg.register("slab_wool_cyan", createSlab(Block.Properties.of().ignitedByLava(), Blocks.CYAN_WOOL)); - reg.register("slab_wool_gray", createSlab(Block.Properties.of().ignitedByLava(), Blocks.GRAY_WOOL)); - reg.register("slab_wool_green", createSlab(Block.Properties.of().ignitedByLava(), Blocks.GREEN_WOOL)); - reg.register("slab_wool_light_blue", createSlab(Block.Properties.of().ignitedByLava(), Blocks.LIGHT_BLUE_WOOL)); - reg.register("slab_wool_lime", createSlab(Block.Properties.of().ignitedByLava(), Blocks.LIME_WOOL)); - reg.register("slab_wool_magenta", createSlab(Block.Properties.of().ignitedByLava(), Blocks.MAGENTA_WOOL)); - reg.register("slab_wool_orange", createSlab(Block.Properties.of().ignitedByLava(), Blocks.ORANGE_WOOL)); - reg.register("slab_wool_pink", createSlab(Block.Properties.of().ignitedByLava(), Blocks.PINK_WOOL)); - reg.register("slab_wool_purple", createSlab(Block.Properties.of().ignitedByLava(), Blocks.PURPLE_WOOL)); - reg.register("slab_wool_red", createSlab(Block.Properties.of().ignitedByLava(), Blocks.RED_WOOL)); - reg.register("slab_wool_silver", createSlab(Block.Properties.of().ignitedByLava(), Blocks.LIGHT_GRAY_WOOL)); - reg.register("slab_wool_white", createSlab(Block.Properties.of().ignitedByLava(), Blocks.WHITE_WOOL)); - reg.register("slab_wool_yellow", createSlab(Block.Properties.of().ignitedByLava(), Blocks.YELLOW_WOOL)); - reg.register("slab_terracotta_white", createSlab(Block.Properties.of(), Blocks.WHITE_GLAZED_TERRACOTTA)); - reg.register("slab_terracotta_orange", createSlab(Block.Properties.of(), Blocks.ORANGE_GLAZED_TERRACOTTA)); - reg.register("slab_terracotta_magenta", createSlab(Block.Properties.of(), Blocks.MAGENTA_GLAZED_TERRACOTTA)); - reg.register("slab_terracotta_light_blue", createSlab(Block.Properties.of(), Blocks.LIGHT_BLUE_GLAZED_TERRACOTTA)); - reg.register("slab_terracotta_yellow", createSlab(Block.Properties.of(), Blocks.YELLOW_GLAZED_TERRACOTTA)); - reg.register("slab_terracotta_lime", createSlab(Block.Properties.of(), Blocks.LIME_GLAZED_TERRACOTTA)); - reg.register("slab_terracotta_pink", createSlab(Block.Properties.of(), Blocks.PINK_GLAZED_TERRACOTTA)); - reg.register("slab_terracotta_gray", createSlab(Block.Properties.of(), Blocks.GRAY_GLAZED_TERRACOTTA)); - reg.register("slab_terracotta_light_gray", createSlab(Block.Properties.of(), Blocks.LIGHT_GRAY_GLAZED_TERRACOTTA)); - reg.register("slab_terracotta_cyan", createSlab(Block.Properties.of(), Blocks.CYAN_GLAZED_TERRACOTTA)); - reg.register("slab_terracotta_purple", createSlab(Block.Properties.of(), Blocks.PURPLE_GLAZED_TERRACOTTA)); - reg.register("slab_terracotta_blue", createSlab(Block.Properties.of(), Blocks.BLUE_GLAZED_TERRACOTTA)); - reg.register("slab_terracotta_brown", createSlab(Block.Properties.of(), Blocks.BROWN_GLAZED_TERRACOTTA)); - reg.register("slab_terracotta_green", createSlab(Block.Properties.of(), Blocks.GREEN_GLAZED_TERRACOTTA)); - reg.register("slab_terracotta_red", createSlab(Block.Properties.of(), Blocks.RED_GLAZED_TERRACOTTA)); - reg.register("slab_terracotta_black", createSlab(Block.Properties.of(), Blocks.BLACK_GLAZED_TERRACOTTA)); - reg.register("slab_terracotta", createSlab(Block.Properties.of(), Blocks.TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_end_stone"), createSlab(Block.Properties.of(), Blocks.END_STONE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_netherrack"), createSlab(Block.Properties.of(), Blocks.NETHERRACK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_snow"), createSlab(Block.Properties.of(), Blocks.SNOW_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_bricks_cracked"), createSlab(Block.Properties.of(), Blocks.CRACKED_STONE_BRICKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_coarse_dirt"), createSlab(Block.Properties.of().isRedstoneConductor(AbsentRegistry::never), Blocks.COARSE_DIRT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_obsidian"), createSlab(Block.Properties.of(), Blocks.OBSIDIAN)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_basalt"), createSlab(Block.Properties.of(), Blocks.BASALT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_polished_basalt"), createSlab(Block.Properties.of(), Blocks.POLISHED_BASALT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_crying_obsidian"), createSlab(Block.Properties.of().lightLevel(state -> 10), Blocks.CRYING_OBSIDIAN)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_lodestone"), createSlab(Block.Properties.of(), Blocks.LODESTONE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_quartz_bricks"), createSlab(Block.Properties.of(), Blocks.QUARTZ_BRICKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_magma"), createSlab(Block.Properties.of().lightLevel(state -> 3), Blocks.MAGMA_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_glowstone"), createSlab(Block.Properties.of().sound(SoundType.GLASS).lightLevel(state -> 15), Blocks.GLOWSTONE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_sea_lantern"), createSlab(Block.Properties.of().sound(SoundType.GLASS).lightLevel(state -> 15), Blocks.SEA_LANTERN)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_concrete_black"), createSlab(Block.Properties.of(), Blocks.BLACK_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_concrete_blue"), createSlab(Block.Properties.of(), Blocks.BLUE_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_concrete_brown"), createSlab(Block.Properties.of(), Blocks.BROWN_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_concrete_cyan"), createSlab(Block.Properties.of(), Blocks.CYAN_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_concrete_gray"), createSlab(Block.Properties.of(), Blocks.GRAY_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_concrete_green"), createSlab(Block.Properties.of(), Blocks.GREEN_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_concrete_light_blue"), createSlab(Block.Properties.of(), Blocks.LIGHT_BLUE_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_concrete_lime"), createSlab(Block.Properties.of(), Blocks.LIME_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_concrete_magenta"), createSlab(Block.Properties.of(), Blocks.MAGENTA_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_concrete_orange"), createSlab(Block.Properties.of(), Blocks.ORANGE_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_concrete_pink"), createSlab(Block.Properties.of(), Blocks.PINK_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_concrete_purple"), createSlab(Block.Properties.of(), Blocks.PURPLE_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_concrete_red"), createSlab(Block.Properties.of(), Blocks.RED_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_concrete_silver"), createSlab(Block.Properties.of(), Blocks.LIGHT_GRAY_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_concrete_white"), createSlab(Block.Properties.of(), Blocks.WHITE_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_concrete_yellow"), createSlab(Block.Properties.of(), Blocks.YELLOW_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_wool_black"), createSlab(Block.Properties.of().ignitedByLava(), Blocks.BLACK_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_wool_blue"), createSlab(Block.Properties.of().ignitedByLava(), Blocks.BLUE_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_wool_brown"), createSlab(Block.Properties.of().ignitedByLava(), Blocks.BROWN_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_wool_cyan"), createSlab(Block.Properties.of().ignitedByLava(), Blocks.CYAN_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_wool_gray"), createSlab(Block.Properties.of().ignitedByLava(), Blocks.GRAY_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_wool_green"), createSlab(Block.Properties.of().ignitedByLava(), Blocks.GREEN_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_wool_light_blue"), createSlab(Block.Properties.of().ignitedByLava(), Blocks.LIGHT_BLUE_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_wool_lime"), createSlab(Block.Properties.of().ignitedByLava(), Blocks.LIME_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_wool_magenta"), createSlab(Block.Properties.of().ignitedByLava(), Blocks.MAGENTA_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_wool_orange"), createSlab(Block.Properties.of().ignitedByLava(), Blocks.ORANGE_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_wool_pink"), createSlab(Block.Properties.of().ignitedByLava(), Blocks.PINK_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_wool_purple"), createSlab(Block.Properties.of().ignitedByLava(), Blocks.PURPLE_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_wool_red"), createSlab(Block.Properties.of().ignitedByLava(), Blocks.RED_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_wool_silver"), createSlab(Block.Properties.of().ignitedByLava(), Blocks.LIGHT_GRAY_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_wool_white"), createSlab(Block.Properties.of().ignitedByLava(), Blocks.WHITE_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_wool_yellow"), createSlab(Block.Properties.of().ignitedByLava(), Blocks.YELLOW_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_terracotta_white"), createSlab(Block.Properties.of(), Blocks.WHITE_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_terracotta_orange"), createSlab(Block.Properties.of(), Blocks.ORANGE_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_terracotta_magenta"), createSlab(Block.Properties.of(), Blocks.MAGENTA_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_terracotta_light_blue"), createSlab(Block.Properties.of(), Blocks.LIGHT_BLUE_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_terracotta_yellow"), createSlab(Block.Properties.of(), Blocks.YELLOW_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_terracotta_lime"), createSlab(Block.Properties.of(), Blocks.LIME_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_terracotta_pink"), createSlab(Block.Properties.of(), Blocks.PINK_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_terracotta_gray"), createSlab(Block.Properties.of(), Blocks.GRAY_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_terracotta_light_gray"), createSlab(Block.Properties.of(), Blocks.LIGHT_GRAY_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_terracotta_cyan"), createSlab(Block.Properties.of(), Blocks.CYAN_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_terracotta_purple"), createSlab(Block.Properties.of(), Blocks.PURPLE_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_terracotta_blue"), createSlab(Block.Properties.of(), Blocks.BLUE_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_terracotta_brown"), createSlab(Block.Properties.of(), Blocks.BROWN_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_terracotta_green"), createSlab(Block.Properties.of(), Blocks.GREEN_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_terracotta_red"), createSlab(Block.Properties.of(), Blocks.RED_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_terracotta_black"), createSlab(Block.Properties.of(), Blocks.BLACK_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_terracotta"), createSlab(Block.Properties.of(), Blocks.TERRACOTTA)); Block SLAB_GLASS = createSlab(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT) .noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.GLASS); - reg.register("slab_glass", SLAB_GLASS); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_glass"), SLAB_GLASS); Block SLAB_GLASS_WHITE = createSlab(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.WHITE_STAINED_GLASS); - reg.register("slab_glass_white", SLAB_GLASS_WHITE); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_glass_white"), SLAB_GLASS_WHITE); Block SLAB_GLASS_ORANGE = createSlab(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.ORANGE_STAINED_GLASS); - reg.register("slab_glass_orange", SLAB_GLASS_ORANGE); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_glass_orange"), SLAB_GLASS_ORANGE); Block SLAB_GLASS_MAGENTA = createSlab(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.MAGENTA_STAINED_GLASS); - reg.register("slab_glass_magenta", SLAB_GLASS_MAGENTA); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_glass_magenta"), SLAB_GLASS_MAGENTA); Block SLAB_GLASS_LIGHT_BLUE = createSlab(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.LIGHT_BLUE_STAINED_GLASS); - reg.register("slab_glass_light_blue", SLAB_GLASS_LIGHT_BLUE); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_glass_light_blue"), SLAB_GLASS_LIGHT_BLUE); Block SLAB_GLASS_YELLOW = createSlab(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.YELLOW_STAINED_GLASS); - reg.register("slab_glass_yellow", SLAB_GLASS_YELLOW); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_glass_yellow"), SLAB_GLASS_YELLOW); Block SLAB_GLASS_LIME = createSlab(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.LIME_STAINED_GLASS); - reg.register("slab_glass_lime", SLAB_GLASS_LIME); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_glass_lime"), SLAB_GLASS_LIME); Block SLAB_GLASS_PINK = createSlab(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.PINK_STAINED_GLASS); - reg.register("slab_glass_pink", SLAB_GLASS_PINK); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_glass_pink"), SLAB_GLASS_PINK); Block SLAB_GLASS_GRAY = createSlab(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.GRAY_STAINED_GLASS); - reg.register("slab_glass_gray", SLAB_GLASS_GRAY); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_glass_gray"), SLAB_GLASS_GRAY); Block SLAB_GLASS_LIGHT_GRAY = createSlab(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.LIGHT_GRAY_STAINED_GLASS); - reg.register("slab_glass_light_gray", SLAB_GLASS_LIGHT_GRAY); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_glass_light_gray"), SLAB_GLASS_LIGHT_GRAY); Block SLAB_GLASS_CYAN = createSlab(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.CYAN_STAINED_GLASS); - reg.register("slab_glass_cyan", SLAB_GLASS_CYAN); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_glass_cyan"), SLAB_GLASS_CYAN); Block SLAB_GLASS_PURPLE = createSlab(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.PURPLE_STAINED_GLASS); - reg.register("slab_glass_purple", SLAB_GLASS_PURPLE); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_glass_purple"), SLAB_GLASS_PURPLE); Block SLAB_GLASS_BLUE = createSlab(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.BLUE_STAINED_GLASS); - reg.register("slab_glass_blue", SLAB_GLASS_BLUE); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_glass_blue"), SLAB_GLASS_BLUE); Block SLAB_GLASS_BROWN = createSlab(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.BROWN_STAINED_GLASS); - reg.register("slab_glass_brown", SLAB_GLASS_BROWN); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_glass_brown"), SLAB_GLASS_BROWN); Block SLAB_GLASS_GREEN = createSlab(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.GREEN_STAINED_GLASS); - reg.register("slab_glass_green", SLAB_GLASS_GREEN); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_glass_green"), SLAB_GLASS_GREEN); Block SLAB_GLASS_RED = createSlab(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.RED_STAINED_GLASS); - reg.register("slab_glass_red", SLAB_GLASS_RED); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_glass_red"), SLAB_GLASS_RED); Block SLAB_GLASS_BLACK = createSlab(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.BLACK_STAINED_GLASS); - reg.register("slab_glass_black", SLAB_GLASS_BLACK); - reg.register("slab_mushroom_stem", createSlab(Block.Properties.of(), Blocks.MUSHROOM_STEM)); - reg.register("slab_red_mushroom", createSlab(Block.Properties.of(), Blocks.RED_MUSHROOM)); - reg.register("slab_brown_mushroom", createSlab(Block.Properties.of(), Blocks.BROWN_MUSHROOM)); - reg.register("slab_mushroom_polished", createSlab(Block.Properties.of().ignitedByLava(), Blocks.MUSHROOM_STEM)); - reg.register("slab_calcite", createSlab(Block.Properties.of(), Blocks.CALCITE)); - reg.register("slab_amethyst", createSlab(Block.Properties.of(), Blocks.AMETHYST_BLOCK)); - reg.register("slab_tuff", createSlab(Block.Properties.of(), Blocks.TUFF)); - reg.register("slab_smooth_basalt", createSlab(Block.Properties.of(), Blocks.SMOOTH_BASALT)); - reg.register("slab_cracked_nether_bricks", createSlab(Block.Properties.of(), Blocks.CRACKED_NETHER_BRICKS)); - reg.register("slab_deepslate", createSlab(Block.Properties.of(), Blocks.DEEPSLATE)); - reg.register("slab_cracked_deepslate_bricks", createSlab(Block.Properties.of(), Blocks.CRACKED_DEEPSLATE_BRICKS)); - reg.register("slab_cracked_deepslate_tiles", createSlab(Block.Properties.of(), Blocks.CRACKED_DEEPSLATE_TILES)); - reg.register("slab_sculk", createSlab(Block.Properties.of(), Blocks.SCULK)); - reg.register("slab_mud", createSlab(Block.Properties.of(), Blocks.MUD)); - reg.register("slab_packed_mud", createSlab(Block.Properties.of(), Blocks.PACKED_MUD)); - reg.register("slab_reinforced_deepslate", createSlab(Block.Properties.of(), Blocks.REINFORCED_DEEPSLATE)); - reg.register("slab_ochre_froglight", createSlab(Block.Properties.of().pushReaction(PushReaction.DESTROY).lightLevel(s -> 15), Blocks.OCHRE_FROGLIGHT)); - reg.register("slab_pearlescent_froglight", createSlab(Block.Properties.of().pushReaction(PushReaction.DESTROY).lightLevel(s -> 15), Blocks.PEARLESCENT_FROGLIGHT)); - reg.register("slab_verdant_froglight", createSlab(Block.Properties.of().pushReaction(PushReaction.DESTROY).lightLevel(s -> 15), Blocks.VERDANT_FROGLIGHT)); - reg.register("slab_gold", createSlab(Block.Properties.of(), Blocks.GOLD_BLOCK)); - reg.register("slab_rooted_dirt", createSlab(Block.Properties.of(), Blocks.ROOTED_DIRT)); - reg.register("slab_muddy_mangrove_roots", createSlab(Block.Properties.of(), Blocks.MUDDY_MANGROVE_ROOTS)); - reg.register("slab_cracked_polished_blackstone_bricks", createSlab(Block.Properties.of(), Blocks.CRACKED_POLISHED_BLACKSTONE_BRICKS)); - reg.register("slab_dripstone", createSlab(Block.Properties.of(), Blocks.DRIPSTONE_BLOCK)); - reg.register("slab_shroomlight", createSlab(Block.Properties.of().lightLevel(state -> 15), Blocks.SHROOMLIGHT)); - reg.register("slab_gilded_blackstone", createSlab(Block.Properties.of(), Blocks.GILDED_BLACKSTONE)); - reg.register("slab_moss", createSlab(Block.Properties.of(), Blocks.MOSS_BLOCK)); - reg.register("slab_soul_sand", createSlab(Block.Properties.of().speedFactor(0.4F), Blocks.SOUL_SAND)); - reg.register("slab_soul_soil", createSlab(Block.Properties.of(), Blocks.SOUL_SOIL)); - reg.register("slab_packed_ice", createSlab(Block.Properties.of().friction(0.98F), Blocks.PACKED_ICE)); - reg.register("slab_blue_ice", createSlab(Block.Properties.of().friction(0.989F), Blocks.BLUE_ICE)); - reg.register("slab_honeycomb", createSlab(Block.Properties.of(), Blocks.HONEYCOMB_BLOCK)); - reg.register("slab_emerald", createSlab(Block.Properties.of(), Blocks.EMERALD_BLOCK)); - reg.register("slab_lapis", createSlab(Block.Properties.of(), Blocks.LAPIS_BLOCK)); - reg.register("slab_diamond", createSlab(Block.Properties.of(), Blocks.DIAMOND_BLOCK)); - reg.register("slab_bone", createSlab(Block.Properties.of(), Blocks.BONE_BLOCK)); - reg.register("slab_netherite", createSlab(Block.Properties.of(), Blocks.NETHERITE_BLOCK)); - reg.register("slab_iron", createSlab(Block.Properties.of(), Blocks.IRON_BLOCK)); - reg.register("slab_raw_iron", createSlab(Block.Properties.of(), Blocks.RAW_IRON_BLOCK)); - reg.register("slab_raw_gold", createSlab(Block.Properties.of(), Blocks.RAW_GOLD_BLOCK)); - reg.register("slab_raw_copper", createSlab(Block.Properties.of(), Blocks.RAW_COPPER_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_glass_black"), SLAB_GLASS_BLACK); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_mushroom_stem"), createSlab(Block.Properties.of(), Blocks.MUSHROOM_STEM)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_red_mushroom"), createSlab(Block.Properties.of(), Blocks.RED_MUSHROOM)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_brown_mushroom"), createSlab(Block.Properties.of(), Blocks.BROWN_MUSHROOM)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_mushroom_polished"), createSlab(Block.Properties.of().ignitedByLava(), Blocks.MUSHROOM_STEM)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_calcite"), createSlab(Block.Properties.of(), Blocks.CALCITE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_amethyst"), createSlab(Block.Properties.of(), Blocks.AMETHYST_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_tuff"), createSlab(Block.Properties.of(), Blocks.TUFF)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_smooth_basalt"), createSlab(Block.Properties.of(), Blocks.SMOOTH_BASALT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_cracked_nether_bricks"), createSlab(Block.Properties.of(), Blocks.CRACKED_NETHER_BRICKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_deepslate"), createSlab(Block.Properties.of(), Blocks.DEEPSLATE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_cracked_deepslate_bricks"), createSlab(Block.Properties.of(), Blocks.CRACKED_DEEPSLATE_BRICKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_cracked_deepslate_tiles"), createSlab(Block.Properties.of(), Blocks.CRACKED_DEEPSLATE_TILES)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_sculk"), createSlab(Block.Properties.of(), Blocks.SCULK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_mud"), createSlab(Block.Properties.of(), Blocks.MUD)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_packed_mud"), createSlab(Block.Properties.of(), Blocks.PACKED_MUD)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_reinforced_deepslate"), createSlab(Block.Properties.of(), Blocks.REINFORCED_DEEPSLATE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_ochre_froglight"), createSlab(Block.Properties.of().pushReaction(PushReaction.DESTROY).lightLevel(s -> 15), Blocks.OCHRE_FROGLIGHT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_pearlescent_froglight"), createSlab(Block.Properties.of().pushReaction(PushReaction.DESTROY).lightLevel(s -> 15), Blocks.PEARLESCENT_FROGLIGHT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_verdant_froglight"), createSlab(Block.Properties.of().pushReaction(PushReaction.DESTROY).lightLevel(s -> 15), Blocks.VERDANT_FROGLIGHT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_gold"), createSlab(Block.Properties.of(), Blocks.GOLD_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_rooted_dirt"), createSlab(Block.Properties.of(), Blocks.ROOTED_DIRT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_muddy_mangrove_roots"), createSlab(Block.Properties.of(), Blocks.MUDDY_MANGROVE_ROOTS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_cracked_polished_blackstone_bricks"), createSlab(Block.Properties.of(), Blocks.CRACKED_POLISHED_BLACKSTONE_BRICKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_dripstone"), createSlab(Block.Properties.of(), Blocks.DRIPSTONE_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_shroomlight"), createSlab(Block.Properties.of().lightLevel(state -> 15), Blocks.SHROOMLIGHT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_gilded_blackstone"), createSlab(Block.Properties.of(), Blocks.GILDED_BLACKSTONE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_moss"), createSlab(Block.Properties.of(), Blocks.MOSS_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_soul_sand"), createSlab(Block.Properties.of().speedFactor(0.4F), Blocks.SOUL_SAND)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_soul_soil"), createSlab(Block.Properties.of(), Blocks.SOUL_SOIL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_packed_ice"), createSlab(Block.Properties.of().friction(0.98F), Blocks.PACKED_ICE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_blue_ice"), createSlab(Block.Properties.of().friction(0.989F), Blocks.BLUE_ICE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_honeycomb"), createSlab(Block.Properties.of(), Blocks.HONEYCOMB_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_emerald"), createSlab(Block.Properties.of(), Blocks.EMERALD_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_lapis"), createSlab(Block.Properties.of(), Blocks.LAPIS_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_diamond"), createSlab(Block.Properties.of(), Blocks.DIAMOND_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_bone"), createSlab(Block.Properties.of(), Blocks.BONE_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_netherite"), createSlab(Block.Properties.of(), Blocks.NETHERITE_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_iron"), createSlab(Block.Properties.of(), Blocks.IRON_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_raw_iron"), createSlab(Block.Properties.of(), Blocks.RAW_IRON_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_raw_gold"), createSlab(Block.Properties.of(), Blocks.RAW_GOLD_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "slab_raw_copper"), createSlab(Block.Properties.of(), Blocks.RAW_COPPER_BLOCK)); // // STAIRS // - reg.register("stairs_coarse_dirt", createStair(Block.Properties.of(), Blocks.COARSE_DIRT)); - reg.register("stairs_smooth_stone", createStair(Block.Properties.of(), Blocks.SMOOTH_STONE)); - reg.register("stairs_end_stone", createStair(Block.Properties.of(), Blocks.END_STONE)); - reg.register("stairs_bricks_cracked", createStair(Block.Properties.of(), Blocks.CRACKED_STONE_BRICKS)); - reg.register("stairs_netherrack", createStair(Block.Properties.of(), Blocks.NETHERRACK)); - reg.register("stairs_snow", createStair(Block.Properties.of().isRedstoneConductor((state, getter, pos) -> false), Blocks.SNOW_BLOCK)); - reg.register("stairs_obsidian", createStair(Block.Properties.of(), Blocks.OBSIDIAN)); - reg.register("stairs_quartz_bricks", createStair(Block.Properties.of(), Blocks.QUARTZ_BRICKS)); - reg.register("stairs_basalt", createStair(Block.Properties.of(), Blocks.BASALT)); - reg.register("stairs_polished_basalt", createStair(Block.Properties.of(), Blocks.POLISHED_BASALT)); - reg.register("stairs_crying_obsidian", createStair(Block.Properties.of().lightLevel(state -> 10), Blocks.CRYING_OBSIDIAN)); - reg.register("stairs_lodestone", createStair(Block.Properties.of(), Blocks.LODESTONE)); - reg.register("stairs_magma", createStair(Block.Properties.of().lightLevel(s -> 3), Blocks.MAGMA_BLOCK)); - reg.register("stairs_glowstone", createStair(Block.Properties.of().sound(SoundType.GLASS).lightLevel(s -> 15), Blocks.GLOWSTONE)); - reg.register("stairs_sea_lantern", createStair(Block.Properties.of().sound(SoundType.GLASS).lightLevel(s -> 15), Blocks.SEA_LANTERN)); - reg.register("stairs_concrete_black", createStair(Block.Properties.of(), Blocks.BLACK_CONCRETE)); - reg.register("stairs_concrete_blue", createStair(Block.Properties.of(), Blocks.BLUE_CONCRETE)); - reg.register("stairs_concrete_brown", createStair(Block.Properties.of(), Blocks.BROWN_CONCRETE)); - reg.register("stairs_concrete_cyan", createStair(Block.Properties.of(), Blocks.CYAN_CONCRETE)); - reg.register("stairs_concrete_gray", createStair(Block.Properties.of(), Blocks.GRAY_CONCRETE)); - reg.register("stairs_concrete_green", createStair(Block.Properties.of(), Blocks.GREEN_CONCRETE)); - reg.register("stairs_concrete_light_blue", createStair(Block.Properties.of(), Blocks.LIGHT_BLUE_CONCRETE)); - reg.register("stairs_concrete_lime", createStair(Block.Properties.of(), Blocks.LIME_CONCRETE)); - reg.register("stairs_concrete_magenta", createStair(Block.Properties.of(), Blocks.MAGENTA_CONCRETE)); - reg.register("stairs_concrete_orange", createStair(Block.Properties.of(), Blocks.ORANGE_CONCRETE)); - reg.register("stairs_concrete_pink", createStair(Block.Properties.of(), Blocks.PINK_CONCRETE)); - reg.register("stairs_concrete_purple", createStair(Block.Properties.of(), Blocks.PURPLE_CONCRETE)); - reg.register("stairs_concrete_red", createStair(Block.Properties.of(), Blocks.RED_CONCRETE)); - reg.register("stairs_concrete_silver", createStair(Block.Properties.of(), Blocks.LIGHT_GRAY_CONCRETE)); - reg.register("stairs_concrete_white", createStair(Block.Properties.of(), Blocks.WHITE_CONCRETE)); - reg.register("stairs_concrete_yellow", createStair(Block.Properties.of(), Blocks.YELLOW_CONCRETE)); - reg.register("stairs_wool_black", createStair(Block.Properties.of().ignitedByLava(), Blocks.BLACK_WOOL)); - reg.register("stairs_wool_blue", createStair(Block.Properties.of().ignitedByLava(), Blocks.BLUE_WOOL)); - reg.register("stairs_wool_brown", createStair(Block.Properties.of().ignitedByLava(), Blocks.BROWN_WOOL)); - reg.register("stairs_wool_cyan", createStair(Block.Properties.of().ignitedByLava(), Blocks.CYAN_WOOL)); - reg.register("stairs_wool_gray", createStair(Block.Properties.of().ignitedByLava(), Blocks.GRAY_WOOL)); - reg.register("stairs_wool_green", createStair(Block.Properties.of().ignitedByLava(), Blocks.GREEN_WOOL)); - reg.register("stairs_wool_light_blue", createStair(Block.Properties.of().ignitedByLava(), Blocks.LIGHT_BLUE_WOOL)); - reg.register("stairs_wool_lime", createStair(Block.Properties.of().ignitedByLava(), Blocks.LIME_WOOL)); - reg.register("stairs_wool_magenta", createStair(Block.Properties.of().ignitedByLava(), Blocks.MAGENTA_WOOL)); - reg.register("stairs_wool_orange", createStair(Block.Properties.of().ignitedByLava(), Blocks.ORANGE_WOOL)); - reg.register("stairs_wool_pink", createStair(Block.Properties.of().ignitedByLava(), Blocks.PINK_WOOL)); - reg.register("stairs_wool_purple", createStair(Block.Properties.of().ignitedByLava(), Blocks.PURPLE_WOOL)); - reg.register("stairs_wool_red", createStair(Block.Properties.of().ignitedByLava(), Blocks.RED_WOOL)); - reg.register("stairs_wool_silver", createStair(Block.Properties.of().ignitedByLava(), Blocks.LIGHT_GRAY_WOOL)); - reg.register("stairs_wool_white", createStair(Block.Properties.of().ignitedByLava(), Blocks.WHITE_WOOL)); - reg.register("stairs_wool_yellow", createStair(Block.Properties.of().ignitedByLava(), Blocks.YELLOW_WOOL)); - reg.register("stairs_terracotta", createStair(Block.Properties.of(), Blocks.TERRACOTTA)); - reg.register("stairs_terracotta_white", createStair(Block.Properties.of(), Blocks.WHITE_GLAZED_TERRACOTTA)); - reg.register("stairs_terracotta_orange", createStair(Block.Properties.of(), Blocks.ORANGE_GLAZED_TERRACOTTA)); - reg.register("stairs_terracotta_magenta", createStair(Block.Properties.of(), Blocks.MAGENTA_GLAZED_TERRACOTTA)); - reg.register("stairs_terracotta_light_blue", createStair(Block.Properties.of(), Blocks.LIGHT_BLUE_GLAZED_TERRACOTTA)); - reg.register("stairs_terracotta_yellow", createStair(Block.Properties.of(), Blocks.YELLOW_GLAZED_TERRACOTTA)); - reg.register("stairs_terracotta_lime", createStair(Block.Properties.of(), Blocks.LIME_GLAZED_TERRACOTTA)); - reg.register("stairs_terracotta_pink", createStair(Block.Properties.of(), Blocks.PINK_GLAZED_TERRACOTTA)); - reg.register("stairs_terracotta_gray", createStair(Block.Properties.of(), Blocks.GRAY_GLAZED_TERRACOTTA)); - reg.register("stairs_terracotta_light_gray", createStair(Block.Properties.of(), Blocks.LIGHT_GRAY_GLAZED_TERRACOTTA)); - reg.register("stairs_terracotta_cyan", createStair(Block.Properties.of(), Blocks.CYAN_GLAZED_TERRACOTTA)); - reg.register("stairs_terracotta_purple", createStair(Block.Properties.of(), Blocks.PURPLE_GLAZED_TERRACOTTA)); - reg.register("stairs_terracotta_blue", createStair(Block.Properties.of(), Blocks.BLUE_GLAZED_TERRACOTTA)); - reg.register("stairs_terracotta_brown", createStair(Block.Properties.of(), Blocks.BROWN_GLAZED_TERRACOTTA)); - reg.register("stairs_terracotta_green", createStair(Block.Properties.of(), Blocks.GREEN_GLAZED_TERRACOTTA)); - reg.register("stairs_terracotta_red", createStair(Block.Properties.of(), Blocks.RED_GLAZED_TERRACOTTA)); - reg.register("stairs_terracotta_black", createStair(Block.Properties.of(), Blocks.BLACK_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_coarse_dirt"), createStair(Block.Properties.of(), Blocks.COARSE_DIRT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_smooth_stone"), createStair(Block.Properties.of(), Blocks.SMOOTH_STONE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_end_stone"), createStair(Block.Properties.of(), Blocks.END_STONE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_bricks_cracked"), createStair(Block.Properties.of(), Blocks.CRACKED_STONE_BRICKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_netherrack"), createStair(Block.Properties.of(), Blocks.NETHERRACK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_snow"), createStair(Block.Properties.of().isRedstoneConductor((state, getter, pos) -> false), Blocks.SNOW_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_obsidian"), createStair(Block.Properties.of(), Blocks.OBSIDIAN)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_quartz_bricks"), createStair(Block.Properties.of(), Blocks.QUARTZ_BRICKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_basalt"), createStair(Block.Properties.of(), Blocks.BASALT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_polished_basalt"), createStair(Block.Properties.of(), Blocks.POLISHED_BASALT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_crying_obsidian"), createStair(Block.Properties.of().lightLevel(state -> 10), Blocks.CRYING_OBSIDIAN)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_lodestone"), createStair(Block.Properties.of(), Blocks.LODESTONE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_magma"), createStair(Block.Properties.of().lightLevel(s -> 3), Blocks.MAGMA_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_glowstone"), createStair(Block.Properties.of().sound(SoundType.GLASS).lightLevel(s -> 15), Blocks.GLOWSTONE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_sea_lantern"), createStair(Block.Properties.of().sound(SoundType.GLASS).lightLevel(s -> 15), Blocks.SEA_LANTERN)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_concrete_black"), createStair(Block.Properties.of(), Blocks.BLACK_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_concrete_blue"), createStair(Block.Properties.of(), Blocks.BLUE_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_concrete_brown"), createStair(Block.Properties.of(), Blocks.BROWN_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_concrete_cyan"), createStair(Block.Properties.of(), Blocks.CYAN_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_concrete_gray"), createStair(Block.Properties.of(), Blocks.GRAY_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_concrete_green"), createStair(Block.Properties.of(), Blocks.GREEN_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_concrete_light_blue"), createStair(Block.Properties.of(), Blocks.LIGHT_BLUE_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_concrete_lime"), createStair(Block.Properties.of(), Blocks.LIME_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_concrete_magenta"), createStair(Block.Properties.of(), Blocks.MAGENTA_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_concrete_orange"), createStair(Block.Properties.of(), Blocks.ORANGE_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_concrete_pink"), createStair(Block.Properties.of(), Blocks.PINK_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_concrete_purple"), createStair(Block.Properties.of(), Blocks.PURPLE_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_concrete_red"), createStair(Block.Properties.of(), Blocks.RED_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_concrete_silver"), createStair(Block.Properties.of(), Blocks.LIGHT_GRAY_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_concrete_white"), createStair(Block.Properties.of(), Blocks.WHITE_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_concrete_yellow"), createStair(Block.Properties.of(), Blocks.YELLOW_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_wool_black"), createStair(Block.Properties.of().ignitedByLava(), Blocks.BLACK_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_wool_blue"), createStair(Block.Properties.of().ignitedByLava(), Blocks.BLUE_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_wool_brown"), createStair(Block.Properties.of().ignitedByLava(), Blocks.BROWN_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_wool_cyan"), createStair(Block.Properties.of().ignitedByLava(), Blocks.CYAN_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_wool_gray"), createStair(Block.Properties.of().ignitedByLava(), Blocks.GRAY_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_wool_green"), createStair(Block.Properties.of().ignitedByLava(), Blocks.GREEN_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_wool_light_blue"), createStair(Block.Properties.of().ignitedByLava(), Blocks.LIGHT_BLUE_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_wool_lime"), createStair(Block.Properties.of().ignitedByLava(), Blocks.LIME_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_wool_magenta"), createStair(Block.Properties.of().ignitedByLava(), Blocks.MAGENTA_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_wool_orange"), createStair(Block.Properties.of().ignitedByLava(), Blocks.ORANGE_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_wool_pink"), createStair(Block.Properties.of().ignitedByLava(), Blocks.PINK_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_wool_purple"), createStair(Block.Properties.of().ignitedByLava(), Blocks.PURPLE_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_wool_red"), createStair(Block.Properties.of().ignitedByLava(), Blocks.RED_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_wool_silver"), createStair(Block.Properties.of().ignitedByLava(), Blocks.LIGHT_GRAY_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_wool_white"), createStair(Block.Properties.of().ignitedByLava(), Blocks.WHITE_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_wool_yellow"), createStair(Block.Properties.of().ignitedByLava(), Blocks.YELLOW_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_terracotta"), createStair(Block.Properties.of(), Blocks.TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_terracotta_white"), createStair(Block.Properties.of(), Blocks.WHITE_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_terracotta_orange"), createStair(Block.Properties.of(), Blocks.ORANGE_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_terracotta_magenta"), createStair(Block.Properties.of(), Blocks.MAGENTA_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_terracotta_light_blue"), createStair(Block.Properties.of(), Blocks.LIGHT_BLUE_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_terracotta_yellow"), createStair(Block.Properties.of(), Blocks.YELLOW_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_terracotta_lime"), createStair(Block.Properties.of(), Blocks.LIME_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_terracotta_pink"), createStair(Block.Properties.of(), Blocks.PINK_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_terracotta_gray"), createStair(Block.Properties.of(), Blocks.GRAY_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_terracotta_light_gray"), createStair(Block.Properties.of(), Blocks.LIGHT_GRAY_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_terracotta_cyan"), createStair(Block.Properties.of(), Blocks.CYAN_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_terracotta_purple"), createStair(Block.Properties.of(), Blocks.PURPLE_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_terracotta_blue"), createStair(Block.Properties.of(), Blocks.BLUE_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_terracotta_brown"), createStair(Block.Properties.of(), Blocks.BROWN_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_terracotta_green"), createStair(Block.Properties.of(), Blocks.GREEN_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_terracotta_red"), createStair(Block.Properties.of(), Blocks.RED_GLAZED_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_terracotta_black"), createStair(Block.Properties.of(), Blocks.BLACK_GLAZED_TERRACOTTA)); Block STAIRS_GLASS = createStair(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.GLASS); - reg.register("stairs_glass", STAIRS_GLASS); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_glass"), STAIRS_GLASS); Block STAIRS_GLASS_WHITE = createStair(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.WHITE_STAINED_GLASS); - reg.register("stairs_glass_white", STAIRS_GLASS_WHITE); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_glass_white"), STAIRS_GLASS_WHITE); Block STAIRS_GLASS_ORANGE = createStair(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.ORANGE_STAINED_GLASS); - reg.register("stairs_glass_orange", STAIRS_GLASS_ORANGE); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_glass_orange"), STAIRS_GLASS_ORANGE); Block STAIRS_GLASS_MAGENTA = createStair(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.MAGENTA_STAINED_GLASS); - reg.register("stairs_glass_magenta", STAIRS_GLASS_MAGENTA); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_glass_magenta"), STAIRS_GLASS_MAGENTA); Block STAIRS_GLASS_LIGHT_BLUE = createStair(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.LIGHT_BLUE_STAINED_GLASS); - reg.register("stairs_glass_light_blue", STAIRS_GLASS_LIGHT_BLUE); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_glass_light_blue"), STAIRS_GLASS_LIGHT_BLUE); Block STAIRS_GLASS_YELLOW = createStair(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.YELLOW_STAINED_GLASS); - reg.register("stairs_glass_yellow", STAIRS_GLASS_YELLOW); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_glass_yellow"), STAIRS_GLASS_YELLOW); Block STAIRS_GLASS_LIME = createStair(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.LIME_STAINED_GLASS); - reg.register("stairs_glass_lime", STAIRS_GLASS_LIME); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_glass_lime"), STAIRS_GLASS_LIME); Block STAIRS_GLASS_PINK = createStair(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.PINK_STAINED_GLASS); - reg.register("stairs_glass_pink", STAIRS_GLASS_PINK); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_glass_pink"), STAIRS_GLASS_PINK); Block STAIRS_GLASS_GRAY = createStair(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.GRAY_STAINED_GLASS); - reg.register("stairs_glass_gray", STAIRS_GLASS_GRAY); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_glass_gray"), STAIRS_GLASS_GRAY); Block STAIRS_GLASS_LIGHT_GRAY = createStair(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.LIGHT_GRAY_STAINED_GLASS); - reg.register("stairs_glass_light_gray", STAIRS_GLASS_LIGHT_GRAY); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_glass_light_gray"), STAIRS_GLASS_LIGHT_GRAY); Block STAIRS_GLASS_CYAN = createStair(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.CYAN_STAINED_GLASS); - reg.register("stairs_glass_cyan", STAIRS_GLASS_CYAN); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_glass_cyan"), STAIRS_GLASS_CYAN); Block STAIRS_GLASS_PURPLE = createStair(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.PURPLE_STAINED_GLASS); - reg.register("stairs_glass_purple", STAIRS_GLASS_PURPLE); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_glass_purple"), STAIRS_GLASS_PURPLE); Block STAIRS_GLASS_BLUE = createStair(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.BLUE_STAINED_GLASS); - reg.register("stairs_glass_blue", STAIRS_GLASS_BLUE); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_glass_blue"), STAIRS_GLASS_BLUE); Block STAIRS_GLASS_BROWN = createStair(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.BROWN_STAINED_GLASS); - reg.register("stairs_glass_brown", STAIRS_GLASS_BROWN); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_glass_brown"), STAIRS_GLASS_BROWN); Block STAIRS_GLASS_GREEN = createStair(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.GREEN_STAINED_GLASS); - reg.register("stairs_glass_green", STAIRS_GLASS_GREEN); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_glass_green"), STAIRS_GLASS_GREEN); Block STAIRS_GLASS_RED = createStair(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.RED_STAINED_GLASS); - reg.register("stairs_glass_red", STAIRS_GLASS_RED); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_glass_red"), STAIRS_GLASS_RED); Block STAIRS_GLASS_BLACK = createStair(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT).noOcclusion().isValidSpawn(AbsentRegistry::never).isRedstoneConductor(AbsentRegistry::never).isSuffocating(AbsentRegistry::never).isViewBlocking(AbsentRegistry::never), Blocks.BLACK_STAINED_GLASS); - reg.register("stairs_glass_black", STAIRS_GLASS_BLACK); - reg.register("stairs_red_mushroom", createStair(Block.Properties.of().ignitedByLava(), Blocks.RED_MUSHROOM_BLOCK)); - reg.register("stairs_brown_mushroom", createStair(Block.Properties.of().ignitedByLava(), Blocks.BROWN_MUSHROOM_BLOCK)); - reg.register("stairs_mushroom_stem", createStair(Block.Properties.of().ignitedByLava(), Blocks.MUSHROOM_STEM)); - reg.register("stairs_mushroom_polished", createStair(Block.Properties.of().ignitedByLava(), Blocks.MUSHROOM_STEM)); - reg.register("stairs_calcite", createStair(Block.Properties.of(), Blocks.CALCITE)); - reg.register("stairs_amethyst", createStair(Block.Properties.of(), Blocks.AMETHYST_BLOCK)); - reg.register("stairs_tuff", createStair(Block.Properties.of(), Blocks.TUFF)); - reg.register("stairs_smooth_basalt", createStair(Block.Properties.of(), Blocks.SMOOTH_BASALT)); - reg.register("stairs_cracked_nether_bricks", createStair(Block.Properties.of(), Blocks.CRACKED_NETHER_BRICKS)); - reg.register("stairs_deepslate", createStair(Block.Properties.of(), Blocks.DEEPSLATE)); - reg.register("stairs_cracked_deepslate_bricks", createStair(Block.Properties.of(), Blocks.CRACKED_DEEPSLATE_BRICKS)); - reg.register("stairs_cracked_deepslate_tiles", createStair(Block.Properties.of(), Blocks.CRACKED_DEEPSLATE_TILES)); - reg.register("stairs_sculk", createStair(Block.Properties.of(), Blocks.SCULK)); - reg.register("stairs_mud", createStair(Block.Properties.of(), Blocks.MUD)); - reg.register("stairs_packed_mud", createStair(Block.Properties.of(), Blocks.PACKED_MUD)); - reg.register("stairs_reinforced_deepslate", createStair(Block.Properties.of(), Blocks.REINFORCED_DEEPSLATE)); - reg.register("stairs_ochre_froglight", createStair(Block.Properties.of().pushReaction(PushReaction.DESTROY).lightLevel(s -> 15), Blocks.OCHRE_FROGLIGHT)); - reg.register("stairs_pearlescent_froglight", createStair(Block.Properties.of().pushReaction(PushReaction.DESTROY).lightLevel(s -> 15), Blocks.PEARLESCENT_FROGLIGHT)); - reg.register("stairs_verdant_froglight", createStair(Block.Properties.of().pushReaction(PushReaction.DESTROY).lightLevel(s -> 15), Blocks.VERDANT_FROGLIGHT)); - reg.register("stairs_gold", createStair(Block.Properties.of(), Blocks.GOLD_BLOCK)); - reg.register("stairs_rooted_dirt", createStair(Block.Properties.of(), Blocks.ROOTED_DIRT)); - reg.register("stairs_muddy_mangrove_roots", createStair(Block.Properties.of(), Blocks.MUDDY_MANGROVE_ROOTS)); - reg.register("stairs_cracked_polished_blackstone_bricks", createStair(Block.Properties.of(), Blocks.CRACKED_POLISHED_BLACKSTONE_BRICKS)); - reg.register("stairs_dripstone", createStair(Block.Properties.of(), Blocks.DRIPSTONE_BLOCK)); - reg.register("stairs_shroomlight", createStair(Block.Properties.of().lightLevel(state -> 15), Blocks.SHROOMLIGHT)); - reg.register("stairs_gilded_blackstone", createStair(Block.Properties.of(), Blocks.GILDED_BLACKSTONE)); - reg.register("stairs_moss", createStair(Block.Properties.of(), Blocks.MOSS_BLOCK)); - reg.register("stairs_soul_sand", createStair(Block.Properties.of().speedFactor(0.4F), Blocks.SOUL_SAND)); - reg.register("stairs_soul_soil", createStair(Block.Properties.of(), Blocks.SOUL_SOIL)); - reg.register("stairs_packed_ice", createStair(Block.Properties.of().friction(0.98F), Blocks.PACKED_ICE)); - reg.register("stairs_blue_ice", createStair(Block.Properties.of().friction(0.989F), Blocks.BLUE_ICE)); - reg.register("stairs_honeycomb", createStair(Block.Properties.of(), Blocks.HONEYCOMB_BLOCK)); - reg.register("stairs_emerald", createStair(Block.Properties.of(), Blocks.EMERALD_BLOCK)); - reg.register("stairs_lapis", createStair(Block.Properties.of(), Blocks.LAPIS_BLOCK)); - reg.register("stairs_diamond", createStair(Block.Properties.of(), Blocks.DIAMOND_BLOCK)); - reg.register("stairs_bone", createStair(Block.Properties.of(), Blocks.BONE_BLOCK)); - reg.register("stairs_netherite", createStair(Block.Properties.of(), Blocks.NETHERITE_BLOCK)); - reg.register("stairs_iron", createStair(Block.Properties.of(), Blocks.IRON_BLOCK)); - reg.register("stairs_raw_iron", createStair(Block.Properties.of(), Blocks.RAW_IRON_BLOCK)); - reg.register("stairs_raw_gold", createStair(Block.Properties.of(), Blocks.RAW_GOLD_BLOCK)); - reg.register("stairs_raw_copper", createStair(Block.Properties.of(), Blocks.RAW_COPPER_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_glass_black"), STAIRS_GLASS_BLACK); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_red_mushroom"), createStair(Block.Properties.of().ignitedByLava(), Blocks.RED_MUSHROOM_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_brown_mushroom"), createStair(Block.Properties.of().ignitedByLava(), Blocks.BROWN_MUSHROOM_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_mushroom_stem"), createStair(Block.Properties.of().ignitedByLava(), Blocks.MUSHROOM_STEM)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_mushroom_polished"), createStair(Block.Properties.of().ignitedByLava(), Blocks.MUSHROOM_STEM)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_calcite"), createStair(Block.Properties.of(), Blocks.CALCITE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_amethyst"), createStair(Block.Properties.of(), Blocks.AMETHYST_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_tuff"), createStair(Block.Properties.of(), Blocks.TUFF)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_smooth_basalt"), createStair(Block.Properties.of(), Blocks.SMOOTH_BASALT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_cracked_nether_bricks"), createStair(Block.Properties.of(), Blocks.CRACKED_NETHER_BRICKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_deepslate"), createStair(Block.Properties.of(), Blocks.DEEPSLATE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_cracked_deepslate_bricks"), createStair(Block.Properties.of(), Blocks.CRACKED_DEEPSLATE_BRICKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_cracked_deepslate_tiles"), createStair(Block.Properties.of(), Blocks.CRACKED_DEEPSLATE_TILES)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_sculk"), createStair(Block.Properties.of(), Blocks.SCULK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_mud"), createStair(Block.Properties.of(), Blocks.MUD)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_packed_mud"), createStair(Block.Properties.of(), Blocks.PACKED_MUD)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_reinforced_deepslate"), createStair(Block.Properties.of(), Blocks.REINFORCED_DEEPSLATE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_ochre_froglight"), createStair(Block.Properties.of().pushReaction(PushReaction.DESTROY).lightLevel(s -> 15), Blocks.OCHRE_FROGLIGHT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_pearlescent_froglight"), createStair(Block.Properties.of().pushReaction(PushReaction.DESTROY).lightLevel(s -> 15), Blocks.PEARLESCENT_FROGLIGHT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_verdant_froglight"), createStair(Block.Properties.of().pushReaction(PushReaction.DESTROY).lightLevel(s -> 15), Blocks.VERDANT_FROGLIGHT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_gold"), createStair(Block.Properties.of(), Blocks.GOLD_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_rooted_dirt"), createStair(Block.Properties.of(), Blocks.ROOTED_DIRT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_muddy_mangrove_roots"), createStair(Block.Properties.of(), Blocks.MUDDY_MANGROVE_ROOTS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_cracked_polished_blackstone_bricks"), createStair(Block.Properties.of(), Blocks.CRACKED_POLISHED_BLACKSTONE_BRICKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_dripstone"), createStair(Block.Properties.of(), Blocks.DRIPSTONE_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_shroomlight"), createStair(Block.Properties.of().lightLevel(state -> 15), Blocks.SHROOMLIGHT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_gilded_blackstone"), createStair(Block.Properties.of(), Blocks.GILDED_BLACKSTONE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_moss"), createStair(Block.Properties.of(), Blocks.MOSS_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_soul_sand"), createStair(Block.Properties.of().speedFactor(0.4F), Blocks.SOUL_SAND)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_soul_soil"), createStair(Block.Properties.of(), Blocks.SOUL_SOIL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_packed_ice"), createStair(Block.Properties.of().friction(0.98F), Blocks.PACKED_ICE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_blue_ice"), createStair(Block.Properties.of().friction(0.989F), Blocks.BLUE_ICE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_honeycomb"), createStair(Block.Properties.of(), Blocks.HONEYCOMB_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_emerald"), createStair(Block.Properties.of(), Blocks.EMERALD_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_lapis"), createStair(Block.Properties.of(), Blocks.LAPIS_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_diamond"), createStair(Block.Properties.of(), Blocks.DIAMOND_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_bone"), createStair(Block.Properties.of(), Blocks.BONE_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_netherite"), createStair(Block.Properties.of(), Blocks.NETHERITE_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_iron"), createStair(Block.Properties.of(), Blocks.IRON_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_raw_iron"), createStair(Block.Properties.of(), Blocks.RAW_IRON_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_raw_gold"), createStair(Block.Properties.of(), Blocks.RAW_GOLD_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "stairs_raw_copper"), createStair(Block.Properties.of(), Blocks.RAW_COPPER_BLOCK)); // // WALLS // - reg.register("wall_stripped_acacia_log", createWall(Block.Properties.of().ignitedByLava(), Blocks.STRIPPED_ACACIA_LOG)); - reg.register("wall_stripped_birch_log", createWall(Block.Properties.of().ignitedByLava(), Blocks.STRIPPED_BIRCH_LOG)); - reg.register("wall_stripped_dark_oak_log", createWall(Block.Properties.of().ignitedByLava(), Blocks.STRIPPED_DARK_OAK_LOG)); - reg.register("wall_stripped_jungle_log", createWall(Block.Properties.of().ignitedByLava(), Blocks.STRIPPED_JUNGLE_LOG)); - reg.register("wall_stripped_oak_log", createWall(Block.Properties.of().ignitedByLava(), Blocks.STRIPPED_OAK_LOG)); - reg.register("wall_stripped_spruce_log", createWall(Block.Properties.of().ignitedByLava(), Blocks.STRIPPED_SPRUCE_LOG)); - reg.register("wall_stripped_mangrove_log", createWall(Block.Properties.of().ignitedByLava(), Blocks.STRIPPED_MANGROVE_LOG)); - reg.register("wall_acacia_log", createWall(Block.Properties.of().ignitedByLava(), Blocks.ACACIA_LOG)); - reg.register("wall_birch_log", createWall(Block.Properties.of().ignitedByLava(), Blocks.BIRCH_LOG)); - reg.register("wall_dark_oak_log", createWall(Block.Properties.of().ignitedByLava(), Blocks.DARK_OAK_LOG)); - reg.register("wall_jungle_log", createWall(Block.Properties.of().ignitedByLava(), Blocks.JUNGLE_LOG)); - reg.register("wall_oak_log", createWall(Block.Properties.of().ignitedByLava(), Blocks.OAK_LOG)); - reg.register("wall_spruce_log", createWall(Block.Properties.of().ignitedByLava(), Blocks.SPRUCE_LOG)); - reg.register("wall_mangrove_log", createWall(Block.Properties.of().ignitedByLava(), Blocks.MANGROVE_LOG)); - reg.register("wall_andesite_smooth", createWall(Block.Properties.of(), Blocks.ANDESITE)); - reg.register("wall_diorite_smooth", createWall(Block.Properties.of(), Blocks.DIORITE)); - reg.register("wall_end_stone", createWall(Block.Properties.of(), Blocks.END_STONE)); - reg.register("wall_granite_smooth", createWall(Block.Properties.of(), Blocks.QUARTZ_BLOCK)); - reg.register("wall_purpur", createWall(Block.Properties.of(), Blocks.PURPUR_BLOCK)); - reg.register("wall_quartz", createWall(Block.Properties.of(), Blocks.QUARTZ_BLOCK)); - reg.register("wall_sandstone_red_smooth", createWall(Block.Properties.of(), Blocks.RED_SANDSTONE)); - reg.register("wall_sandstone_smooth", createWall(Block.Properties.of(), Blocks.SANDSTONE)); - reg.register("wall_stone", createWall(Block.Properties.of(), Blocks.STONE)); - reg.register("wall_stone_slab", createWall(Block.Properties.of(), Blocks.STONE)); - reg.register("wall_stonebrick_carved", createWall(Block.Properties.of(), Blocks.STONE_BRICKS)); - reg.register("wall_stonebrick_cracked", createWall(Block.Properties.of(), Blocks.STONE_BRICKS)); - reg.register("wall_obsidian", createWall(Block.Properties.of(), Blocks.OBSIDIAN)); - reg.register("wall_prismarine_bricks", createWall(Block.Properties.of(), Blocks.PRISMARINE)); - reg.register("wall_dark_prismarine", createWall(Block.Properties.of(), Blocks.DARK_PRISMARINE)); - reg.register("wall_crimson", createWall(Block.Properties.of().ignitedByLava(), Blocks.CRIMSON_STEM)); - reg.register("wall_warped", createWall(Block.Properties.of().ignitedByLava(), Blocks.WARPED_STEM)); - reg.register("wall_crying_obsidian", createWall(Block.Properties.of().lightLevel(state -> 10), Blocks.CRYING_OBSIDIAN)); - reg.register("wall_basalt", createWall(Block.Properties.of(), Blocks.BASALT)); - reg.register("wall_polished_basalt", createWall(Block.Properties.of(), Blocks.POLISHED_BASALT)); - reg.register("wall_lodestone", createWall(Block.Properties.of(), Blocks.LODESTONE)); - reg.register("wall_stripped_crimson", createWall(Block.Properties.of().ignitedByLava(), Blocks.STRIPPED_CRIMSON_HYPHAE)); - reg.register("wall_stripped_warped", createWall(Block.Properties.of().ignitedByLava(), Blocks.STRIPPED_WARPED_HYPHAE)); - reg.register("wall_mushroom_stem", createWall(Block.Properties.of().ignitedByLava(), Blocks.MUSHROOM_STEM)); - reg.register("wall_red_mushroom", createWall(Block.Properties.of().ignitedByLava(), Blocks.RED_MUSHROOM_BLOCK)); - reg.register("wall_brown_mushroom", createWall(Block.Properties.of().ignitedByLava(), Blocks.BROWN_MUSHROOM_BLOCK)); - reg.register("wall_mushroom_polished", createWall(Block.Properties.of().ignitedByLava(), Blocks.MUSHROOM_STEM)); // ?? - reg.register("wall_quartz_bricks", createWall(Block.Properties.of(), Blocks.QUARTZ_BRICKS)); - reg.register("wall_magma", createWall(Block.Properties.of().lightLevel(s -> 3), Blocks.MAGMA_BLOCK)); - reg.register("wall_glowstone", createWall(Block.Properties.of().instrument(NoteBlockInstrument.SNARE).sound(SoundType.GLASS).lightLevel(s -> 15), Blocks.GLOWSTONE)); - reg.register("wall_sea_lantern", createWall(Block.Properties.of().instrument(NoteBlockInstrument.SNARE).sound(SoundType.GLASS).lightLevel(s -> 15), Blocks.SEA_LANTERN)); - reg.register("wall_glass", createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.GLASS)); - reg.register("wall_glass_white", createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.WHITE_STAINED_GLASS)); - reg.register("wall_glass_orange", createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.ORANGE_STAINED_GLASS)); - reg.register("wall_glass_magenta", createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.MAGENTA_STAINED_GLASS)); - reg.register("wall_glass_purple", createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.PURPLE_STAINED_GLASS)); - reg.register("wall_glass_blue", createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.BLUE_STAINED_GLASS)); - reg.register("wall_glass_brown", createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.BROWN_STAINED_GLASS)); - reg.register("wall_glass_red", createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.RED_STAINED_GLASS)); - reg.register("wall_glass_black", createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.BLACK_STAINED_GLASS)); - reg.register("wall_glass_cyan", createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.CYAN_STAINED_GLASS)); - reg.register("wall_glass_light_gray", createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.LIGHT_GRAY_STAINED_GLASS)); - reg.register("wall_glass_gray", createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.GRAY_STAINED_GLASS)); - reg.register("wall_glass_pink", createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.PINK_STAINED_GLASS)); - reg.register("wall_glass_lime", createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.LIME_STAINED_GLASS)); - reg.register("wall_glass_light_blue", createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.LIGHT_BLUE_STAINED_GLASS)); - reg.register("wall_glass_yellow", createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.YELLOW_STAINED_GLASS)); - reg.register("wall_glass_green", createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.GREEN_STAINED_GLASS)); - reg.register("wall_oak_planks", createWall(Block.Properties.of().ignitedByLava(), Blocks.OAK_PLANKS)); - reg.register("wall_dark_oak_planks", createWall(Block.Properties.of().ignitedByLava(), Blocks.DARK_OAK_PLANKS)); - reg.register("wall_acacia_planks", createWall(Block.Properties.of().ignitedByLava(), Blocks.ACACIA_PLANKS)); - reg.register("wall_jungle_planks", createWall(Block.Properties.of().ignitedByLava(), Blocks.JUNGLE_PLANKS)); - reg.register("wall_birch_planks", createWall(Block.Properties.of().ignitedByLava(), Blocks.BIRCH_PLANKS)); - reg.register("wall_spruce_planks", createWall(Block.Properties.of().ignitedByLava(), Blocks.SPRUCE_PLANKS)); - reg.register("wall_mangrove_planks", createWall(Block.Properties.of().ignitedByLava(), Blocks.MANGROVE_PLANKS)); - reg.register("wall_crimson_planks", createWall(Block.Properties.of().ignitedByLava(), Blocks.CRIMSON_PLANKS)); - reg.register("wall_warped_planks", createWall(Block.Properties.of().ignitedByLava(), Blocks.WARPED_PLANKS)); - reg.register("wall_calcite", createWall(Block.Properties.of(), Blocks.CALCITE)); - reg.register("wall_amethyst", createWall(Block.Properties.of(), Blocks.AMETHYST_BLOCK)); - reg.register("wall_tuff", createWall(Block.Properties.of(), Blocks.TUFF)); - reg.register("wall_smooth_basalt", createWall(Block.Properties.of(), Blocks.SMOOTH_BASALT)); - reg.register("wall_cracked_nether_bricks", createWall(Block.Properties.of(), Blocks.CRACKED_NETHER_BRICKS)); - reg.register("wall_deepslate", createWall(Block.Properties.of(), Blocks.DEEPSLATE)); - reg.register("wall_cracked_deepslate_bricks", createWall(Block.Properties.of(), Blocks.CRACKED_DEEPSLATE_BRICKS)); - reg.register("wall_cracked_deepslate_tiles", createWall(Block.Properties.of(), Blocks.CRACKED_DEEPSLATE_TILES)); - reg.register("wall_sculk", createWall(Block.Properties.of(), Blocks.SCULK)); - reg.register("wall_mud", createWall(BlockBehaviour.Properties.copy(Blocks.DIRT), Blocks.MUD)); - reg.register("wall_packed_mud", createWall(BlockBehaviour.Properties.copy(Blocks.DIRT), Blocks.PACKED_MUD)); - reg.register("wall_ochre_froglight", createWall(Block.Properties.of().pushReaction(PushReaction.DESTROY).lightLevel(s -> 15), Blocks.OCHRE_FROGLIGHT)); - reg.register("wall_pearlescent_froglight", createWall(Block.Properties.of().pushReaction(PushReaction.DESTROY).lightLevel(s -> 15), Blocks.PEARLESCENT_FROGLIGHT)); - reg.register("wall_verdant_froglight", createWall(Block.Properties.of().pushReaction(PushReaction.DESTROY).lightLevel(s -> 15), Blocks.VERDANT_FROGLIGHT)); - reg.register("wall_reinforced_deepslate", createWall(Block.Properties.of(), Blocks.REINFORCED_DEEPSLATE)); - reg.register("wall_cherry_planks", createWall(Block.Properties.of(), Blocks.CHERRY_PLANKS)); - reg.register("wall_cherry_stripped_log", createWall(Block.Properties.of(), Blocks.STRIPPED_CHERRY_LOG)); - reg.register("wall_cherry_log", createWall(Block.Properties.of(), Blocks.CHERRY_LOG)); - reg.register("wall_bamboo_planks", createWall(Block.Properties.of(), Blocks.STRIPPED_BAMBOO_BLOCK)); - reg.register("wall_bamboo_mosaic", createWall(Block.Properties.of(), Blocks.BAMBOO_MOSAIC)); - reg.register("wall_gold", createWall(Block.Properties.of(), Blocks.GOLD_BLOCK)); - reg.register("wall_rooted_dirt", createWall(Block.Properties.of(), Blocks.ROOTED_DIRT)); - reg.register("wall_muddy_mangrove_roots", createWall(Block.Properties.of(), Blocks.MUDDY_MANGROVE_ROOTS)); - reg.register("wall_cracked_polished_blackstone_bricks", createWall(Block.Properties.of(), Blocks.CRACKED_POLISHED_BLACKSTONE_BRICKS)); - reg.register("wall_snow", createWall(Block.Properties.of(), Blocks.SNOW)); - reg.register("wall_netherrack", createWall(Block.Properties.of(), Blocks.NETHERRACK)); - reg.register("wall_coarse_dirt", createWall(Block.Properties.of(), Blocks.COARSE_DIRT)); - reg.register("wall_concrete_black", createWall(Block.Properties.of(), Blocks.BLACK_CONCRETE)); - reg.register("wall_concrete_blue", createWall(Block.Properties.of(), Blocks.BLUE_CONCRETE)); - reg.register("wall_concrete_brown", createWall(Block.Properties.of(), Blocks.BROWN_CONCRETE)); - reg.register("wall_concrete_cyan", createWall(Block.Properties.of(), Blocks.CYAN_CONCRETE)); - reg.register("wall_concrete_gray", createWall(Block.Properties.of(), Blocks.GRAY_CONCRETE)); - reg.register("wall_concrete_green", createWall(Block.Properties.of(), Blocks.GREEN_CONCRETE)); - reg.register("wall_concrete_light_blue", createWall(Block.Properties.of(), Blocks.LIGHT_BLUE_CONCRETE)); - reg.register("wall_concrete_light_gray", createWall(Block.Properties.of(), Blocks.LIGHT_GRAY_CONCRETE)); - reg.register("wall_concrete_lime", createWall(Block.Properties.of(), Blocks.LIME_CONCRETE)); - reg.register("wall_concrete_magenta", createWall(Block.Properties.of(), Blocks.MAGENTA_CONCRETE)); - reg.register("wall_concrete_orange", createWall(Block.Properties.of(), Blocks.ORANGE_CONCRETE)); - reg.register("wall_concrete_pink", createWall(Block.Properties.of(), Blocks.PINK_CONCRETE)); - reg.register("wall_concrete_purple", createWall(Block.Properties.of(), Blocks.PURPLE_CONCRETE)); - reg.register("wall_concrete_red", createWall(Block.Properties.of(), Blocks.RED_CONCRETE)); - reg.register("wall_concrete_white", createWall(Block.Properties.of(), Blocks.WHITE_CONCRETE)); - reg.register("wall_concrete_yellow", createWall(Block.Properties.of(), Blocks.YELLOW_CONCRETE)); - reg.register("wall_terracotta_black", createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); - reg.register("wall_terracotta_blue", createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); - reg.register("wall_terracotta_brown", createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); - reg.register("wall_terracotta_cyan", createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); - reg.register("wall_terracotta_gray", createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); - reg.register("wall_terracotta_green", createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); - reg.register("wall_terracotta_light_blue", createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); - reg.register("wall_terracotta_light_gray", createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); - reg.register("wall_terracotta_lime", createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); - reg.register("wall_terracotta_magenta", createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); - reg.register("wall_terracotta_orange", createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); - reg.register("wall_terracotta_pink", createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); - reg.register("wall_terracotta_purple", createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); - reg.register("wall_terracotta_red", createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); - reg.register("wall_terracotta_white", createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); - reg.register("wall_terracotta_yellow", createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); - reg.register("wall_wool_black", createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); - reg.register("wall_wool_blue", createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); - reg.register("wall_wool_brown", createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); - reg.register("wall_wool_cyan", createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); - reg.register("wall_wool_gray", createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); - reg.register("wall_wool_green", createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); - reg.register("wall_wool_light_blue", createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); - reg.register("wall_wool_light_gray", createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); - reg.register("wall_wool_lime", createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); - reg.register("wall_wool_magenta", createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); - reg.register("wall_wool_orange", createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); - reg.register("wall_wool_pink", createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); - reg.register("wall_wool_purple", createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); - reg.register("wall_wool_red", createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); - reg.register("wall_wool_white", createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); - reg.register("wall_wool_yellow", createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); - reg.register("wall_dripstone", createWall(Block.Properties.of(), Blocks.DRIPSTONE_BLOCK)); - reg.register("wall_shroomlight", createWall(Block.Properties.of().lightLevel(state -> 15), Blocks.SHROOMLIGHT)); - reg.register("wall_gilded_blackstone", createWall(Block.Properties.of(), Blocks.GILDED_BLACKSTONE)); - reg.register("wall_moss", createWall(Block.Properties.of(), Blocks.MOSS_BLOCK)); - reg.register("wall_soul_sand", createWall(Block.Properties.of().speedFactor(0.4F), Blocks.SOUL_SAND)); - reg.register("wall_soul_soil", createWall(Block.Properties.of(), Blocks.SOUL_SOIL)); - reg.register("wall_packed_ice", createWall(Block.Properties.of().friction(0.98F), Blocks.PACKED_ICE)); - reg.register("wall_blue_ice", createWall(Block.Properties.of().friction(0.989F), Blocks.BLUE_ICE)); - reg.register("wall_honeycomb", createWall(Block.Properties.of(), Blocks.HONEYCOMB_BLOCK)); - reg.register("wall_emerald", createWall(Block.Properties.of(), Blocks.EMERALD_BLOCK)); - reg.register("wall_lapis", createWall(Block.Properties.of(), Blocks.LAPIS_BLOCK)); - reg.register("wall_diamond", createWall(Block.Properties.of(), Blocks.DIAMOND_BLOCK)); - reg.register("wall_bone", createWall(Block.Properties.of(), Blocks.BONE_BLOCK)); - reg.register("wall_netherite", createWall(Block.Properties.of(), Blocks.NETHERITE_BLOCK)); - reg.register("wall_iron", createWall(Block.Properties.of(), Blocks.IRON_BLOCK)); - reg.register("wall_raw_iron", createWall(Block.Properties.of(), Blocks.RAW_IRON_BLOCK)); - reg.register("wall_raw_gold", createWall(Block.Properties.of(), Blocks.RAW_GOLD_BLOCK)); - reg.register("wall_raw_copper", createWall(Block.Properties.of(), Blocks.RAW_COPPER_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_stripped_acacia_log"), createWall(Block.Properties.of().ignitedByLava(), Blocks.STRIPPED_ACACIA_LOG)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_stripped_birch_log"), createWall(Block.Properties.of().ignitedByLava(), Blocks.STRIPPED_BIRCH_LOG)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_stripped_dark_oak_log"), createWall(Block.Properties.of().ignitedByLava(), Blocks.STRIPPED_DARK_OAK_LOG)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_stripped_jungle_log"), createWall(Block.Properties.of().ignitedByLava(), Blocks.STRIPPED_JUNGLE_LOG)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_stripped_oak_log"), createWall(Block.Properties.of().ignitedByLava(), Blocks.STRIPPED_OAK_LOG)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_stripped_spruce_log"), createWall(Block.Properties.of().ignitedByLava(), Blocks.STRIPPED_SPRUCE_LOG)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_stripped_mangrove_log"), createWall(Block.Properties.of().ignitedByLava(), Blocks.STRIPPED_MANGROVE_LOG)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_acacia_log"), createWall(Block.Properties.of().ignitedByLava(), Blocks.ACACIA_LOG)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_birch_log"), createWall(Block.Properties.of().ignitedByLava(), Blocks.BIRCH_LOG)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_dark_oak_log"), createWall(Block.Properties.of().ignitedByLava(), Blocks.DARK_OAK_LOG)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_jungle_log"), createWall(Block.Properties.of().ignitedByLava(), Blocks.JUNGLE_LOG)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_oak_log"), createWall(Block.Properties.of().ignitedByLava(), Blocks.OAK_LOG)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_spruce_log"), createWall(Block.Properties.of().ignitedByLava(), Blocks.SPRUCE_LOG)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_mangrove_log"), createWall(Block.Properties.of().ignitedByLava(), Blocks.MANGROVE_LOG)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_andesite_smooth"), createWall(Block.Properties.of(), Blocks.ANDESITE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_diorite_smooth"), createWall(Block.Properties.of(), Blocks.DIORITE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_end_stone"), createWall(Block.Properties.of(), Blocks.END_STONE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_granite_smooth"), createWall(Block.Properties.of(), Blocks.QUARTZ_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_purpur"), createWall(Block.Properties.of(), Blocks.PURPUR_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_quartz"), createWall(Block.Properties.of(), Blocks.QUARTZ_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_sandstone_red_smooth"), createWall(Block.Properties.of(), Blocks.RED_SANDSTONE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_sandstone_smooth"), createWall(Block.Properties.of(), Blocks.SANDSTONE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_stone"), createWall(Block.Properties.of(), Blocks.STONE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_stone_slab"), createWall(Block.Properties.of(), Blocks.STONE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_stonebrick_carved"), createWall(Block.Properties.of(), Blocks.STONE_BRICKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_stonebrick_cracked"), createWall(Block.Properties.of(), Blocks.STONE_BRICKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_obsidian"), createWall(Block.Properties.of(), Blocks.OBSIDIAN)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_prismarine_bricks"), createWall(Block.Properties.of(), Blocks.PRISMARINE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_dark_prismarine"), createWall(Block.Properties.of(), Blocks.DARK_PRISMARINE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_crimson"), createWall(Block.Properties.of().ignitedByLava(), Blocks.CRIMSON_STEM)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_warped"), createWall(Block.Properties.of().ignitedByLava(), Blocks.WARPED_STEM)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_crying_obsidian"), createWall(Block.Properties.of().lightLevel(state -> 10), Blocks.CRYING_OBSIDIAN)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_basalt"), createWall(Block.Properties.of(), Blocks.BASALT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_polished_basalt"), createWall(Block.Properties.of(), Blocks.POLISHED_BASALT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_lodestone"), createWall(Block.Properties.of(), Blocks.LODESTONE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_stripped_crimson"), createWall(Block.Properties.of().ignitedByLava(), Blocks.STRIPPED_CRIMSON_HYPHAE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_stripped_warped"), createWall(Block.Properties.of().ignitedByLava(), Blocks.STRIPPED_WARPED_HYPHAE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_mushroom_stem"), createWall(Block.Properties.of().ignitedByLava(), Blocks.MUSHROOM_STEM)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_red_mushroom"), createWall(Block.Properties.of().ignitedByLava(), Blocks.RED_MUSHROOM_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_brown_mushroom"), createWall(Block.Properties.of().ignitedByLava(), Blocks.BROWN_MUSHROOM_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_mushroom_polished"), createWall(Block.Properties.of().ignitedByLava(), Blocks.MUSHROOM_STEM)); // ?? + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_quartz_bricks"), createWall(Block.Properties.of(), Blocks.QUARTZ_BRICKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_magma"), createWall(Block.Properties.of().lightLevel(s -> 3), Blocks.MAGMA_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_glowstone"), createWall(Block.Properties.of().instrument(NoteBlockInstrument.SNARE).sound(SoundType.GLASS).lightLevel(s -> 15), Blocks.GLOWSTONE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_sea_lantern"), createWall(Block.Properties.of().instrument(NoteBlockInstrument.SNARE).sound(SoundType.GLASS).lightLevel(s -> 15), Blocks.SEA_LANTERN)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_glass"), createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.GLASS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_glass_white"), createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.WHITE_STAINED_GLASS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_glass_orange"), createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.ORANGE_STAINED_GLASS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_glass_magenta"), createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.MAGENTA_STAINED_GLASS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_glass_purple"), createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.PURPLE_STAINED_GLASS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_glass_blue"), createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.BLUE_STAINED_GLASS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_glass_brown"), createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.BROWN_STAINED_GLASS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_glass_red"), createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.RED_STAINED_GLASS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_glass_black"), createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.BLACK_STAINED_GLASS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_glass_cyan"), createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.CYAN_STAINED_GLASS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_glass_light_gray"), createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.LIGHT_GRAY_STAINED_GLASS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_glass_gray"), createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.GRAY_STAINED_GLASS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_glass_pink"), createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.PINK_STAINED_GLASS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_glass_lime"), createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.LIME_STAINED_GLASS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_glass_light_blue"), createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.LIGHT_BLUE_STAINED_GLASS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_glass_yellow"), createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.YELLOW_STAINED_GLASS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_glass_green"), createWall(Block.Properties.of().mapColor(MapColor.NONE).instrument(NoteBlockInstrument.HAT), Blocks.GREEN_STAINED_GLASS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_oak_planks"), createWall(Block.Properties.of().ignitedByLava(), Blocks.OAK_PLANKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_dark_oak_planks"), createWall(Block.Properties.of().ignitedByLava(), Blocks.DARK_OAK_PLANKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_acacia_planks"), createWall(Block.Properties.of().ignitedByLava(), Blocks.ACACIA_PLANKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_jungle_planks"), createWall(Block.Properties.of().ignitedByLava(), Blocks.JUNGLE_PLANKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_birch_planks"), createWall(Block.Properties.of().ignitedByLava(), Blocks.BIRCH_PLANKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_spruce_planks"), createWall(Block.Properties.of().ignitedByLava(), Blocks.SPRUCE_PLANKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_mangrove_planks"), createWall(Block.Properties.of().ignitedByLava(), Blocks.MANGROVE_PLANKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_crimson_planks"), createWall(Block.Properties.of().ignitedByLava(), Blocks.CRIMSON_PLANKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_warped_planks"), createWall(Block.Properties.of().ignitedByLava(), Blocks.WARPED_PLANKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_calcite"), createWall(Block.Properties.of(), Blocks.CALCITE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_amethyst"), createWall(Block.Properties.of(), Blocks.AMETHYST_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_tuff"), createWall(Block.Properties.of(), Blocks.TUFF)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_smooth_basalt"), createWall(Block.Properties.of(), Blocks.SMOOTH_BASALT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_cracked_nether_bricks"), createWall(Block.Properties.of(), Blocks.CRACKED_NETHER_BRICKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_deepslate"), createWall(Block.Properties.of(), Blocks.DEEPSLATE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_cracked_deepslate_bricks"), createWall(Block.Properties.of(), Blocks.CRACKED_DEEPSLATE_BRICKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_cracked_deepslate_tiles"), createWall(Block.Properties.of(), Blocks.CRACKED_DEEPSLATE_TILES)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_sculk"), createWall(Block.Properties.of(), Blocks.SCULK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_mud"), createWall(BlockBehaviour.Properties.ofFullCopy(Blocks.DIRT), Blocks.MUD)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_packed_mud"), createWall(BlockBehaviour.Properties.ofFullCopy(Blocks.DIRT), Blocks.PACKED_MUD)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_ochre_froglight"), createWall(Block.Properties.of().pushReaction(PushReaction.DESTROY).lightLevel(s -> 15), Blocks.OCHRE_FROGLIGHT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_pearlescent_froglight"), createWall(Block.Properties.of().pushReaction(PushReaction.DESTROY).lightLevel(s -> 15), Blocks.PEARLESCENT_FROGLIGHT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_verdant_froglight"), createWall(Block.Properties.of().pushReaction(PushReaction.DESTROY).lightLevel(s -> 15), Blocks.VERDANT_FROGLIGHT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_reinforced_deepslate"), createWall(Block.Properties.of(), Blocks.REINFORCED_DEEPSLATE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_cherry_planks"), createWall(Block.Properties.of(), Blocks.CHERRY_PLANKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_cherry_stripped_log"), createWall(Block.Properties.of(), Blocks.STRIPPED_CHERRY_LOG)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_cherry_log"), createWall(Block.Properties.of(), Blocks.CHERRY_LOG)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_bamboo_planks"), createWall(Block.Properties.of(), Blocks.STRIPPED_BAMBOO_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_bamboo_mosaic"), createWall(Block.Properties.of(), Blocks.BAMBOO_MOSAIC)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_gold"), createWall(Block.Properties.of(), Blocks.GOLD_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_rooted_dirt"), createWall(Block.Properties.of(), Blocks.ROOTED_DIRT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_muddy_mangrove_roots"), createWall(Block.Properties.of(), Blocks.MUDDY_MANGROVE_ROOTS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_cracked_polished_blackstone_bricks"), createWall(Block.Properties.of(), Blocks.CRACKED_POLISHED_BLACKSTONE_BRICKS)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_snow"), createWall(Block.Properties.of(), Blocks.SNOW)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_netherrack"), createWall(Block.Properties.of(), Blocks.NETHERRACK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_coarse_dirt"), createWall(Block.Properties.of(), Blocks.COARSE_DIRT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_concrete_black"), createWall(Block.Properties.of(), Blocks.BLACK_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_concrete_blue"), createWall(Block.Properties.of(), Blocks.BLUE_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_concrete_brown"), createWall(Block.Properties.of(), Blocks.BROWN_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_concrete_cyan"), createWall(Block.Properties.of(), Blocks.CYAN_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_concrete_gray"), createWall(Block.Properties.of(), Blocks.GRAY_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_concrete_green"), createWall(Block.Properties.of(), Blocks.GREEN_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_concrete_light_blue"), createWall(Block.Properties.of(), Blocks.LIGHT_BLUE_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_concrete_light_gray"), createWall(Block.Properties.of(), Blocks.LIGHT_GRAY_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_concrete_lime"), createWall(Block.Properties.of(), Blocks.LIME_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_concrete_magenta"), createWall(Block.Properties.of(), Blocks.MAGENTA_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_concrete_orange"), createWall(Block.Properties.of(), Blocks.ORANGE_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_concrete_pink"), createWall(Block.Properties.of(), Blocks.PINK_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_concrete_purple"), createWall(Block.Properties.of(), Blocks.PURPLE_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_concrete_red"), createWall(Block.Properties.of(), Blocks.RED_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_concrete_white"), createWall(Block.Properties.of(), Blocks.WHITE_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_concrete_yellow"), createWall(Block.Properties.of(), Blocks.YELLOW_CONCRETE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_terracotta_black"), createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_terracotta_blue"), createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_terracotta_brown"), createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_terracotta_cyan"), createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_terracotta_gray"), createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_terracotta_green"), createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_terracotta_light_blue"), createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_terracotta_light_gray"), createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_terracotta_lime"), createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_terracotta_magenta"), createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_terracotta_orange"), createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_terracotta_pink"), createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_terracotta_purple"), createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_terracotta_red"), createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_terracotta_white"), createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_terracotta_yellow"), createWall(Block.Properties.of(), Blocks.BLACK_TERRACOTTA)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_wool_black"), createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_wool_blue"), createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_wool_brown"), createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_wool_cyan"), createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_wool_gray"), createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_wool_green"), createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_wool_light_blue"), createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_wool_light_gray"), createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_wool_lime"), createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_wool_magenta"), createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_wool_orange"), createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_wool_pink"), createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_wool_purple"), createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_wool_red"), createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_wool_white"), createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_wool_yellow"), createWall(Block.Properties.of(), Blocks.BLACK_WOOL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_dripstone"), createWall(Block.Properties.of(), Blocks.DRIPSTONE_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_shroomlight"), createWall(Block.Properties.of().lightLevel(state -> 15), Blocks.SHROOMLIGHT)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_gilded_blackstone"), createWall(Block.Properties.of(), Blocks.GILDED_BLACKSTONE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_moss"), createWall(Block.Properties.of(), Blocks.MOSS_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_soul_sand"), createWall(Block.Properties.of().speedFactor(0.4F), Blocks.SOUL_SAND)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_soul_soil"), createWall(Block.Properties.of(), Blocks.SOUL_SOIL)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_packed_ice"), createWall(Block.Properties.of().friction(0.98F), Blocks.PACKED_ICE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_blue_ice"), createWall(Block.Properties.of().friction(0.989F), Blocks.BLUE_ICE)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_honeycomb"), createWall(Block.Properties.of(), Blocks.HONEYCOMB_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_emerald"), createWall(Block.Properties.of(), Blocks.EMERALD_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_lapis"), createWall(Block.Properties.of(), Blocks.LAPIS_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_diamond"), createWall(Block.Properties.of(), Blocks.DIAMOND_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_bone"), createWall(Block.Properties.of(), Blocks.BONE_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_netherite"), createWall(Block.Properties.of(), Blocks.NETHERITE_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_iron"), createWall(Block.Properties.of(), Blocks.IRON_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_raw_iron"), createWall(Block.Properties.of(), Blocks.RAW_IRON_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_raw_gold"), createWall(Block.Properties.of(), Blocks.RAW_GOLD_BLOCK)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "wall_raw_copper"), createWall(Block.Properties.of(), Blocks.RAW_COPPER_BLOCK)); // // GATE // WoodType def = WoodType.MANGROVE; // no important effects - reg.register("gate_nether_bricks", createGate(Blocks.NETHER_BRICKS, Block.Properties.of(), def)); - reg.register("gate_red_nether_bricks", createGate(Blocks.RED_NETHER_BRICKS, Block.Properties.of(), def)); - reg.register("gate_quartz", createGate(Blocks.QUARTZ_BLOCK, Block.Properties.of(), def)); - reg.register("gate_stone_bricks", createGate(Blocks.STONE_BRICKS, Block.Properties.of(), def)); - reg.register("gate_blackstone_bricks", createGate(Blocks.POLISHED_BLACKSTONE_BRICKS, Block.Properties.of(), def)); - reg.register("gate_bricks", createGate(Blocks.BRICKS, Block.Properties.of(), def)); - reg.register("gate_end_stone_bricks", createGate(Blocks.END_STONE_BRICKS, Block.Properties.of(), def)); - reg.register("gate_obsidian", createGate(Blocks.OBSIDIAN, Block.Properties.of(), def)); - reg.register("gate_prismarine", createGate(Blocks.PRISMARINE, Block.Properties.of(), def)); - reg.register("gate_prismarine_brick", createGate(Blocks.PRISMARINE, Block.Properties.of(), def)); - reg.register("gate_prismarine_dark", createGate(Blocks.DARK_PRISMARINE, Block.Properties.of(), def)); - reg.register("gate_purpur", createGate(Blocks.PURPUR_BLOCK, Block.Properties.of(), def)); - reg.register("gate_mud_bricks", createGate(Blocks.MUD_BRICKS, Block.Properties.of(), def)); - reg.register("gate_cobblestone", createGate(Blocks.COBBLESTONE, Block.Properties.of(), def)); - reg.register("gate_stone", createGate(Blocks.STONE, Block.Properties.of(), def)); - reg.register("gate_blackstone", createGate(Blocks.BLACKSTONE, Block.Properties.of(), def)); - reg.register("gate_sandstone", createGate(Blocks.SANDSTONE, Block.Properties.of(), def)); - reg.register("gate_red_sandstone", createGate(Blocks.RED_SANDSTONE, Block.Properties.of(), def)); - reg.register("gate_basalt", createGate(Blocks.BASALT, Block.Properties.of(), def)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "gate_nether_bricks"), createGate(Blocks.NETHER_BRICKS, Block.Properties.of(), def)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "gate_red_nether_bricks"), createGate(Blocks.RED_NETHER_BRICKS, Block.Properties.of(), def)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "gate_quartz"), createGate(Blocks.QUARTZ_BLOCK, Block.Properties.of(), def)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "gate_stone_bricks"), createGate(Blocks.STONE_BRICKS, Block.Properties.of(), def)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "gate_blackstone_bricks"), createGate(Blocks.POLISHED_BLACKSTONE_BRICKS, Block.Properties.of(), def)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "gate_bricks"), createGate(Blocks.BRICKS, Block.Properties.of(), def)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "gate_end_stone_bricks"), createGate(Blocks.END_STONE_BRICKS, Block.Properties.of(), def)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "gate_obsidian"), createGate(Blocks.OBSIDIAN, Block.Properties.of(), def)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "gate_prismarine"), createGate(Blocks.PRISMARINE, Block.Properties.of(), def)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "gate_prismarine_brick"), createGate(Blocks.PRISMARINE, Block.Properties.of(), def)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "gate_prismarine_dark"), createGate(Blocks.DARK_PRISMARINE, Block.Properties.of(), def)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "gate_purpur"), createGate(Blocks.PURPUR_BLOCK, Block.Properties.of(), def)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "gate_mud_bricks"), createGate(Blocks.MUD_BRICKS, Block.Properties.of(), def)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "gate_cobblestone"), createGate(Blocks.COBBLESTONE, Block.Properties.of(), def)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "gate_stone"), createGate(Blocks.STONE, Block.Properties.of(), def)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "gate_blackstone"), createGate(Blocks.BLACKSTONE, Block.Properties.of(), def)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "gate_sandstone"), createGate(Blocks.SANDSTONE, Block.Properties.of(), def)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "gate_red_sandstone"), createGate(Blocks.RED_SANDSTONE, Block.Properties.of(), def)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "gate_basalt"), createGate(Blocks.BASALT, Block.Properties.of(), def)); // // TRAPDOOR // BlockSetType stoneType = BlockSetType.STONE; BlockSetType ironType = BlockSetType.IRON; - var AMY = BlockSetType.register(new BlockSetType("amethyst", true, SoundType.AMETHYST, SoundEvents.AMETHYST_BLOCK_PLACE, SoundEvents.AMETHYST_BLOCK_CHIME, SoundEvents.AMETHYST_BLOCK_PLACE, SoundEvents.AMETHYST_BLOCK_CHIME, SoundEvents.METAL_PRESSURE_PLATE_CLICK_OFF, SoundEvents.METAL_PRESSURE_PLATE_CLICK_ON, SoundEvents.STONE_BUTTON_CLICK_OFF, SoundEvents.STONE_BUTTON_CLICK_ON)); - reg.register("trapdoor_stone", createTrap(Blocks.STONE, Block.Properties.of(), stoneType)); - reg.register("trapdoor_granite", createTrap(Blocks.GRANITE, Block.Properties.of(), stoneType)); - reg.register("trapdoor_andesite", createTrap(Blocks.ANDESITE, Block.Properties.of(), stoneType)); - reg.register("trapdoor_diorite", createTrap(Blocks.DIORITE, Block.Properties.of(), stoneType)); - reg.register("trapdoor_bricks", createTrap(Blocks.STONE, Block.Properties.of(), stoneType)); - reg.register("trapdoor_stone_bricks", createTrap(Blocks.STONE_BRICKS, Block.Properties.of(), stoneType)); - reg.register("trapdoor_blackstone", createTrap(Blocks.STONE_BRICKS, Block.Properties.of(), stoneType)); - reg.register("trapdoor_blackstone_bricks", createTrap(Blocks.STONE_BRICKS, Block.Properties.of(), stoneType)); - reg.register("trapdoor_basalt", createTrap(Blocks.STONE, Block.Properties.of(), stoneType)); - reg.register("trapdoor_end_stone", createTrap(Blocks.STONE, Block.Properties.of(), stoneType)); - reg.register("trapdoor_purpur", createTrap(Blocks.PURPUR_BLOCK, Block.Properties.of(), stoneType)); - reg.register("trapdoor_quartz", createTrap(Blocks.QUARTZ_BLOCK, Block.Properties.of(), stoneType)); - reg.register("trapdoor_quartz_bricks", createTrap(Blocks.QUARTZ_BRICKS, Block.Properties.of(), stoneType)); - reg.register("trapdoor_mud_bricks", createTrap(Blocks.MUD_BRICKS, Block.Properties.of(), stoneType)); - reg.register("trapdoor_amethyst", createTrap(Blocks.AMETHYST_BLOCK, Block.Properties.of(), AMY)); - reg.register("trapdoor_obsidian", createTrap(Blocks.OBSIDIAN, Block.Properties.of(), ironType)); - reg.register("trapdoor_crying_obsidian", createTrap(Blocks.CRYING_OBSIDIAN, Block.Properties.of(), ironType)); - reg.register("trapdoor_gold", createTrap(Blocks.GOLD_BLOCK, Block.Properties.of(), ironType)); - reg.register("trapdoor_diamond", createTrap(Blocks.DIAMOND_BLOCK, Block.Properties.of(), ironType)); - reg.register("trapdoor_lapis", createTrap(Blocks.DIAMOND_BLOCK, Block.Properties.of(), ironType)); - reg.register("trapdoor_emerald", createTrap(Blocks.DIAMOND_BLOCK, Block.Properties.of(), ironType)); + var AMY = BlockSetType.register(new BlockSetType("amethyst", true, false, false, BlockSetType.PressurePlateSensitivity.MOBS, SoundType.AMETHYST, SoundEvents.AMETHYST_BLOCK_PLACE, SoundEvents.AMETHYST_BLOCK_CHIME, SoundEvents.AMETHYST_BLOCK_PLACE, SoundEvents.AMETHYST_BLOCK_CHIME, SoundEvents.METAL_PRESSURE_PLATE_CLICK_OFF, SoundEvents.METAL_PRESSURE_PLATE_CLICK_ON, SoundEvents.STONE_BUTTON_CLICK_OFF, SoundEvents.STONE_BUTTON_CLICK_ON)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "trapdoor_stone"), createTrap(Blocks.STONE, Block.Properties.of(), stoneType)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "trapdoor_granite"), createTrap(Blocks.GRANITE, Block.Properties.of(), stoneType)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "trapdoor_andesite"), createTrap(Blocks.ANDESITE, Block.Properties.of(), stoneType)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "trapdoor_diorite"), createTrap(Blocks.DIORITE, Block.Properties.of(), stoneType)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "trapdoor_bricks"), createTrap(Blocks.STONE, Block.Properties.of(), stoneType)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "trapdoor_stone_bricks"), createTrap(Blocks.STONE_BRICKS, Block.Properties.of(), stoneType)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "trapdoor_blackstone"), createTrap(Blocks.STONE_BRICKS, Block.Properties.of(), stoneType)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "trapdoor_blackstone_bricks"), createTrap(Blocks.STONE_BRICKS, Block.Properties.of(), stoneType)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "trapdoor_basalt"), createTrap(Blocks.STONE, Block.Properties.of(), stoneType)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "trapdoor_end_stone"), createTrap(Blocks.STONE, Block.Properties.of(), stoneType)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "trapdoor_purpur"), createTrap(Blocks.PURPUR_BLOCK, Block.Properties.of(), stoneType)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "trapdoor_quartz"), createTrap(Blocks.QUARTZ_BLOCK, Block.Properties.of(), stoneType)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "trapdoor_quartz_bricks"), createTrap(Blocks.QUARTZ_BRICKS, Block.Properties.of(), stoneType)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "trapdoor_mud_bricks"), createTrap(Blocks.MUD_BRICKS, Block.Properties.of(), stoneType)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "trapdoor_amethyst"), createTrap(Blocks.AMETHYST_BLOCK, Block.Properties.of(), AMY)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "trapdoor_obsidian"), createTrap(Blocks.OBSIDIAN, Block.Properties.of(), ironType)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "trapdoor_crying_obsidian"), createTrap(Blocks.CRYING_OBSIDIAN, Block.Properties.of(), ironType)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "trapdoor_gold"), createTrap(Blocks.GOLD_BLOCK, Block.Properties.of(), ironType)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "trapdoor_diamond"), createTrap(Blocks.DIAMOND_BLOCK, Block.Properties.of(), ironType)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "trapdoor_lapis"), createTrap(Blocks.DIAMOND_BLOCK, Block.Properties.of(), ironType)); + reg.register(ResourceLocation.fromNamespaceAndPath(ModAbsentBD.MODID, "trapdoor_emerald"), createTrap(Blocks.DIAMOND_BLOCK, Block.Properties.of(), ironType)); }); } diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml deleted file mode 100644 index 16080707..00000000 --- a/src/main/resources/META-INF/mods.toml +++ /dev/null @@ -1,59 +0,0 @@ -# This is an example mods.toml file. It contains the data relating to the loading mods. -# There are several mandatory fields (#mandatory), and many more that are optional (#optional). -# The overall format is standard TOML format, v0.5.0. -# Note that there are a couple of TOML lists in this file. -# Find more information on toml format here: https://github.com/toml-lang/toml -# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml -modLoader="javafml" #mandatory -license="MIT" -# A version range to match for said mod loader - for regular FML @Mod it will be the forge version -loaderVersion="[26,)" #mandatory (26 is current forge version) -# A URL to refer people to when problems occur with this mod -issueTrackerURL="https://github.com/Lothrazar/AbsentByDesign/issues" #optional -# A list of mods - how many allowed here is determined by the individual mod loader -[[mods]] #mandatory -# The modid of the mod -modId="absentbydesign" #mandatory -# The version number of the mod - there's a few well known ${} variables useable here or just hardcode it -version="${mod_version}" #mandatory - # A display name for the mod -displayName="Absent By Design Mod" #mandatory -# A URL to query for updates for this mod. See the JSON update specification -updateJSONURL="https://raw.githubusercontent.com/Lothrazar/AbsentByDesign/trunk/${mc_version}/update.json" #optional -# A URL for the "homepage" for this mod, displayed in the mod UI -displayURL="https://www.curseforge.com/minecraft/mc-mods/absent-by-design" #optional -# A file name (in the root of the mod JAR) containing a logo for display -logoFile="logoFile.png" #optional -# A text field displayed in the mod UI -credits="Thanks for this example mod goes to Java" #optional -# A text field displayed in the mod UI -authors="Lothrazar" #optional -# The description text for the mod (multi line!) (#mandatory) -description=''' -Adds slabs, stairs, walls fences, trapdoors based on existing blocks. Texture pack compatible. -''' -# A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional. -[[dependencies.absentbydesign]] #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="[47,)" #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" -# Here's another dependency -[[dependencies.absentbydesign]] - modId="minecraft" - mandatory=true - versionRange="[${mc_version},)" - ordering="NONE" - side="BOTH" -[[dependencies.absentbydesign]] - modId="flib" - mandatory=true - versionRange="[0.0.5,)" - ordering="NONE" - side="BOTH" \ No newline at end of file diff --git a/src/main/resources/assets/absentbydesign/blockstates/slab_glass.json b/src/main/resources/assets/absentbydesign/blockstates/slab_glass.json index e53cd86b..d19fe8f6 100644 --- a/src/main/resources/assets/absentbydesign/blockstates/slab_glass.json +++ b/src/main/resources/assets/absentbydesign/blockstates/slab_glass.json @@ -2,6 +2,6 @@ "variants": { "type=bottom": { "model": "absentbydesign:block/slab_glass" }, "type=top": { "model": "absentbydesign:block/slab_glass_upper" }, - "type=double": { "model": "block/glass" } + "type=double": { "model": "absentbydesign:block/slab_glass_double" } } } diff --git a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_black.json b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_black.json index a434d96e..9a5f4c69 100644 --- a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_black.json +++ b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_black.json @@ -2,6 +2,6 @@ "variants": { "type=bottom": { "model": "absentbydesign:block/slab_glass_black" }, "type=top": { "model": "absentbydesign:block/slab_glass_black_upper" }, - "type=double": { "model": "block/black_stained_glass" } + "type=double": { "model": "absentbydesign:block/slab_glass_black_double" } } } diff --git a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_blue.json b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_blue.json index e07d07fc..407237c9 100644 --- a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_blue.json +++ b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_blue.json @@ -2,6 +2,6 @@ "variants": { "type=bottom": { "model": "absentbydesign:block/slab_glass_blue" }, "type=top": { "model": "absentbydesign:block/slab_glass_blue_upper" }, - "type=double": { "model": "block/blue_stained_glass" } + "type=double": { "model": "absentbydesign:block/slab_glass_blue_double" } } } diff --git a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_brown.json b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_brown.json index 3d0acdea..7b9da3b0 100644 --- a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_brown.json +++ b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_brown.json @@ -2,6 +2,6 @@ "variants": { "type=bottom": { "model": "absentbydesign:block/slab_glass_brown" }, "type=top": { "model": "absentbydesign:block/slab_glass_brown_upper" }, - "type=double": { "model": "block/brown_stained_glass" } + "type=double": { "model": "absentbydesign:block/slab_glass_brown_double" } } } diff --git a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_cyan.json b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_cyan.json index 7f859d77..d273787d 100644 --- a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_cyan.json +++ b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_cyan.json @@ -2,6 +2,6 @@ "variants": { "type=bottom": { "model": "absentbydesign:block/slab_glass_cyan" }, "type=top": { "model": "absentbydesign:block/slab_glass_cyan_upper" }, - "type=double": { "model": "block/cyan_stained_glass" } + "type=double": { "model": "absentbydesign:block/slab_glass_cyan_double" } } } diff --git a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_gray.json b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_gray.json index abfafab8..8c2cbecc 100644 --- a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_gray.json +++ b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_gray.json @@ -2,6 +2,6 @@ "variants": { "type=bottom": { "model": "absentbydesign:block/slab_glass_gray" }, "type=top": { "model": "absentbydesign:block/slab_glass_gray_upper" }, - "type=double": { "model": "block/gray_stained_glass" } + "type=double": { "model": "absentbydesign:block/slab_glass_gray_double" } } } diff --git a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_green.json b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_green.json index be73a6e0..796dcb89 100644 --- a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_green.json +++ b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_green.json @@ -2,6 +2,6 @@ "variants": { "type=bottom": { "model": "absentbydesign:block/slab_glass_green" }, "type=top": { "model": "absentbydesign:block/slab_glass_green_upper" }, - "type=double": { "model": "block/green_stained_glass" } + "type=double": { "model": "absentbydesign:block/slab_glass_green_double" } } } diff --git a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_light_blue.json b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_light_blue.json index 853d19dd..53e9fcaa 100644 --- a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_light_blue.json +++ b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_light_blue.json @@ -2,6 +2,6 @@ "variants": { "type=bottom": { "model": "absentbydesign:block/slab_glass_light_blue" }, "type=top": { "model": "absentbydesign:block/slab_glass_light_blue_upper" }, - "type=double": { "model": "block/light_blue_stained_glass" } + "type=double": { "model": "absentbydesign:block/slab_glass_light_blue_double" } } } diff --git a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_light_gray.json b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_light_gray.json index d6d6f885..63c3cabb 100644 --- a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_light_gray.json +++ b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_light_gray.json @@ -2,6 +2,6 @@ "variants": { "type=bottom": { "model": "absentbydesign:block/slab_glass_light_gray" }, "type=top": { "model": "absentbydesign:block/slab_glass_light_gray_upper" }, - "type=double": { "model": "block/light_gray_stained_glass" } + "type=double": { "model": "absentbydesign:block/slab_glass_light_gray_double" } } } diff --git a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_lime.json b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_lime.json index 5a6ea3b3..417f1651 100644 --- a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_lime.json +++ b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_lime.json @@ -2,6 +2,6 @@ "variants": { "type=bottom": { "model": "absentbydesign:block/slab_glass_lime" }, "type=top": { "model": "absentbydesign:block/slab_glass_lime_upper" }, - "type=double": { "model": "block/lime_stained_glass" } + "type=double": { "model": "absentbydesign:block/slab_glass_lime_double" } } } diff --git a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_magenta.json b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_magenta.json index 182fc4a9..910ef682 100644 --- a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_magenta.json +++ b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_magenta.json @@ -2,6 +2,6 @@ "variants": { "type=bottom": { "model": "absentbydesign:block/slab_glass_magenta" }, "type=top": { "model": "absentbydesign:block/slab_glass_magenta_upper" }, - "type=double": { "model": "block/magenta_stained_glass" } + "type=double": { "model": "absentbydesign:block/slab_glass_magenta_double" } } } diff --git a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_orange.json b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_orange.json index b297cdbe..c76f5bf1 100644 --- a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_orange.json +++ b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_orange.json @@ -2,6 +2,6 @@ "variants": { "type=bottom": { "model": "absentbydesign:block/slab_glass_orange" }, "type=top": { "model": "absentbydesign:block/slab_glass_orange_upper" }, - "type=double": { "model": "block/orange_stained_glass" } + "type=double": { "model": "absentbydesign:block/slab_glass_orange_double" } } } diff --git a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_pink.json b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_pink.json index c510584b..fb6f42dc 100644 --- a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_pink.json +++ b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_pink.json @@ -2,6 +2,6 @@ "variants": { "type=bottom": { "model": "absentbydesign:block/slab_glass_pink" }, "type=top": { "model": "absentbydesign:block/slab_glass_pink_upper" }, - "type=double": { "model": "block/pink_stained_glass" } + "type=double": { "model": "absentbydesign:block/slab_glass_pink_double" } } } diff --git a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_purple.json b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_purple.json index 05e6cff2..ef646fe9 100644 --- a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_purple.json +++ b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_purple.json @@ -2,6 +2,6 @@ "variants": { "type=bottom": { "model": "absentbydesign:block/slab_glass_purple" }, "type=top": { "model": "absentbydesign:block/slab_glass_purple_upper" }, - "type=double": { "model": "block/purple_stained_glass" } + "type=double": { "model": "absentbydesign:block/slab_glass_purple_double" } } } diff --git a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_red.json b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_red.json index 4b33f795..4c8ccf8c 100644 --- a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_red.json +++ b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_red.json @@ -2,6 +2,6 @@ "variants": { "type=bottom": { "model": "absentbydesign:block/slab_glass_red" }, "type=top": { "model": "absentbydesign:block/slab_glass_red_upper" }, - "type=double": { "model": "minecraft:block/red_stained_glass" } + "type=double": { "model": "absentbydesign:block/slab_glass_red_double" } } } diff --git a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_white.json b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_white.json index 55dac2e8..03383c2c 100644 --- a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_white.json +++ b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_white.json @@ -2,6 +2,6 @@ "variants": { "type=bottom": { "model": "absentbydesign:block/slab_glass_white" }, "type=top": { "model": "absentbydesign:block/slab_glass_white_upper" }, - "type=double": { "model": "minecraft:block/white_stained_glass" } + "type=double": { "model": "absentbydesign:block/slab_glass_white_double" } } } diff --git a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_yellow.json b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_yellow.json index bb3fdf23..d68f3f55 100644 --- a/src/main/resources/assets/absentbydesign/blockstates/slab_glass_yellow.json +++ b/src/main/resources/assets/absentbydesign/blockstates/slab_glass_yellow.json @@ -2,6 +2,6 @@ "variants": { "type=bottom": { "model": "absentbydesign:block/slab_glass_yellow" }, "type=top": { "model": "absentbydesign:block/slab_glass_yellow_upper" }, - "type=double": { "model": "block/yellow_stained_glass" } + "type=double": { "model": "absentbydesign:block/slab_glass_yellow_double" } } } diff --git a/src/main/resources/assets/absentbydesign/models/block/slab_glass_black_double.json b/src/main/resources/assets/absentbydesign/models/block/slab_glass_black_double.json new file mode 100644 index 00000000..d894f84a --- /dev/null +++ b/src/main/resources/assets/absentbydesign/models/block/slab_glass_black_double.json @@ -0,0 +1,7 @@ +{ + "parent": "block/cube_all", + "render_type": "translucent", + "textures": { + "all": "block/black_stained_glass" + } +} diff --git a/src/main/resources/assets/absentbydesign/models/block/slab_glass_blue_double.json b/src/main/resources/assets/absentbydesign/models/block/slab_glass_blue_double.json new file mode 100644 index 00000000..9d6068cf --- /dev/null +++ b/src/main/resources/assets/absentbydesign/models/block/slab_glass_blue_double.json @@ -0,0 +1,7 @@ +{ + "parent": "block/cube_all", + "render_type": "translucent", + "textures": { + "all": "block/blue_stained_glass" + } +} diff --git a/src/main/resources/assets/absentbydesign/models/block/slab_glass_brown_double.json b/src/main/resources/assets/absentbydesign/models/block/slab_glass_brown_double.json new file mode 100644 index 00000000..9fa48a40 --- /dev/null +++ b/src/main/resources/assets/absentbydesign/models/block/slab_glass_brown_double.json @@ -0,0 +1,7 @@ +{ + "parent": "block/cube_all", + "render_type": "translucent", + "textures": { + "all": "block/brown_stained_glass" + } +} diff --git a/src/main/resources/assets/absentbydesign/models/block/slab_glass_cyan_double.json b/src/main/resources/assets/absentbydesign/models/block/slab_glass_cyan_double.json new file mode 100644 index 00000000..abb9454d --- /dev/null +++ b/src/main/resources/assets/absentbydesign/models/block/slab_glass_cyan_double.json @@ -0,0 +1,7 @@ +{ + "parent": "block/cube_all", + "render_type": "translucent", + "textures": { + "all": "block/cyan_stained_glass" + } +} diff --git a/src/main/resources/assets/absentbydesign/models/block/slab_glass_double.json b/src/main/resources/assets/absentbydesign/models/block/slab_glass_double.json new file mode 100644 index 00000000..e1c7fa7b --- /dev/null +++ b/src/main/resources/assets/absentbydesign/models/block/slab_glass_double.json @@ -0,0 +1,7 @@ +{ + "parent": "block/cube_all", + "render_type": "cutout", + "textures": { + "all": "block/glass" + } +} diff --git a/src/main/resources/assets/absentbydesign/models/block/slab_glass_gray_double.json b/src/main/resources/assets/absentbydesign/models/block/slab_glass_gray_double.json new file mode 100644 index 00000000..f2093cb1 --- /dev/null +++ b/src/main/resources/assets/absentbydesign/models/block/slab_glass_gray_double.json @@ -0,0 +1,7 @@ +{ + "parent": "block/cube_all", + "render_type": "translucent", + "textures": { + "all": "block/gray_stained_glass" + } +} diff --git a/src/main/resources/assets/absentbydesign/models/block/slab_glass_green_double.json b/src/main/resources/assets/absentbydesign/models/block/slab_glass_green_double.json new file mode 100644 index 00000000..cca8e9a4 --- /dev/null +++ b/src/main/resources/assets/absentbydesign/models/block/slab_glass_green_double.json @@ -0,0 +1,7 @@ +{ + "parent": "block/cube_all", + "render_type": "translucent", + "textures": { + "all": "block/green_stained_glass" + } +} diff --git a/src/main/resources/assets/absentbydesign/models/block/slab_glass_light_blue_double.json b/src/main/resources/assets/absentbydesign/models/block/slab_glass_light_blue_double.json new file mode 100644 index 00000000..91616ab0 --- /dev/null +++ b/src/main/resources/assets/absentbydesign/models/block/slab_glass_light_blue_double.json @@ -0,0 +1,7 @@ +{ + "parent": "block/cube_all", + "render_type": "translucent", + "textures": { + "all": "block/light_blue_stained_glass" + } +} diff --git a/src/main/resources/assets/absentbydesign/models/block/slab_glass_light_gray_double.json b/src/main/resources/assets/absentbydesign/models/block/slab_glass_light_gray_double.json new file mode 100644 index 00000000..ea296853 --- /dev/null +++ b/src/main/resources/assets/absentbydesign/models/block/slab_glass_light_gray_double.json @@ -0,0 +1,7 @@ +{ + "parent": "block/cube_all", + "render_type": "translucent", + "textures": { + "all": "block/light_gray_stained_glass" + } +} diff --git a/src/main/resources/assets/absentbydesign/models/block/slab_glass_lime_double.json b/src/main/resources/assets/absentbydesign/models/block/slab_glass_lime_double.json new file mode 100644 index 00000000..a79ea068 --- /dev/null +++ b/src/main/resources/assets/absentbydesign/models/block/slab_glass_lime_double.json @@ -0,0 +1,7 @@ +{ + "parent": "block/cube_all", + "render_type": "translucent", + "textures": { + "all": "block/lime_stained_glass" + } +} diff --git a/src/main/resources/assets/absentbydesign/models/block/slab_glass_magenta_double.json b/src/main/resources/assets/absentbydesign/models/block/slab_glass_magenta_double.json new file mode 100644 index 00000000..548c210d --- /dev/null +++ b/src/main/resources/assets/absentbydesign/models/block/slab_glass_magenta_double.json @@ -0,0 +1,7 @@ +{ + "parent": "block/cube_all", + "render_type": "translucent", + "textures": { + "all": "block/magenta_stained_glass" + } +} diff --git a/src/main/resources/assets/absentbydesign/models/block/slab_glass_orange_double.json b/src/main/resources/assets/absentbydesign/models/block/slab_glass_orange_double.json new file mode 100644 index 00000000..e789b4fd --- /dev/null +++ b/src/main/resources/assets/absentbydesign/models/block/slab_glass_orange_double.json @@ -0,0 +1,7 @@ +{ + "parent": "block/cube_all", + "render_type": "translucent", + "textures": { + "all": "block/orange_stained_glass" + } +} diff --git a/src/main/resources/assets/absentbydesign/models/block/slab_glass_pink_double.json b/src/main/resources/assets/absentbydesign/models/block/slab_glass_pink_double.json new file mode 100644 index 00000000..793dac70 --- /dev/null +++ b/src/main/resources/assets/absentbydesign/models/block/slab_glass_pink_double.json @@ -0,0 +1,7 @@ +{ + "parent": "block/cube_all", + "render_type": "translucent", + "textures": { + "all": "block/pink_stained_glass" + } +} diff --git a/src/main/resources/assets/absentbydesign/models/block/slab_glass_purple_double.json b/src/main/resources/assets/absentbydesign/models/block/slab_glass_purple_double.json new file mode 100644 index 00000000..a2390932 --- /dev/null +++ b/src/main/resources/assets/absentbydesign/models/block/slab_glass_purple_double.json @@ -0,0 +1,7 @@ +{ + "parent": "block/cube_all", + "render_type": "translucent", + "textures": { + "all": "block/purple_stained_glass" + } +} diff --git a/src/main/resources/assets/absentbydesign/models/block/slab_glass_red_double.json b/src/main/resources/assets/absentbydesign/models/block/slab_glass_red_double.json new file mode 100644 index 00000000..4c2d6fe4 --- /dev/null +++ b/src/main/resources/assets/absentbydesign/models/block/slab_glass_red_double.json @@ -0,0 +1,7 @@ +{ + "parent": "block/cube_all", + "render_type": "translucent", + "textures": { + "all": "block/red_stained_glass" + } +} diff --git a/src/main/resources/assets/absentbydesign/models/block/slab_glass_white_double.json b/src/main/resources/assets/absentbydesign/models/block/slab_glass_white_double.json new file mode 100644 index 00000000..ccf5fd70 --- /dev/null +++ b/src/main/resources/assets/absentbydesign/models/block/slab_glass_white_double.json @@ -0,0 +1,7 @@ +{ + "parent": "block/cube_all", + "render_type": "translucent", + "textures": { + "all": "block/white_stained_glass" + } +} diff --git a/src/main/resources/assets/absentbydesign/models/block/slab_glass_yellow_double.json b/src/main/resources/assets/absentbydesign/models/block/slab_glass_yellow_double.json new file mode 100644 index 00000000..9efb0c25 --- /dev/null +++ b/src/main/resources/assets/absentbydesign/models/block/slab_glass_yellow_double.json @@ -0,0 +1,7 @@ +{ + "parent": "block/cube_all", + "render_type": "translucent", + "textures": { + "all": "block/yellow_stained_glass" + } +} diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/fence_cherry.json b/src/main/resources/data/absentbydesign/loot_table/blocks/fence_cherry.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/fence_cherry.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/fence_cherry.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/fence_crimson.json b/src/main/resources/data/absentbydesign/loot_table/blocks/fence_crimson.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/fence_crimson.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/fence_crimson.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/fence_log_acacia.json b/src/main/resources/data/absentbydesign/loot_table/blocks/fence_log_acacia.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/fence_log_acacia.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/fence_log_acacia.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/fence_log_birch.json b/src/main/resources/data/absentbydesign/loot_table/blocks/fence_log_birch.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/fence_log_birch.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/fence_log_birch.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/fence_log_darkoak.json b/src/main/resources/data/absentbydesign/loot_table/blocks/fence_log_darkoak.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/fence_log_darkoak.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/fence_log_darkoak.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/fence_log_jungle.json b/src/main/resources/data/absentbydesign/loot_table/blocks/fence_log_jungle.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/fence_log_jungle.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/fence_log_jungle.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/fence_log_oak.json b/src/main/resources/data/absentbydesign/loot_table/blocks/fence_log_oak.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/fence_log_oak.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/fence_log_oak.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/fence_log_spruce.json b/src/main/resources/data/absentbydesign/loot_table/blocks/fence_log_spruce.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/fence_log_spruce.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/fence_log_spruce.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/fence_mangrove.json b/src/main/resources/data/absentbydesign/loot_table/blocks/fence_mangrove.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/fence_mangrove.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/fence_mangrove.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/fence_obsidian.json b/src/main/resources/data/absentbydesign/loot_table/blocks/fence_obsidian.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/fence_obsidian.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/fence_obsidian.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/fence_quartz.json b/src/main/resources/data/absentbydesign/loot_table/blocks/fence_quartz.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/fence_quartz.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/fence_quartz.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/fence_red_netherbrick.json b/src/main/resources/data/absentbydesign/loot_table/blocks/fence_red_netherbrick.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/fence_red_netherbrick.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/fence_red_netherbrick.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/fence_warped.json b/src/main/resources/data/absentbydesign/loot_table/blocks/fence_warped.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/fence_warped.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/fence_warped.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/gate_basalt.json b/src/main/resources/data/absentbydesign/loot_table/blocks/gate_basalt.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/gate_basalt.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/gate_basalt.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/gate_blackstone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/gate_blackstone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/gate_blackstone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/gate_blackstone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/gate_blackstone_bricks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/gate_blackstone_bricks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/gate_blackstone_bricks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/gate_blackstone_bricks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/gate_bricks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/gate_bricks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/gate_bricks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/gate_bricks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/gate_cobblestone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/gate_cobblestone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/gate_cobblestone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/gate_cobblestone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/gate_end_stone_bricks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/gate_end_stone_bricks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/gate_end_stone_bricks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/gate_end_stone_bricks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/gate_mud_bricks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/gate_mud_bricks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/gate_mud_bricks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/gate_mud_bricks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/gate_nether_bricks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/gate_nether_bricks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/gate_nether_bricks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/gate_nether_bricks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/gate_obsidian.json b/src/main/resources/data/absentbydesign/loot_table/blocks/gate_obsidian.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/gate_obsidian.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/gate_obsidian.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/gate_prismarine.json b/src/main/resources/data/absentbydesign/loot_table/blocks/gate_prismarine.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/gate_prismarine.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/gate_prismarine.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/gate_prismarine_brick.json b/src/main/resources/data/absentbydesign/loot_table/blocks/gate_prismarine_brick.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/gate_prismarine_brick.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/gate_prismarine_brick.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/gate_prismarine_dark.json b/src/main/resources/data/absentbydesign/loot_table/blocks/gate_prismarine_dark.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/gate_prismarine_dark.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/gate_prismarine_dark.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/gate_purpur.json b/src/main/resources/data/absentbydesign/loot_table/blocks/gate_purpur.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/gate_purpur.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/gate_purpur.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/gate_quartz.json b/src/main/resources/data/absentbydesign/loot_table/blocks/gate_quartz.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/gate_quartz.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/gate_quartz.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/gate_red_nether_bricks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/gate_red_nether_bricks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/gate_red_nether_bricks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/gate_red_nether_bricks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/gate_red_sandstone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/gate_red_sandstone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/gate_red_sandstone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/gate_red_sandstone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/gate_sandstone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/gate_sandstone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/gate_sandstone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/gate_sandstone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/gate_stone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/gate_stone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/gate_stone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/gate_stone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/gate_stone_bricks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/gate_stone_bricks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/gate_stone_bricks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/gate_stone_bricks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_amethyst.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_amethyst.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_amethyst.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_amethyst.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_basalt.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_basalt.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_basalt.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_basalt.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_blue_ice.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_blue_ice.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_blue_ice.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_blue_ice.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_bone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_bone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_bone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_bone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_bricks_cracked.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_bricks_cracked.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_bricks_cracked.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_bricks_cracked.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_brown_mushroom.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_brown_mushroom.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_brown_mushroom.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_brown_mushroom.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_calcite.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_calcite.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_calcite.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_calcite.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_coarse_dirt.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_coarse_dirt.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_coarse_dirt.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_coarse_dirt.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_black.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_black.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_black.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_black.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_blue.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_blue.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_blue.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_blue.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_brown.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_brown.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_brown.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_brown.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_cyan.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_cyan.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_cyan.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_cyan.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_gray.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_gray.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_gray.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_gray.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_green.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_green.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_green.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_green.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_light_blue.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_light_blue.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_light_blue.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_light_blue.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_lime.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_lime.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_lime.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_lime.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_magenta.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_magenta.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_magenta.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_magenta.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_orange.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_orange.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_orange.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_orange.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_pink.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_pink.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_pink.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_pink.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_purple.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_purple.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_purple.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_purple.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_red.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_red.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_red.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_red.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_silver.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_silver.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_silver.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_silver.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_white.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_white.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_white.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_white.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_yellow.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_yellow.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_concrete_yellow.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_concrete_yellow.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_cracked_deepslate_bricks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_cracked_deepslate_bricks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_cracked_deepslate_bricks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_cracked_deepslate_bricks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_cracked_deepslate_tiles.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_cracked_deepslate_tiles.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_cracked_deepslate_tiles.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_cracked_deepslate_tiles.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_cracked_nether_bricks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_cracked_nether_bricks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_cracked_nether_bricks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_cracked_nether_bricks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_cracked_polished_blackstone_bricks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_cracked_polished_blackstone_bricks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_cracked_polished_blackstone_bricks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_cracked_polished_blackstone_bricks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_crying_obsidian.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_crying_obsidian.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_crying_obsidian.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_crying_obsidian.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_deepslate.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_deepslate.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_deepslate.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_deepslate.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_diamond.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_diamond.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_diamond.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_diamond.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_dripstone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_dripstone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_dripstone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_dripstone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_emerald.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_emerald.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_emerald.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_emerald.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_end_stone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_end_stone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_end_stone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_end_stone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_gilded_blackstone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_gilded_blackstone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_gilded_blackstone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_gilded_blackstone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_black.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_black.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_black.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_black.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_blue.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_blue.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_blue.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_blue.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_brown.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_brown.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_brown.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_brown.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_cyan.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_cyan.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_cyan.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_cyan.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_gray.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_gray.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_gray.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_gray.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_green.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_green.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_green.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_green.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_light_blue.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_light_blue.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_light_blue.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_light_blue.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_light_gray.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_light_gray.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_light_gray.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_light_gray.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_lime.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_lime.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_lime.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_lime.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_magenta.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_magenta.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_magenta.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_magenta.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_orange.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_orange.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_orange.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_orange.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_pink.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_pink.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_pink.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_pink.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_purple.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_purple.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_purple.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_purple.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_red.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_red.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_red.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_red.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_white.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_white.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_white.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_white.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_yellow.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_yellow.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glass_yellow.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_glass_yellow.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glowstone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_glowstone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_glowstone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_glowstone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_gold.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_gold.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_gold.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_gold.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_honeycomb.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_honeycomb.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_honeycomb.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_honeycomb.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_iron.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_iron.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_iron.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_iron.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_lapis.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_lapis.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_lapis.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_lapis.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_lodestone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_lodestone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_lodestone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_lodestone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_magma.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_magma.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_magma.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_magma.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_moss.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_moss.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_moss.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_moss.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_mud.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_mud.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_mud.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_mud.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_muddy_mangrove_roots.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_muddy_mangrove_roots.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_muddy_mangrove_roots.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_muddy_mangrove_roots.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_mushroom_polished.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_mushroom_polished.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_mushroom_polished.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_mushroom_polished.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_mushroom_stem.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_mushroom_stem.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_mushroom_stem.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_mushroom_stem.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_netherite.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_netherite.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_netherite.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_netherite.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_netherrack.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_netherrack.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_netherrack.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_netherrack.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_obsidian.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_obsidian.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_obsidian.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_obsidian.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_ochre_froglight.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_ochre_froglight.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_ochre_froglight.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_ochre_froglight.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_packed_ice.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_packed_ice.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_packed_ice.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_packed_ice.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_packed_mud.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_packed_mud.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_packed_mud.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_packed_mud.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_pearlescent_froglight.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_pearlescent_froglight.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_pearlescent_froglight.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_pearlescent_froglight.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_polished_basalt.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_polished_basalt.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_polished_basalt.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_polished_basalt.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_quartz_bricks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_quartz_bricks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_quartz_bricks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_quartz_bricks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_raw_copper.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_raw_copper.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_raw_copper.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_raw_copper.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_raw_gold.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_raw_gold.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_raw_gold.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_raw_gold.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_raw_iron.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_raw_iron.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_raw_iron.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_raw_iron.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_red_mushroom.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_red_mushroom.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_red_mushroom.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_red_mushroom.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_reinforced_deepslate.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_reinforced_deepslate.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_reinforced_deepslate.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_reinforced_deepslate.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_rooted_dirt.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_rooted_dirt.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_rooted_dirt.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_rooted_dirt.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_sculk.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_sculk.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_sculk.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_sculk.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_sea_lantern.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_sea_lantern.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_sea_lantern.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_sea_lantern.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_shroomlight.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_shroomlight.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_shroomlight.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_shroomlight.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_smooth_basalt.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_smooth_basalt.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_smooth_basalt.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_smooth_basalt.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_snow.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_snow.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_snow.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_snow.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_soul_sand.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_soul_sand.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_soul_sand.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_soul_sand.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_soul_soil.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_soul_soil.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_soul_soil.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_soul_soil.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_black.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_black.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_black.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_black.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_blue.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_blue.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_blue.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_blue.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_brown.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_brown.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_brown.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_brown.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_cyan.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_cyan.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_cyan.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_cyan.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_gray.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_gray.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_gray.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_gray.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_green.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_green.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_green.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_green.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_light_blue.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_light_blue.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_light_blue.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_light_blue.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_light_gray.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_light_gray.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_light_gray.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_light_gray.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_lime.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_lime.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_lime.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_lime.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_magenta.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_magenta.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_magenta.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_magenta.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_orange.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_orange.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_orange.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_orange.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_pink.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_pink.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_pink.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_pink.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_purple.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_purple.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_purple.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_purple.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_red.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_red.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_red.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_red.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_white.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_white.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_white.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_white.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_yellow.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_yellow.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_terracotta_yellow.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_terracotta_yellow.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_tuff.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_tuff.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_tuff.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_tuff.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_verdant_froglight.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_verdant_froglight.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_verdant_froglight.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_verdant_froglight.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_black.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_black.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_black.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_black.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_blue.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_blue.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_blue.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_blue.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_brown.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_brown.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_brown.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_brown.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_cyan.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_cyan.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_cyan.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_cyan.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_gray.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_gray.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_gray.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_gray.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_green.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_green.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_green.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_green.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_light_blue.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_light_blue.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_light_blue.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_light_blue.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_lime.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_lime.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_lime.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_lime.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_magenta.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_magenta.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_magenta.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_magenta.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_orange.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_orange.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_orange.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_orange.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_pink.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_pink.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_pink.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_pink.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_purple.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_purple.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_purple.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_purple.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_red.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_red.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_red.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_red.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_silver.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_silver.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_silver.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_silver.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_white.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_white.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_white.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_white.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_yellow.json b/src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_yellow.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/slab_wool_yellow.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/slab_wool_yellow.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_amethyst.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_amethyst.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_amethyst.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_amethyst.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_basalt.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_basalt.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_basalt.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_basalt.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_blue_ice.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_blue_ice.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_blue_ice.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_blue_ice.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_bone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_bone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_bone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_bone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_bricks_cracked.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_bricks_cracked.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_bricks_cracked.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_bricks_cracked.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_brown_mushroom.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_brown_mushroom.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_brown_mushroom.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_brown_mushroom.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_calcite.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_calcite.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_calcite.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_calcite.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_coarse_dirt.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_coarse_dirt.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_coarse_dirt.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_coarse_dirt.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_black.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_black.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_black.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_black.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_blue.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_blue.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_blue.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_blue.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_brown.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_brown.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_brown.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_brown.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_cyan.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_cyan.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_cyan.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_cyan.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_gray.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_gray.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_gray.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_gray.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_green.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_green.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_green.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_green.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_light_blue.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_light_blue.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_light_blue.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_light_blue.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_lime.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_lime.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_lime.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_lime.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_magenta.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_magenta.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_magenta.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_magenta.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_orange.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_orange.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_orange.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_orange.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_pink.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_pink.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_pink.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_pink.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_purple.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_purple.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_purple.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_purple.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_red.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_red.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_red.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_red.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_silver.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_silver.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_silver.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_silver.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_white.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_white.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_white.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_white.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_yellow.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_yellow.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_concrete_yellow.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_concrete_yellow.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_cracked_deepslate_bricks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_cracked_deepslate_bricks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_cracked_deepslate_bricks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_cracked_deepslate_bricks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_cracked_deepslate_tiles.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_cracked_deepslate_tiles.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_cracked_deepslate_tiles.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_cracked_deepslate_tiles.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_cracked_nether_bricks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_cracked_nether_bricks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_cracked_nether_bricks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_cracked_nether_bricks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_cracked_polished_blackstone_bricks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_cracked_polished_blackstone_bricks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_cracked_polished_blackstone_bricks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_cracked_polished_blackstone_bricks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_crying_obsidian.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_crying_obsidian.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_crying_obsidian.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_crying_obsidian.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_deepslate.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_deepslate.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_deepslate.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_deepslate.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_diamond.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_diamond.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_diamond.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_diamond.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_dripstone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_dripstone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_dripstone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_dripstone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_emerald.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_emerald.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_emerald.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_emerald.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_end_stone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_end_stone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_end_stone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_end_stone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_gilded_blackstone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_gilded_blackstone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_gilded_blackstone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_gilded_blackstone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_black.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_black.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_black.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_black.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_blue.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_blue.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_blue.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_blue.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_brown.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_brown.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_brown.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_brown.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_cyan.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_cyan.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_cyan.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_cyan.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_gray.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_gray.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_gray.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_gray.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_green.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_green.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_green.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_green.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_light_blue.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_light_blue.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_light_blue.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_light_blue.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_light_gray.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_light_gray.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_light_gray.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_light_gray.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_lime.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_lime.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_lime.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_lime.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_magenta.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_magenta.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_magenta.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_magenta.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_orange.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_orange.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_orange.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_orange.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_pink.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_pink.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_pink.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_pink.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_purple.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_purple.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_purple.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_purple.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_red.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_red.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_red.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_red.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_white.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_white.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_white.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_white.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_yellow.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_yellow.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glass_yellow.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glass_yellow.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glowstone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glowstone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_glowstone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_glowstone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_gold.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_gold.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_gold.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_gold.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_honeycomb.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_honeycomb.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_honeycomb.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_honeycomb.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_iron.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_iron.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_iron.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_iron.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_lapis.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_lapis.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_lapis.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_lapis.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_lodestone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_lodestone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_lodestone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_lodestone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_magma.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_magma.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_magma.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_magma.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_moss.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_moss.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_moss.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_moss.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_mud.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_mud.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_mud.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_mud.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_muddy_mangrove_roots.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_muddy_mangrove_roots.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_muddy_mangrove_roots.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_muddy_mangrove_roots.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_mushroom_polished.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_mushroom_polished.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_mushroom_polished.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_mushroom_polished.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_mushroom_stem.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_mushroom_stem.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_mushroom_stem.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_mushroom_stem.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_netherite.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_netherite.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_netherite.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_netherite.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_netherrack.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_netherrack.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_netherrack.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_netherrack.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_obsidian.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_obsidian.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_obsidian.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_obsidian.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_ochre_froglight.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_ochre_froglight.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_ochre_froglight.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_ochre_froglight.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_packed_ice.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_packed_ice.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_packed_ice.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_packed_ice.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_packed_mud.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_packed_mud.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_packed_mud.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_packed_mud.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_pearlescent_froglight.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_pearlescent_froglight.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_pearlescent_froglight.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_pearlescent_froglight.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_polished_basalt.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_polished_basalt.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_polished_basalt.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_polished_basalt.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_quartz_bricks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_quartz_bricks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_quartz_bricks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_quartz_bricks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_raw_copper.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_raw_copper.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_raw_copper.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_raw_copper.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_raw_gold.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_raw_gold.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_raw_gold.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_raw_gold.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_raw_iron.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_raw_iron.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_raw_iron.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_raw_iron.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_red_mushroom.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_red_mushroom.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_red_mushroom.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_red_mushroom.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_reinforced_deepslate.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_reinforced_deepslate.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_reinforced_deepslate.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_reinforced_deepslate.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_rooted_dirt.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_rooted_dirt.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_rooted_dirt.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_rooted_dirt.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_sculk.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_sculk.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_sculk.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_sculk.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_sea_lantern.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_sea_lantern.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_sea_lantern.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_sea_lantern.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_shroomlight.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_shroomlight.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_shroomlight.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_shroomlight.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_smooth_basalt.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_smooth_basalt.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_smooth_basalt.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_smooth_basalt.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_smooth_stone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_smooth_stone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_smooth_stone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_smooth_stone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_snow.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_snow.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_snow.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_snow.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_soul_sand.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_soul_sand.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_soul_sand.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_soul_sand.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_soul_soil.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_soul_soil.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_soul_soil.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_soul_soil.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_black.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_black.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_black.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_black.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_blue.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_blue.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_blue.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_blue.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_brown.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_brown.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_brown.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_brown.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_cyan.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_cyan.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_cyan.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_cyan.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_gray.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_gray.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_gray.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_gray.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_green.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_green.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_green.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_green.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_light_blue.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_light_blue.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_light_blue.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_light_blue.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_light_gray.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_light_gray.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_light_gray.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_light_gray.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_lime.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_lime.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_lime.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_lime.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_magenta.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_magenta.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_magenta.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_magenta.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_orange.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_orange.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_orange.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_orange.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_pink.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_pink.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_pink.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_pink.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_purple.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_purple.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_purple.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_purple.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_red.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_red.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_red.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_red.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_white.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_white.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_white.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_white.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_yellow.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_yellow.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_terracotta_yellow.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_terracotta_yellow.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_tuff.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_tuff.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_tuff.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_tuff.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_verdant_froglight.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_verdant_froglight.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_verdant_froglight.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_verdant_froglight.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_black.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_black.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_black.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_black.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_blue.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_blue.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_blue.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_blue.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_brown.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_brown.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_brown.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_brown.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_cyan.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_cyan.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_cyan.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_cyan.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_gray.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_gray.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_gray.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_gray.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_green.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_green.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_green.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_green.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_light_blue.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_light_blue.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_light_blue.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_light_blue.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_lime.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_lime.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_lime.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_lime.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_magenta.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_magenta.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_magenta.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_magenta.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_orange.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_orange.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_orange.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_orange.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_pink.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_pink.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_pink.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_pink.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_purple.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_purple.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_purple.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_purple.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_red.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_red.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_red.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_red.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_silver.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_silver.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_silver.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_silver.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_white.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_white.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_white.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_white.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_yellow.json b/src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_yellow.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/stairs_wool_yellow.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/stairs_wool_yellow.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_amethyst.json b/src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_amethyst.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_amethyst.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_amethyst.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_andesite.json b/src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_andesite.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_andesite.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_andesite.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_basalt.json b/src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_basalt.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_basalt.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_basalt.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_blackstone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_blackstone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_blackstone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_blackstone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_blackstone_bricks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_blackstone_bricks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_blackstone_bricks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_blackstone_bricks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_bricks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_bricks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_bricks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_bricks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_crying_obsidian.json b/src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_crying_obsidian.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_crying_obsidian.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_crying_obsidian.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_diamond.json b/src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_diamond.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_diamond.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_diamond.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_diorite.json b/src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_diorite.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_diorite.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_diorite.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_emerald.json b/src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_emerald.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_emerald.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_emerald.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_end_stone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_end_stone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_end_stone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_end_stone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_gold.json b/src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_gold.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_gold.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_gold.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_granite.json b/src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_granite.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_granite.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_granite.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_lapis.json b/src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_lapis.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_lapis.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_lapis.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_mud_bricks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_mud_bricks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_mud_bricks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_mud_bricks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_obsidian.json b/src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_obsidian.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_obsidian.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_obsidian.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_purpur.json b/src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_purpur.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_purpur.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_purpur.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_quartz.json b/src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_quartz.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_quartz.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_quartz.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_quartz_bricks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_quartz_bricks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_quartz_bricks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_quartz_bricks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_stone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_stone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_stone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_stone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_stone_bricks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_stone_bricks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/trapdoor_stone_bricks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/trapdoor_stone_bricks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_acacia_log.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_acacia_log.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_acacia_log.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_acacia_log.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_acacia_planks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_acacia_planks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_acacia_planks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_acacia_planks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_amethyst.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_amethyst.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_amethyst.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_amethyst.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_andesite_smooth.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_andesite_smooth.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_andesite_smooth.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_andesite_smooth.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_bamboo_mosaic.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_bamboo_mosaic.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_bamboo_mosaic.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_bamboo_mosaic.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_bamboo_planks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_bamboo_planks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_bamboo_planks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_bamboo_planks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_basalt.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_basalt.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_basalt.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_basalt.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_birch_log.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_birch_log.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_birch_log.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_birch_log.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_birch_planks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_birch_planks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_birch_planks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_birch_planks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_blue_ice.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_blue_ice.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_blue_ice.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_blue_ice.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_bone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_bone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_bone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_bone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_brown_mushroom.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_brown_mushroom.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_brown_mushroom.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_brown_mushroom.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_calcite.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_calcite.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_calcite.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_calcite.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_cherry_log.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_cherry_log.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_cherry_log.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_cherry_log.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_cherry_planks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_cherry_planks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_cherry_planks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_cherry_planks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_cherry_stripped_log.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_cherry_stripped_log.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_cherry_stripped_log.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_cherry_stripped_log.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_coarse_dirt.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_coarse_dirt.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_coarse_dirt.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_coarse_dirt.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_black.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_black.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_black.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_black.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_blue.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_blue.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_blue.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_blue.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_brown.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_brown.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_brown.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_brown.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_cyan.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_cyan.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_cyan.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_cyan.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_gray.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_gray.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_gray.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_gray.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_green.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_green.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_green.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_green.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_light_blue.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_light_blue.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_light_blue.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_light_blue.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_light_gray.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_light_gray.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_light_gray.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_light_gray.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_lime.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_lime.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_lime.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_lime.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_magenta.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_magenta.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_magenta.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_magenta.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_orange.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_orange.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_orange.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_orange.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_pink.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_pink.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_pink.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_pink.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_purple.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_purple.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_purple.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_purple.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_red.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_red.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_red.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_red.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_white.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_white.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_white.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_white.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_yellow.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_yellow.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_concrete_yellow.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_concrete_yellow.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_cracked_deepslate_bricks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_cracked_deepslate_bricks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_cracked_deepslate_bricks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_cracked_deepslate_bricks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_cracked_deepslate_tiles.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_cracked_deepslate_tiles.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_cracked_deepslate_tiles.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_cracked_deepslate_tiles.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_cracked_nether_bricks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_cracked_nether_bricks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_cracked_nether_bricks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_cracked_nether_bricks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_cracked_polished_blackstone_bricks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_cracked_polished_blackstone_bricks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_cracked_polished_blackstone_bricks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_cracked_polished_blackstone_bricks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_crimson.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_crimson.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_crimson.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_crimson.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_crimson_planks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_crimson_planks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_crimson_planks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_crimson_planks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_crying_obsidian.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_crying_obsidian.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_crying_obsidian.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_crying_obsidian.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_dark_oak_log.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_dark_oak_log.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_dark_oak_log.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_dark_oak_log.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_dark_oak_planks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_dark_oak_planks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_dark_oak_planks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_dark_oak_planks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_dark_prismarine.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_dark_prismarine.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_dark_prismarine.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_dark_prismarine.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_deepslate.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_deepslate.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_deepslate.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_deepslate.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_diamond.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_diamond.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_diamond.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_diamond.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_diorite_smooth.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_diorite_smooth.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_diorite_smooth.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_diorite_smooth.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_dripstone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_dripstone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_dripstone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_dripstone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_emerald.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_emerald.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_emerald.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_emerald.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_end_stone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_end_stone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_end_stone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_end_stone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_gilded_blackstone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_gilded_blackstone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_gilded_blackstone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_gilded_blackstone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_black.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_black.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_black.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_black.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_blue.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_blue.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_blue.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_blue.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_brown.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_brown.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_brown.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_brown.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_cyan.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_cyan.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_cyan.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_cyan.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_gray.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_gray.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_gray.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_gray.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_green.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_green.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_green.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_green.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_light_blue.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_light_blue.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_light_blue.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_light_blue.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_light_gray.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_light_gray.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_light_gray.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_light_gray.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_lime.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_lime.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_lime.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_lime.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_magenta.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_magenta.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_magenta.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_magenta.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_orange.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_orange.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_orange.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_orange.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_pink.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_pink.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_pink.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_pink.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_purple.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_purple.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_purple.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_purple.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_red.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_red.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_red.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_red.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_white.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_white.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_white.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_white.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_yellow.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_yellow.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glass_yellow.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_glass_yellow.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glowstone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_glowstone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_glowstone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_glowstone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_gold.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_gold.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_gold.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_gold.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_granite_smooth.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_granite_smooth.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_granite_smooth.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_granite_smooth.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_honeycomb.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_honeycomb.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_honeycomb.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_honeycomb.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_iron.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_iron.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_iron.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_iron.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_jungle_log.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_jungle_log.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_jungle_log.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_jungle_log.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_jungle_planks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_jungle_planks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_jungle_planks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_jungle_planks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_lapis.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_lapis.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_lapis.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_lapis.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_lodestone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_lodestone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_lodestone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_lodestone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_magma.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_magma.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_magma.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_magma.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_mangrove_log.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_mangrove_log.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_mangrove_log.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_mangrove_log.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_mangrove_planks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_mangrove_planks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_mangrove_planks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_mangrove_planks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_moss.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_moss.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_moss.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_moss.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_mud.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_mud.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_mud.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_mud.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_muddy_mangrove_roots.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_muddy_mangrove_roots.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_muddy_mangrove_roots.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_muddy_mangrove_roots.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_mushroom_polished.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_mushroom_polished.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_mushroom_polished.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_mushroom_polished.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_mushroom_stem.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_mushroom_stem.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_mushroom_stem.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_mushroom_stem.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_netherite.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_netherite.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_netherite.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_netherite.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_netherrack.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_netherrack.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_netherrack.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_netherrack.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_oak_log.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_oak_log.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_oak_log.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_oak_log.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_oak_planks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_oak_planks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_oak_planks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_oak_planks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_obsidian.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_obsidian.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_obsidian.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_obsidian.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_ochre_froglight.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_ochre_froglight.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_ochre_froglight.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_ochre_froglight.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_packed_ice.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_packed_ice.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_packed_ice.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_packed_ice.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_packed_mud.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_packed_mud.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_packed_mud.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_packed_mud.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_pearlescent_froglight.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_pearlescent_froglight.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_pearlescent_froglight.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_pearlescent_froglight.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_polished_basalt.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_polished_basalt.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_polished_basalt.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_polished_basalt.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_prismarine_bricks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_prismarine_bricks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_prismarine_bricks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_prismarine_bricks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_purpur.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_purpur.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_purpur.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_purpur.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_quartz.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_quartz.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_quartz.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_quartz.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_quartz_bricks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_quartz_bricks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_quartz_bricks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_quartz_bricks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_raw_copper.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_raw_copper.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_raw_copper.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_raw_copper.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_raw_gold.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_raw_gold.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_raw_gold.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_raw_gold.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_raw_iron.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_raw_iron.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_raw_iron.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_raw_iron.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_red_mushroom.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_red_mushroom.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_red_mushroom.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_red_mushroom.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_reinforced_deepslate.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_reinforced_deepslate.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_reinforced_deepslate.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_reinforced_deepslate.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_rooted_dirt.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_rooted_dirt.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_rooted_dirt.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_rooted_dirt.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_sandstone_red_smooth.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_sandstone_red_smooth.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_sandstone_red_smooth.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_sandstone_red_smooth.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_sandstone_smooth.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_sandstone_smooth.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_sandstone_smooth.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_sandstone_smooth.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_sculk.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_sculk.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_sculk.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_sculk.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_sea_lantern.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_sea_lantern.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_sea_lantern.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_sea_lantern.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_shroomlight.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_shroomlight.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_shroomlight.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_shroomlight.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_smooth_basalt.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_smooth_basalt.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_smooth_basalt.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_smooth_basalt.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_snow.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_snow.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_snow.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_snow.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_soul_sand.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_soul_sand.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_soul_sand.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_soul_sand.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_soul_soil.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_soul_soil.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_soul_soil.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_soul_soil.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_spruce_log.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_spruce_log.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_spruce_log.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_spruce_log.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_spruce_planks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_spruce_planks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_spruce_planks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_spruce_planks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stone.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_stone.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stone.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_stone.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stone_slab.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_stone_slab.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stone_slab.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_stone_slab.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stonebrick_carved.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_stonebrick_carved.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stonebrick_carved.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_stonebrick_carved.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stonebrick_cracked.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_stonebrick_cracked.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stonebrick_cracked.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_stonebrick_cracked.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stripped_acacia_log.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_stripped_acacia_log.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stripped_acacia_log.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_stripped_acacia_log.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stripped_birch_log.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_stripped_birch_log.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stripped_birch_log.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_stripped_birch_log.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stripped_crimson.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_stripped_crimson.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stripped_crimson.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_stripped_crimson.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stripped_dark_oak_log.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_stripped_dark_oak_log.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stripped_dark_oak_log.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_stripped_dark_oak_log.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stripped_jungle_log.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_stripped_jungle_log.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stripped_jungle_log.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_stripped_jungle_log.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stripped_mangrove_log.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_stripped_mangrove_log.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stripped_mangrove_log.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_stripped_mangrove_log.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stripped_oak_log.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_stripped_oak_log.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stripped_oak_log.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_stripped_oak_log.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stripped_spruce_log.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_stripped_spruce_log.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stripped_spruce_log.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_stripped_spruce_log.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stripped_warped.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_stripped_warped.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_stripped_warped.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_stripped_warped.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_black.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_black.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_black.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_black.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_blue.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_blue.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_blue.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_blue.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_brown.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_brown.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_brown.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_brown.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_cyan.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_cyan.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_cyan.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_cyan.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_gray.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_gray.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_gray.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_gray.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_green.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_green.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_green.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_green.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_light_blue.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_light_blue.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_light_blue.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_light_blue.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_light_gray.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_light_gray.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_light_gray.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_light_gray.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_lime.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_lime.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_lime.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_lime.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_magenta.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_magenta.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_magenta.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_magenta.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_orange.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_orange.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_orange.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_orange.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_pink.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_pink.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_pink.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_pink.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_purple.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_purple.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_purple.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_purple.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_red.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_red.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_red.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_red.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_white.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_white.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_white.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_white.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_yellow.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_yellow.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_terracotta_yellow.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_terracotta_yellow.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_tuff.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_tuff.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_tuff.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_tuff.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_verdant_froglight.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_verdant_froglight.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_verdant_froglight.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_verdant_froglight.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_warped.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_warped.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_warped.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_warped.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_warped_planks.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_warped_planks.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_warped_planks.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_warped_planks.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_black.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_black.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_black.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_black.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_blue.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_blue.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_blue.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_blue.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_brown.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_brown.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_brown.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_brown.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_cyan.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_cyan.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_cyan.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_cyan.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_gray.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_gray.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_gray.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_gray.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_green.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_green.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_green.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_green.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_light_blue.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_light_blue.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_light_blue.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_light_blue.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_light_gray.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_light_gray.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_light_gray.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_light_gray.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_lime.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_lime.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_lime.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_lime.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_magenta.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_magenta.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_magenta.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_magenta.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_orange.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_orange.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_orange.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_orange.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_pink.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_pink.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_pink.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_pink.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_purple.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_purple.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_purple.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_purple.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_red.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_red.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_red.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_red.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_white.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_white.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_white.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_white.json diff --git a/src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_yellow.json b/src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_yellow.json similarity index 100% rename from src/main/resources/data/absentbydesign/loot_tables/blocks/wall_wool_yellow.json rename to src/main/resources/data/absentbydesign/loot_table/blocks/wall_wool_yellow.json diff --git a/src/main/resources/data/absentbydesign/recipes/fence_cherry.json b/src/main/resources/data/absentbydesign/recipe/fence_cherry.json similarity index 78% rename from src/main/resources/data/absentbydesign/recipes/fence_cherry.json rename to src/main/resources/data/absentbydesign/recipe/fence_cherry.json index d4aecf78..1ade4027 100644 --- a/src/main/resources/data/absentbydesign/recipes/fence_cherry.json +++ b/src/main/resources/data/absentbydesign/recipe/fence_cherry.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:fence_cherry", - "count": 6 + "count": 6, + "id": "absentbydesign:fence_cherry" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/fence_crimson.json b/src/main/resources/data/absentbydesign/recipe/fence_crimson.json similarity index 78% rename from src/main/resources/data/absentbydesign/recipes/fence_crimson.json rename to src/main/resources/data/absentbydesign/recipe/fence_crimson.json index dd38cf38..9a2ab2ee 100644 --- a/src/main/resources/data/absentbydesign/recipes/fence_crimson.json +++ b/src/main/resources/data/absentbydesign/recipe/fence_crimson.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:fence_crimson", - "count": 6 + "count": 6, + "id": "absentbydesign:fence_crimson" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/fence_log_acacia.json b/src/main/resources/data/absentbydesign/recipe/fence_log_acacia.json similarity index 77% rename from src/main/resources/data/absentbydesign/recipes/fence_log_acacia.json rename to src/main/resources/data/absentbydesign/recipe/fence_log_acacia.json index aade2b1e..6b63e8ae 100644 --- a/src/main/resources/data/absentbydesign/recipes/fence_log_acacia.json +++ b/src/main/resources/data/absentbydesign/recipe/fence_log_acacia.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:fence_log_acacia", - "count": 6 + "count": 6, + "id": "absentbydesign:fence_log_acacia" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/fence_log_birch.json b/src/main/resources/data/absentbydesign/recipe/fence_log_birch.json similarity index 77% rename from src/main/resources/data/absentbydesign/recipes/fence_log_birch.json rename to src/main/resources/data/absentbydesign/recipe/fence_log_birch.json index 9135f975..b4e59be5 100644 --- a/src/main/resources/data/absentbydesign/recipes/fence_log_birch.json +++ b/src/main/resources/data/absentbydesign/recipe/fence_log_birch.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:fence_log_birch", - "count": 6 + "count": 6, + "id": "absentbydesign:fence_log_birch" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/fence_log_darkoak.json b/src/main/resources/data/absentbydesign/recipe/fence_log_darkoak.json similarity index 77% rename from src/main/resources/data/absentbydesign/recipes/fence_log_darkoak.json rename to src/main/resources/data/absentbydesign/recipe/fence_log_darkoak.json index e02f3ae6..3bd8d89d 100644 --- a/src/main/resources/data/absentbydesign/recipes/fence_log_darkoak.json +++ b/src/main/resources/data/absentbydesign/recipe/fence_log_darkoak.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:fence_log_darkoak", - "count": 6 + "count": 6, + "id": "absentbydesign:fence_log_darkoak" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/fence_log_jungle.json b/src/main/resources/data/absentbydesign/recipe/fence_log_jungle.json similarity index 77% rename from src/main/resources/data/absentbydesign/recipes/fence_log_jungle.json rename to src/main/resources/data/absentbydesign/recipe/fence_log_jungle.json index 5a2128f7..a4ad056d 100644 --- a/src/main/resources/data/absentbydesign/recipes/fence_log_jungle.json +++ b/src/main/resources/data/absentbydesign/recipe/fence_log_jungle.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:fence_log_jungle", - "count": 6 + "count": 6, + "id": "absentbydesign:fence_log_jungle" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/fence_log_oak.json b/src/main/resources/data/absentbydesign/recipe/fence_log_oak.json similarity index 78% rename from src/main/resources/data/absentbydesign/recipes/fence_log_oak.json rename to src/main/resources/data/absentbydesign/recipe/fence_log_oak.json index 2879cfaf..13a0344f 100644 --- a/src/main/resources/data/absentbydesign/recipes/fence_log_oak.json +++ b/src/main/resources/data/absentbydesign/recipe/fence_log_oak.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:fence_log_oak", - "count": 6 + "count": 6, + "id": "absentbydesign:fence_log_oak" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/fence_log_spruce.json b/src/main/resources/data/absentbydesign/recipe/fence_log_spruce.json similarity index 77% rename from src/main/resources/data/absentbydesign/recipes/fence_log_spruce.json rename to src/main/resources/data/absentbydesign/recipe/fence_log_spruce.json index 15a12e82..cec5ff87 100644 --- a/src/main/resources/data/absentbydesign/recipes/fence_log_spruce.json +++ b/src/main/resources/data/absentbydesign/recipe/fence_log_spruce.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:fence_log_spruce", - "count": 6 + "count": 6, + "id": "absentbydesign:fence_log_spruce" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/fence_mangrove.json b/src/main/resources/data/absentbydesign/recipe/fence_mangrove.json similarity index 78% rename from src/main/resources/data/absentbydesign/recipes/fence_mangrove.json rename to src/main/resources/data/absentbydesign/recipe/fence_mangrove.json index 5711eb9b..5d1c9e6a 100644 --- a/src/main/resources/data/absentbydesign/recipes/fence_mangrove.json +++ b/src/main/resources/data/absentbydesign/recipe/fence_mangrove.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:fence_mangrove", - "count": 6 + "count": 6, + "id": "absentbydesign:fence_mangrove" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/fence_obsidian.json b/src/main/resources/data/absentbydesign/recipe/fence_obsidian.json similarity index 78% rename from src/main/resources/data/absentbydesign/recipes/fence_obsidian.json rename to src/main/resources/data/absentbydesign/recipe/fence_obsidian.json index 396da86d..16a29315 100644 --- a/src/main/resources/data/absentbydesign/recipes/fence_obsidian.json +++ b/src/main/resources/data/absentbydesign/recipe/fence_obsidian.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:fence_obsidian", - "count": 6 + "count": 6, + "id": "absentbydesign:fence_obsidian" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/fence_quartz.json b/src/main/resources/data/absentbydesign/recipe/fence_quartz.json similarity index 79% rename from src/main/resources/data/absentbydesign/recipes/fence_quartz.json rename to src/main/resources/data/absentbydesign/recipe/fence_quartz.json index 9702cd97..3d1f6a53 100644 --- a/src/main/resources/data/absentbydesign/recipes/fence_quartz.json +++ b/src/main/resources/data/absentbydesign/recipe/fence_quartz.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:fence_quartz", - "count": 6 + "count": 6, + "id": "absentbydesign:fence_quartz" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/fence_red_netherbrick.json b/src/main/resources/data/absentbydesign/recipe/fence_red_netherbrick.json similarity index 77% rename from src/main/resources/data/absentbydesign/recipes/fence_red_netherbrick.json rename to src/main/resources/data/absentbydesign/recipe/fence_red_netherbrick.json index a0a2da56..96632649 100644 --- a/src/main/resources/data/absentbydesign/recipes/fence_red_netherbrick.json +++ b/src/main/resources/data/absentbydesign/recipe/fence_red_netherbrick.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:fence_red_netherbrick", - "count": 6 + "count": 6, + "id": "absentbydesign:fence_red_netherbrick" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/fence_warped.json b/src/main/resources/data/absentbydesign/recipe/fence_warped.json similarity index 78% rename from src/main/resources/data/absentbydesign/recipes/fence_warped.json rename to src/main/resources/data/absentbydesign/recipe/fence_warped.json index 4abe3e23..60318bfb 100644 --- a/src/main/resources/data/absentbydesign/recipes/fence_warped.json +++ b/src/main/resources/data/absentbydesign/recipe/fence_warped.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:fence_warped", - "count": 6 + "count": 6, + "id": "absentbydesign:fence_warped" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/gate_basalt.json b/src/main/resources/data/absentbydesign/recipe/gate_basalt.json similarity index 78% rename from src/main/resources/data/absentbydesign/recipes/gate_basalt.json rename to src/main/resources/data/absentbydesign/recipe/gate_basalt.json index 688507f9..499dae91 100644 --- a/src/main/resources/data/absentbydesign/recipes/gate_basalt.json +++ b/src/main/resources/data/absentbydesign/recipe/gate_basalt.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:gate_basalt", - "count": 1 + "count": 1, + "id": "absentbydesign:gate_basalt" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/gate_blackstone.json b/src/main/resources/data/absentbydesign/recipe/gate_blackstone.json similarity index 78% rename from src/main/resources/data/absentbydesign/recipes/gate_blackstone.json rename to src/main/resources/data/absentbydesign/recipe/gate_blackstone.json index ca050fad..4b43589b 100644 --- a/src/main/resources/data/absentbydesign/recipes/gate_blackstone.json +++ b/src/main/resources/data/absentbydesign/recipe/gate_blackstone.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:gate_blackstone", - "count": 1 + "count": 1, + "id": "absentbydesign:gate_blackstone" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/gate_blackstone_bricks.json b/src/main/resources/data/absentbydesign/recipe/gate_blackstone_bricks.json similarity index 77% rename from src/main/resources/data/absentbydesign/recipes/gate_blackstone_bricks.json rename to src/main/resources/data/absentbydesign/recipe/gate_blackstone_bricks.json index e3754f0c..22604353 100644 --- a/src/main/resources/data/absentbydesign/recipes/gate_blackstone_bricks.json +++ b/src/main/resources/data/absentbydesign/recipe/gate_blackstone_bricks.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:gate_blackstone_bricks", - "count": 1 + "count": 1, + "id": "absentbydesign:gate_blackstone_bricks" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/gate_bricks.json b/src/main/resources/data/absentbydesign/recipe/gate_bricks.json similarity index 78% rename from src/main/resources/data/absentbydesign/recipes/gate_bricks.json rename to src/main/resources/data/absentbydesign/recipe/gate_bricks.json index d7418110..2a07f2c1 100644 --- a/src/main/resources/data/absentbydesign/recipes/gate_bricks.json +++ b/src/main/resources/data/absentbydesign/recipe/gate_bricks.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:gate_bricks", - "count": 1 + "count": 1, + "id": "absentbydesign:gate_bricks" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/gate_cobblestone.json b/src/main/resources/data/absentbydesign/recipe/gate_cobblestone.json similarity index 77% rename from src/main/resources/data/absentbydesign/recipes/gate_cobblestone.json rename to src/main/resources/data/absentbydesign/recipe/gate_cobblestone.json index 479935c2..d8bed844 100644 --- a/src/main/resources/data/absentbydesign/recipes/gate_cobblestone.json +++ b/src/main/resources/data/absentbydesign/recipe/gate_cobblestone.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:gate_cobblestone", - "count": 1 + "count": 1, + "id": "absentbydesign:gate_cobblestone" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/gate_end_stone_bricks.json b/src/main/resources/data/absentbydesign/recipe/gate_end_stone_bricks.json similarity index 76% rename from src/main/resources/data/absentbydesign/recipes/gate_end_stone_bricks.json rename to src/main/resources/data/absentbydesign/recipe/gate_end_stone_bricks.json index e801e12a..5378c0e2 100644 --- a/src/main/resources/data/absentbydesign/recipes/gate_end_stone_bricks.json +++ b/src/main/resources/data/absentbydesign/recipe/gate_end_stone_bricks.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:gate_end_stone_bricks", - "count": 1 + "count": 1, + "id": "absentbydesign:gate_end_stone_bricks" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/gate_mud_bricks.json b/src/main/resources/data/absentbydesign/recipe/gate_mud_bricks.json similarity index 78% rename from src/main/resources/data/absentbydesign/recipes/gate_mud_bricks.json rename to src/main/resources/data/absentbydesign/recipe/gate_mud_bricks.json index 3727ae70..c32d2936 100644 --- a/src/main/resources/data/absentbydesign/recipes/gate_mud_bricks.json +++ b/src/main/resources/data/absentbydesign/recipe/gate_mud_bricks.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:gate_mud_bricks", - "count": 1 + "count": 1, + "id": "absentbydesign:gate_mud_bricks" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/gate_nether_bricks.json b/src/main/resources/data/absentbydesign/recipe/gate_nether_bricks.json similarity index 77% rename from src/main/resources/data/absentbydesign/recipes/gate_nether_bricks.json rename to src/main/resources/data/absentbydesign/recipe/gate_nether_bricks.json index d39285ed..ab05603d 100644 --- a/src/main/resources/data/absentbydesign/recipes/gate_nether_bricks.json +++ b/src/main/resources/data/absentbydesign/recipe/gate_nether_bricks.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:gate_nether_bricks", - "count": 6 + "count": 6, + "id": "absentbydesign:gate_nether_bricks" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/gate_obsidian.json b/src/main/resources/data/absentbydesign/recipe/gate_obsidian.json similarity index 78% rename from src/main/resources/data/absentbydesign/recipes/gate_obsidian.json rename to src/main/resources/data/absentbydesign/recipe/gate_obsidian.json index 47ebd89e..98c9ad3b 100644 --- a/src/main/resources/data/absentbydesign/recipes/gate_obsidian.json +++ b/src/main/resources/data/absentbydesign/recipe/gate_obsidian.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:gate_obsidian", - "count": 6 + "count": 6, + "id": "absentbydesign:gate_obsidian" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/gate_prismarine.json b/src/main/resources/data/absentbydesign/recipe/gate_prismarine.json similarity index 78% rename from src/main/resources/data/absentbydesign/recipes/gate_prismarine.json rename to src/main/resources/data/absentbydesign/recipe/gate_prismarine.json index 81d18623..7ed0b508 100644 --- a/src/main/resources/data/absentbydesign/recipes/gate_prismarine.json +++ b/src/main/resources/data/absentbydesign/recipe/gate_prismarine.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:gate_prismarine", - "count": 1 + "count": 1, + "id": "absentbydesign:gate_prismarine" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/gate_prismarine_brick.json b/src/main/resources/data/absentbydesign/recipe/gate_prismarine_brick.json similarity index 76% rename from src/main/resources/data/absentbydesign/recipes/gate_prismarine_brick.json rename to src/main/resources/data/absentbydesign/recipe/gate_prismarine_brick.json index 38cb557c..02ad28b9 100644 --- a/src/main/resources/data/absentbydesign/recipes/gate_prismarine_brick.json +++ b/src/main/resources/data/absentbydesign/recipe/gate_prismarine_brick.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:gate_prismarine_brick", - "count": 1 + "count": 1, + "id": "absentbydesign:gate_prismarine_brick" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/gate_prismarine_dark.json b/src/main/resources/data/absentbydesign/recipe/gate_prismarine_dark.json similarity index 77% rename from src/main/resources/data/absentbydesign/recipes/gate_prismarine_dark.json rename to src/main/resources/data/absentbydesign/recipe/gate_prismarine_dark.json index 615a6425..a33ac906 100644 --- a/src/main/resources/data/absentbydesign/recipes/gate_prismarine_dark.json +++ b/src/main/resources/data/absentbydesign/recipe/gate_prismarine_dark.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:gate_prismarine_dark", - "count": 1 + "count": 1, + "id": "absentbydesign:gate_prismarine_dark" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/gate_purpur.json b/src/main/resources/data/absentbydesign/recipe/gate_purpur.json similarity index 79% rename from src/main/resources/data/absentbydesign/recipes/gate_purpur.json rename to src/main/resources/data/absentbydesign/recipe/gate_purpur.json index ac02b341..1af5a790 100644 --- a/src/main/resources/data/absentbydesign/recipes/gate_purpur.json +++ b/src/main/resources/data/absentbydesign/recipe/gate_purpur.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:gate_purpur", - "count": 1 + "count": 1, + "id": "absentbydesign:gate_purpur" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/gate_quartz.json b/src/main/resources/data/absentbydesign/recipe/gate_quartz.json similarity index 79% rename from src/main/resources/data/absentbydesign/recipes/gate_quartz.json rename to src/main/resources/data/absentbydesign/recipe/gate_quartz.json index 7d2e3d13..35491958 100644 --- a/src/main/resources/data/absentbydesign/recipes/gate_quartz.json +++ b/src/main/resources/data/absentbydesign/recipe/gate_quartz.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:gate_quartz", - "count": 1 + "count": 1, + "id": "absentbydesign:gate_quartz" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/gate_red_nether_bricks.json b/src/main/resources/data/absentbydesign/recipe/gate_red_nether_bricks.json similarity index 77% rename from src/main/resources/data/absentbydesign/recipes/gate_red_nether_bricks.json rename to src/main/resources/data/absentbydesign/recipe/gate_red_nether_bricks.json index 952269da..8c1eb82e 100644 --- a/src/main/resources/data/absentbydesign/recipes/gate_red_nether_bricks.json +++ b/src/main/resources/data/absentbydesign/recipe/gate_red_nether_bricks.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:gate_red_nether_bricks", - "count": 6 + "count": 6, + "id": "absentbydesign:gate_red_nether_bricks" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/gate_red_sandstone.json b/src/main/resources/data/absentbydesign/recipe/gate_red_sandstone.json similarity index 77% rename from src/main/resources/data/absentbydesign/recipes/gate_red_sandstone.json rename to src/main/resources/data/absentbydesign/recipe/gate_red_sandstone.json index 1dae5185..6f845df2 100644 --- a/src/main/resources/data/absentbydesign/recipes/gate_red_sandstone.json +++ b/src/main/resources/data/absentbydesign/recipe/gate_red_sandstone.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:gate_red_sandstone", - "count": 1 + "count": 1, + "id": "absentbydesign:gate_red_sandstone" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/gate_sandstone.json b/src/main/resources/data/absentbydesign/recipe/gate_sandstone.json similarity index 78% rename from src/main/resources/data/absentbydesign/recipes/gate_sandstone.json rename to src/main/resources/data/absentbydesign/recipe/gate_sandstone.json index 24b911da..2c006cf5 100644 --- a/src/main/resources/data/absentbydesign/recipes/gate_sandstone.json +++ b/src/main/resources/data/absentbydesign/recipe/gate_sandstone.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:gate_sandstone", - "count": 1 + "count": 1, + "id": "absentbydesign:gate_sandstone" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/gate_stone.json b/src/main/resources/data/absentbydesign/recipe/gate_stone.json similarity index 79% rename from src/main/resources/data/absentbydesign/recipes/gate_stone.json rename to src/main/resources/data/absentbydesign/recipe/gate_stone.json index 8e732b82..1aa23177 100644 --- a/src/main/resources/data/absentbydesign/recipes/gate_stone.json +++ b/src/main/resources/data/absentbydesign/recipe/gate_stone.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:gate_stone", - "count": 1 + "count": 1, + "id": "absentbydesign:gate_stone" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipes/gate_stone_bricks.json b/src/main/resources/data/absentbydesign/recipe/gate_stone_bricks.json similarity index 77% rename from src/main/resources/data/absentbydesign/recipes/gate_stone_bricks.json rename to src/main/resources/data/absentbydesign/recipe/gate_stone_bricks.json index 3b61b68b..55c947fc 100644 --- a/src/main/resources/data/absentbydesign/recipes/gate_stone_bricks.json +++ b/src/main/resources/data/absentbydesign/recipe/gate_stone_bricks.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "absentbydesign:gate_stone_bricks", - "count": 1 + "count": 1, + "id": "absentbydesign:gate_stone_bricks" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipe/mc_slab_acacia_sc.json b/src/main/resources/data/absentbydesign/recipe/mc_slab_acacia_sc.json new file mode 100644 index 00000000..becbaae3 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/mc_slab_acacia_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:acacia_planks" + }, + "result": { + "id": "minecraft:acacia_slab", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/mc_slab_birch_sc.json b/src/main/resources/data/absentbydesign/recipe/mc_slab_birch_sc.json new file mode 100644 index 00000000..ffc671d6 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/mc_slab_birch_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:birch_planks" + }, + "result": { + "id": "minecraft:birch_slab", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/mc_slab_crimson_sc.json b/src/main/resources/data/absentbydesign/recipe/mc_slab_crimson_sc.json new file mode 100644 index 00000000..8760cd59 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/mc_slab_crimson_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:crimson_planks" + }, + "result": { + "id": "minecraft:crimson_slab", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/mc_slab_dark_oak_sc.json b/src/main/resources/data/absentbydesign/recipe/mc_slab_dark_oak_sc.json new file mode 100644 index 00000000..0ba945e8 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/mc_slab_dark_oak_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:dark_oak_planks" + }, + "result": { + "id": "minecraft:dark_oak_slab", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/mc_slab_jungle_sc.json b/src/main/resources/data/absentbydesign/recipe/mc_slab_jungle_sc.json new file mode 100644 index 00000000..4838b41d --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/mc_slab_jungle_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:jungle_planks" + }, + "result": { + "id": "minecraft:jungle_slab", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/mc_slab_oak_sc.json b/src/main/resources/data/absentbydesign/recipe/mc_slab_oak_sc.json new file mode 100644 index 00000000..9198652c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/mc_slab_oak_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:oak_planks" + }, + "result": { + "id": "minecraft:oak_slab", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/mc_slab_spruce_sc.json b/src/main/resources/data/absentbydesign/recipe/mc_slab_spruce_sc.json new file mode 100644 index 00000000..67dc0b1b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/mc_slab_spruce_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:spruce_planks" + }, + "result": { + "id": "minecraft:spruce_slab", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/mc_slab_warped_sc.json b/src/main/resources/data/absentbydesign/recipe/mc_slab_warped_sc.json new file mode 100644 index 00000000..91bc8c27 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/mc_slab_warped_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:warped_planks" + }, + "result": { + "id": "minecraft:warped_slab", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/mc_stairs_acacia_sc.json b/src/main/resources/data/absentbydesign/recipe/mc_stairs_acacia_sc.json new file mode 100644 index 00000000..e972e354 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/mc_stairs_acacia_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:acacia_planks" + }, + "result": { + "id": "minecraft:acacia_stairs", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/mc_stairs_birch_sc.json b/src/main/resources/data/absentbydesign/recipe/mc_stairs_birch_sc.json new file mode 100644 index 00000000..38e62a60 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/mc_stairs_birch_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:birch_planks" + }, + "result": { + "id": "minecraft:birch_stairs", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/mc_stairs_crimson_sc.json b/src/main/resources/data/absentbydesign/recipe/mc_stairs_crimson_sc.json new file mode 100644 index 00000000..09567cff --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/mc_stairs_crimson_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:crimson_planks" + }, + "result": { + "id": "minecraft:crimson_stairs", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/mc_stairs_dark_oak_sc.json b/src/main/resources/data/absentbydesign/recipe/mc_stairs_dark_oak_sc.json new file mode 100644 index 00000000..7977dd37 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/mc_stairs_dark_oak_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:dark_oak_planks" + }, + "result": { + "id": "minecraft:dark_oak_stairs", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/mc_stairs_jungle_sc.json b/src/main/resources/data/absentbydesign/recipe/mc_stairs_jungle_sc.json new file mode 100644 index 00000000..4a55a7ce --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/mc_stairs_jungle_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:jungle_planks" + }, + "result": { + "id": "minecraft:jungle_stairs", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/mc_stairs_oak_sc.json b/src/main/resources/data/absentbydesign/recipe/mc_stairs_oak_sc.json new file mode 100644 index 00000000..b2cdd4ea --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/mc_stairs_oak_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:oak_planks" + }, + "result": { + "id": "minecraft:oak_stairs", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/mc_stairs_spruce_sc.json b/src/main/resources/data/absentbydesign/recipe/mc_stairs_spruce_sc.json new file mode 100644 index 00000000..57d3a95e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/mc_stairs_spruce_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:spruce_planks" + }, + "result": { + "id": "minecraft:spruce_stairs", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/mc_stairs_warped_sc.json b/src/main/resources/data/absentbydesign/recipe/mc_stairs_warped_sc.json new file mode 100644 index 00000000..ad7c6875 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/mc_stairs_warped_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:warped_planks" + }, + "result": { + "id": "minecraft:warped_stairs", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/slab_diamond.json b/src/main/resources/data/absentbydesign/recipe/reverse/slab_diamond.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/slab_diamond.json rename to src/main/resources/data/absentbydesign/recipe/reverse/slab_diamond.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/slab_emerald.json b/src/main/resources/data/absentbydesign/recipe/reverse/slab_emerald.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/slab_emerald.json rename to src/main/resources/data/absentbydesign/recipe/reverse/slab_emerald.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/slab_gold.json b/src/main/resources/data/absentbydesign/recipe/reverse/slab_gold.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/slab_gold.json rename to src/main/resources/data/absentbydesign/recipe/reverse/slab_gold.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/slab_iron.json b/src/main/resources/data/absentbydesign/recipe/reverse/slab_iron.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/slab_iron.json rename to src/main/resources/data/absentbydesign/recipe/reverse/slab_iron.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/slab_lapis.json b/src/main/resources/data/absentbydesign/recipe/reverse/slab_lapis.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/slab_lapis.json rename to src/main/resources/data/absentbydesign/recipe/reverse/slab_lapis.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/slab_netherite.json b/src/main/resources/data/absentbydesign/recipe/reverse/slab_netherite.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/slab_netherite.json rename to src/main/resources/data/absentbydesign/recipe/reverse/slab_netherite.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/slab_rcopper.json b/src/main/resources/data/absentbydesign/recipe/reverse/slab_rcopper.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/slab_rcopper.json rename to src/main/resources/data/absentbydesign/recipe/reverse/slab_rcopper.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/slab_rgold.json b/src/main/resources/data/absentbydesign/recipe/reverse/slab_rgold.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/slab_rgold.json rename to src/main/resources/data/absentbydesign/recipe/reverse/slab_rgold.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/slab_riron.json b/src/main/resources/data/absentbydesign/recipe/reverse/slab_riron.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/slab_riron.json rename to src/main/resources/data/absentbydesign/recipe/reverse/slab_riron.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/stair_diamond.json b/src/main/resources/data/absentbydesign/recipe/reverse/stair_diamond.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/stair_diamond.json rename to src/main/resources/data/absentbydesign/recipe/reverse/stair_diamond.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/stair_emerald.json b/src/main/resources/data/absentbydesign/recipe/reverse/stair_emerald.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/stair_emerald.json rename to src/main/resources/data/absentbydesign/recipe/reverse/stair_emerald.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/stair_gold.json b/src/main/resources/data/absentbydesign/recipe/reverse/stair_gold.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/stair_gold.json rename to src/main/resources/data/absentbydesign/recipe/reverse/stair_gold.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/stair_iron.json b/src/main/resources/data/absentbydesign/recipe/reverse/stair_iron.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/stair_iron.json rename to src/main/resources/data/absentbydesign/recipe/reverse/stair_iron.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/stair_lapis.json b/src/main/resources/data/absentbydesign/recipe/reverse/stair_lapis.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/stair_lapis.json rename to src/main/resources/data/absentbydesign/recipe/reverse/stair_lapis.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/stair_netherite.json b/src/main/resources/data/absentbydesign/recipe/reverse/stair_netherite.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/stair_netherite.json rename to src/main/resources/data/absentbydesign/recipe/reverse/stair_netherite.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/stair_rcopper.json b/src/main/resources/data/absentbydesign/recipe/reverse/stair_rcopper.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/stair_rcopper.json rename to src/main/resources/data/absentbydesign/recipe/reverse/stair_rcopper.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/stair_rgold.json b/src/main/resources/data/absentbydesign/recipe/reverse/stair_rgold.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/stair_rgold.json rename to src/main/resources/data/absentbydesign/recipe/reverse/stair_rgold.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/stair_riron.json b/src/main/resources/data/absentbydesign/recipe/reverse/stair_riron.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/stair_riron.json rename to src/main/resources/data/absentbydesign/recipe/reverse/stair_riron.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/wall_diamond.json b/src/main/resources/data/absentbydesign/recipe/reverse/wall_diamond.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/wall_diamond.json rename to src/main/resources/data/absentbydesign/recipe/reverse/wall_diamond.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/wall_emerald.json b/src/main/resources/data/absentbydesign/recipe/reverse/wall_emerald.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/wall_emerald.json rename to src/main/resources/data/absentbydesign/recipe/reverse/wall_emerald.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/wall_gold.json b/src/main/resources/data/absentbydesign/recipe/reverse/wall_gold.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/wall_gold.json rename to src/main/resources/data/absentbydesign/recipe/reverse/wall_gold.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/wall_iron.json b/src/main/resources/data/absentbydesign/recipe/reverse/wall_iron.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/wall_iron.json rename to src/main/resources/data/absentbydesign/recipe/reverse/wall_iron.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/wall_lapis.json b/src/main/resources/data/absentbydesign/recipe/reverse/wall_lapis.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/wall_lapis.json rename to src/main/resources/data/absentbydesign/recipe/reverse/wall_lapis.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/wall_netherite.json b/src/main/resources/data/absentbydesign/recipe/reverse/wall_netherite.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/wall_netherite.json rename to src/main/resources/data/absentbydesign/recipe/reverse/wall_netherite.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/wall_rcopper.json b/src/main/resources/data/absentbydesign/recipe/reverse/wall_rcopper.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/wall_rcopper.json rename to src/main/resources/data/absentbydesign/recipe/reverse/wall_rcopper.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/wall_rgold.json b/src/main/resources/data/absentbydesign/recipe/reverse/wall_rgold.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/wall_rgold.json rename to src/main/resources/data/absentbydesign/recipe/reverse/wall_rgold.json diff --git a/src/main/resources/data/absentbydesign/recipes/reverse/wall_riron.json b/src/main/resources/data/absentbydesign/recipe/reverse/wall_riron.json similarity index 100% rename from src/main/resources/data/absentbydesign/recipes/reverse/wall_riron.json rename to src/main/resources/data/absentbydesign/recipe/reverse/wall_riron.json diff --git a/src/main/resources/data/absentbydesign/recipe/slab_amethyst.json b/src/main/resources/data/absentbydesign/recipe/slab_amethyst.json new file mode 100644 index 00000000..763377e8 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_amethyst.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:amethyst_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_amethyst" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_amethyst_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_amethyst_sc.json new file mode 100644 index 00000000..9fc2ff1b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_amethyst_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:amethyst_block" + }, + "result": { + "id": "absentbydesign:slab_amethyst", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_basalt.json b/src/main/resources/data/absentbydesign/recipe/slab_basalt.json new file mode 100644 index 00000000..f9ab93b1 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_basalt.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:basalt" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_basalt" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_basalt_from_basalt_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_basalt_from_basalt_stonecutting.json new file mode 100644 index 00000000..a9ecb43b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_basalt_from_basalt_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:basalt" + }, + "result": { + "id": "absentbydesign:slab_basalt", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_blue_ice.json b/src/main/resources/data/absentbydesign/recipe/slab_blue_ice.json new file mode 100644 index 00000000..68665ae0 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_blue_ice.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:blue_ice" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_blue_ice" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_blue_ice_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_blue_ice_sc.json new file mode 100644 index 00000000..4d2295c3 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_blue_ice_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:blue_ice" + }, + "result": { + "id": "absentbydesign:slab_blue_ice", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_bone.json b/src/main/resources/data/absentbydesign/recipe/slab_bone.json new file mode 100644 index 00000000..af7c918c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_bone.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:bone_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_bone" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_bone_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_bone_sc.json new file mode 100644 index 00000000..0a2bcbc4 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_bone_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:bone_block" + }, + "result": { + "id": "absentbydesign:slab_bone", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_bricks_cracked.json b/src/main/resources/data/absentbydesign/recipe/slab_bricks_cracked.json new file mode 100644 index 00000000..1622830d --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_bricks_cracked.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:cracked_stone_bricks" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_bricks_cracked" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_bricks_cracked_from_cracked_stone_bricks_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_bricks_cracked_from_cracked_stone_bricks_stonecutting.json new file mode 100644 index 00000000..e4b8938f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_bricks_cracked_from_cracked_stone_bricks_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cracked_stone_bricks" + }, + "result": { + "id": "absentbydesign:slab_bricks_cracked", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_brown_mushroom.json b/src/main/resources/data/absentbydesign/recipe/slab_brown_mushroom.json new file mode 100644 index 00000000..b2e86bd3 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_brown_mushroom.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:brown_mushroom_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_brown_mushroom" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_brown_mushroom_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_brown_mushroom_sc.json new file mode 100644 index 00000000..f98b2833 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_brown_mushroom_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:brown_mushroom_block" + }, + "result": { + "id": "absentbydesign:slab_brown_mushroom", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_calcite.json b/src/main/resources/data/absentbydesign/recipe/slab_calcite.json new file mode 100644 index 00000000..b1eccda5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_calcite.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:calcite" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_calcite" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_calcite_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_calcite_sc.json new file mode 100644 index 00000000..3eadce10 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_calcite_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:calcite" + }, + "result": { + "id": "absentbydesign:slab_calcite", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_coarse_dirt.json b/src/main/resources/data/absentbydesign/recipe/slab_coarse_dirt.json new file mode 100644 index 00000000..6c25e47c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_coarse_dirt.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:coarse_dirt" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_coarse_dirt" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_coarse_dirt_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_coarse_dirt_stonecutting.json new file mode 100644 index 00000000..f062dd0c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_coarse_dirt_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:coarse_dirt" + }, + "result": { + "id": "absentbydesign:slab_coarse_dirt", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_black.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_black.json new file mode 100644 index 00000000..c2011404 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_black.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:black_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_concrete_black" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_black_from_black_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_black_from_black_concrete_stonecutting.json new file mode 100644 index 00000000..af7e7320 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_black_from_black_concrete_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:black_concrete" + }, + "result": { + "id": "absentbydesign:slab_concrete_black", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_blue.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_blue.json new file mode 100644 index 00000000..20709094 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_blue.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:blue_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_concrete_blue" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_blue_from_blue_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_blue_from_blue_concrete_stonecutting.json new file mode 100644 index 00000000..b6279fb8 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_blue_from_blue_concrete_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:blue_concrete" + }, + "result": { + "id": "absentbydesign:slab_concrete_blue", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_brown.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_brown.json new file mode 100644 index 00000000..6f4ef2e4 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_brown.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:brown_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_concrete_brown" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_brown_from_brown_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_brown_from_brown_concrete_stonecutting.json new file mode 100644 index 00000000..61c1ce2b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_brown_from_brown_concrete_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:brown_concrete" + }, + "result": { + "id": "absentbydesign:slab_concrete_brown", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_cyan.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_cyan.json new file mode 100644 index 00000000..2a80ca65 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_cyan.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:cyan_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_concrete_cyan" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_cyan_from_cyan_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_cyan_from_cyan_concrete_stonecutting.json new file mode 100644 index 00000000..f20cf59a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_cyan_from_cyan_concrete_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cyan_concrete" + }, + "result": { + "id": "absentbydesign:slab_concrete_cyan", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_gray.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_gray.json new file mode 100644 index 00000000..f7f9a895 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_gray.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:gray_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_concrete_gray" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_gray_from_gray_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_gray_from_gray_concrete_stonecutting.json new file mode 100644 index 00000000..5e1ae8a9 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_gray_from_gray_concrete_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:gray_concrete" + }, + "result": { + "id": "absentbydesign:slab_concrete_gray", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_green.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_green.json new file mode 100644 index 00000000..f85378ef --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_green.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:green_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_concrete_green" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_green_from_green_concrete.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_green_from_green_concrete.json new file mode 100644 index 00000000..38a83b63 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_green_from_green_concrete.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:green_concrete" + }, + "result": { + "id": "absentbydesign:slab_concrete_green", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_light_blue.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_light_blue.json new file mode 100644 index 00000000..6e9473f1 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_light_blue.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:light_blue_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_concrete_light_blue" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_light_blue_from_light_blue_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_light_blue_from_light_blue_concrete_stonecutting.json new file mode 100644 index 00000000..1440a7cf --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_light_blue_from_light_blue_concrete_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:light_blue_concrete" + }, + "result": { + "id": "absentbydesign:slab_concrete_light_blue", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_lime.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_lime.json new file mode 100644 index 00000000..f3d774dc --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_lime.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:lime_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_concrete_lime" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_lime_from_lime_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_lime_from_lime_concrete_stonecutting.json new file mode 100644 index 00000000..0e618059 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_lime_from_lime_concrete_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:lime_concrete" + }, + "result": { + "id": "absentbydesign:slab_concrete_lime", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_magenta.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_magenta.json new file mode 100644 index 00000000..11fc306a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_magenta.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:magenta_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_concrete_magenta" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_magenta_from_magenta_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_magenta_from_magenta_concrete_stonecutting.json new file mode 100644 index 00000000..8fa6f53c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_magenta_from_magenta_concrete_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:magenta_concrete" + }, + "result": { + "id": "absentbydesign:slab_concrete_magenta", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_orange.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_orange.json new file mode 100644 index 00000000..f265f8c0 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_orange.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:orange_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_concrete_orange" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_orange_from_orange_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_orange_from_orange_concrete_stonecutting.json new file mode 100644 index 00000000..5ab7b939 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_orange_from_orange_concrete_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:orange_concrete" + }, + "result": { + "id": "absentbydesign:slab_concrete_orange", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_pink.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_pink.json new file mode 100644 index 00000000..7dc1ca56 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_pink.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:pink_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_concrete_pink" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_pink_from_pink_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_pink_from_pink_concrete_stonecutting.json new file mode 100644 index 00000000..ded8205e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_pink_from_pink_concrete_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:pink_concrete" + }, + "result": { + "id": "absentbydesign:slab_concrete_pink", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_purple.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_purple.json new file mode 100644 index 00000000..7e3cca70 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_purple.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:purple_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_concrete_purple" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_purple_from_purple_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_purple_from_purple_concrete_stonecutting.json new file mode 100644 index 00000000..2e3a4f74 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_purple_from_purple_concrete_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:purple_concrete" + }, + "result": { + "id": "absentbydesign:slab_concrete_purple", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_red.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_red.json new file mode 100644 index 00000000..a8de9f3c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_red.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:red_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_concrete_red" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_red_from_red_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_red_from_red_concrete_stonecutting.json new file mode 100644 index 00000000..728cf378 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_red_from_red_concrete_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:red_concrete" + }, + "result": { + "id": "absentbydesign:slab_concrete_red", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_silver.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_silver.json new file mode 100644 index 00000000..ae87b78f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_silver.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:light_gray_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_concrete_silver" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_silver_from_light_gray_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_silver_from_light_gray_concrete_stonecutting.json new file mode 100644 index 00000000..0d86c700 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_silver_from_light_gray_concrete_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:light_gray_concrete" + }, + "result": { + "id": "absentbydesign:slab_concrete_silver", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_white.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_white.json new file mode 100644 index 00000000..c5ef01a9 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_white.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:white_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_concrete_white" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_white_from_white_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_white_from_white_concrete_stonecutting.json new file mode 100644 index 00000000..ceb35452 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_white_from_white_concrete_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:white_concrete" + }, + "result": { + "id": "absentbydesign:slab_concrete_white", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_yellow.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_yellow.json new file mode 100644 index 00000000..bb4fca69 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_yellow.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:yellow_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_concrete_yellow" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_concrete_yellow_from_yellow_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_concrete_yellow_from_yellow_concrete_stonecutting.json new file mode 100644 index 00000000..223c1629 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_concrete_yellow_from_yellow_concrete_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:yellow_concrete" + }, + "result": { + "id": "absentbydesign:slab_concrete_yellow", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_cracked_deepslate_bricks.json b/src/main/resources/data/absentbydesign/recipe/slab_cracked_deepslate_bricks.json new file mode 100644 index 00000000..0854f491 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_cracked_deepslate_bricks.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:cracked_deepslate_bricks" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_cracked_deepslate_bricks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_cracked_deepslate_bricks_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_cracked_deepslate_bricks_sc.json new file mode 100644 index 00000000..09f0fb2a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_cracked_deepslate_bricks_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cracked_deepslate_bricks" + }, + "result": { + "id": "absentbydesign:slab_cracked_deepslate_bricks", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_cracked_deepslate_tiles.json b/src/main/resources/data/absentbydesign/recipe/slab_cracked_deepslate_tiles.json new file mode 100644 index 00000000..de49e833 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_cracked_deepslate_tiles.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:cracked_deepslate_tiles" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_cracked_deepslate_tiles" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_cracked_deepslate_tiles_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_cracked_deepslate_tiles_sc.json new file mode 100644 index 00000000..b2bfcd88 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_cracked_deepslate_tiles_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cracked_deepslate_tiles" + }, + "result": { + "id": "absentbydesign:slab_cracked_deepslate_tiles", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_cracked_nether_bricks.json b/src/main/resources/data/absentbydesign/recipe/slab_cracked_nether_bricks.json new file mode 100644 index 00000000..3ce2726f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_cracked_nether_bricks.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:cracked_nether_bricks" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_cracked_nether_bricks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_cracked_nether_bricks_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_cracked_nether_bricks_sc.json new file mode 100644 index 00000000..4e371800 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_cracked_nether_bricks_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cracked_nether_bricks" + }, + "result": { + "id": "absentbydesign:slab_cracked_nether_bricks", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_cracked_polished_blackstone_bricks.json b/src/main/resources/data/absentbydesign/recipe/slab_cracked_polished_blackstone_bricks.json new file mode 100644 index 00000000..d46d5b63 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_cracked_polished_blackstone_bricks.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:cracked_polished_blackstone_bricks" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_cracked_polished_blackstone_bricks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_cracked_polished_blackstone_bricks_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_cracked_polished_blackstone_bricks_sc.json new file mode 100644 index 00000000..c59de823 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_cracked_polished_blackstone_bricks_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cracked_polished_blackstone_bricks" + }, + "result": { + "id": "absentbydesign:slab_cracked_polished_blackstone_bricks", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_crying_obsidian.json b/src/main/resources/data/absentbydesign/recipe/slab_crying_obsidian.json new file mode 100644 index 00000000..3df304b1 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_crying_obsidian.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:crying_obsidian" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_crying_obsidian" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_crying_obsidian_from_crying_obsidian_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_crying_obsidian_from_crying_obsidian_stonecutting.json new file mode 100644 index 00000000..1314248d --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_crying_obsidian_from_crying_obsidian_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:crying_obsidian" + }, + "result": { + "id": "absentbydesign:slab_crying_obsidian", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_deepslate.json b/src/main/resources/data/absentbydesign/recipe/slab_deepslate.json new file mode 100644 index 00000000..0d054313 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_deepslate.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:deepslate" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_deepslate" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_deepslate_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_deepslate_sc.json new file mode 100644 index 00000000..165676cd --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_deepslate_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:deepslate" + }, + "result": { + "id": "absentbydesign:slab_deepslate", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_diamond.json b/src/main/resources/data/absentbydesign/recipe/slab_diamond.json new file mode 100644 index 00000000..b2674f31 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_diamond.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:diamond_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_diamond" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_diamond_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_diamond_sc.json new file mode 100644 index 00000000..c2d94a06 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_diamond_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:diamond_block" + }, + "result": { + "id": "absentbydesign:slab_diamond", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_dripstone.json b/src/main/resources/data/absentbydesign/recipe/slab_dripstone.json new file mode 100644 index 00000000..ddb36ae7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_dripstone.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:dripstone_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_dripstone" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_dripstone_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_dripstone_sc.json new file mode 100644 index 00000000..45c0a3b3 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_dripstone_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:dripstone_block" + }, + "result": { + "id": "absentbydesign:slab_dripstone", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_emerald.json b/src/main/resources/data/absentbydesign/recipe/slab_emerald.json new file mode 100644 index 00000000..6e8d389c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_emerald.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:emerald_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_emerald" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_emerald_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_emerald_sc.json new file mode 100644 index 00000000..d86195d9 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_emerald_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:emerald_block" + }, + "result": { + "id": "absentbydesign:slab_emerald", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_end_stone.json b/src/main/resources/data/absentbydesign/recipe/slab_end_stone.json new file mode 100644 index 00000000..81e59b26 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_end_stone.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:end_stone" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_end_stone" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_end_stone_from_end_stone_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_end_stone_from_end_stone_stonecutting.json new file mode 100644 index 00000000..ebd36d04 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_end_stone_from_end_stone_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:end_stone" + }, + "result": { + "id": "absentbydesign:slab_end_stone", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_gilded_blackstone.json b/src/main/resources/data/absentbydesign/recipe/slab_gilded_blackstone.json new file mode 100644 index 00000000..c3e87f85 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_gilded_blackstone.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:gilded_blackstone" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_gilded_blackstone" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_gilded_blackstone_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_gilded_blackstone_sc.json new file mode 100644 index 00000000..e3cf38dd --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_gilded_blackstone_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:gilded_blackstone" + }, + "result": { + "id": "absentbydesign:slab_gilded_blackstone", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass.json b/src/main/resources/data/absentbydesign/recipe/slab_glass.json new file mode 100644 index 00000000..e08a98e5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_glass" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_black.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_black.json new file mode 100644 index 00000000..6d560921 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_black.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:black_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_glass_black" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_black_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_black_sc.json new file mode 100644 index 00000000..8e6b7344 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_black_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:black_stained_glass" + }, + "result": { + "id": "absentbydesign:slab_glass_black", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_blue.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_blue.json new file mode 100644 index 00000000..8b49fedf --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_blue.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:blue_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_glass_blue" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_blue_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_blue_sc.json new file mode 100644 index 00000000..19b7bcda --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_blue_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:blue_stained_glass" + }, + "result": { + "id": "absentbydesign:slab_glass_blue", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_brown.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_brown.json new file mode 100644 index 00000000..85c6048c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_brown.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:brown_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_glass_brown" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_brown_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_brown_sc.json new file mode 100644 index 00000000..11de9ce0 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_brown_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:brown_stained_glass" + }, + "result": { + "id": "absentbydesign:slab_glass_brown", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_cyan.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_cyan.json new file mode 100644 index 00000000..8379bad5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_cyan.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:cyan_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_glass_cyan" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_cyan_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_cyan_sc.json new file mode 100644 index 00000000..6f9fd5d2 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_cyan_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cyan_stained_glass" + }, + "result": { + "id": "absentbydesign:slab_glass_cyan", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_gray.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_gray.json new file mode 100644 index 00000000..c5d85848 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_gray.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:gray_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_glass_gray" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_gray_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_gray_sc.json new file mode 100644 index 00000000..6d686ddf --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_gray_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:gray_stained_glass" + }, + "result": { + "id": "absentbydesign:slab_glass_gray", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_green.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_green.json new file mode 100644 index 00000000..81eeddf5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_green.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:green_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_glass_green" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_green_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_green_sc.json new file mode 100644 index 00000000..3c532daf --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_green_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:green_stained_glass" + }, + "result": { + "id": "absentbydesign:slab_glass_green", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_light_blue.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_light_blue.json new file mode 100644 index 00000000..78054074 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_light_blue.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:light_blue_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_glass_light_blue" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_light_blue_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_light_blue_sc.json new file mode 100644 index 00000000..a5f10d1b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_light_blue_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:light_blue_stained_glass" + }, + "result": { + "id": "absentbydesign:slab_glass_light_blue", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_light_gray.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_light_gray.json new file mode 100644 index 00000000..644a5f11 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_light_gray.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:light_gray_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_glass_light_gray" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_light_gray_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_light_gray_sc.json new file mode 100644 index 00000000..3eefa710 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_light_gray_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:light_gray_stained_glass" + }, + "result": { + "id": "absentbydesign:slab_glass_light_gray", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_lime.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_lime.json new file mode 100644 index 00000000..3f1ce699 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_lime.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:lime_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_glass_lime" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_lime_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_lime_sc.json new file mode 100644 index 00000000..3be6c1fe --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_lime_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:lime_stained_glass" + }, + "result": { + "id": "absentbydesign:slab_glass_lime", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_magenta.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_magenta.json new file mode 100644 index 00000000..e309ec1d --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_magenta.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:magenta_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_glass_magenta" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_magenta_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_magenta_sc.json new file mode 100644 index 00000000..a3090535 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_magenta_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:magenta_stained_glass" + }, + "result": { + "id": "absentbydesign:slab_glass_magenta", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_orange.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_orange.json new file mode 100644 index 00000000..d9613a42 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_orange.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:orange_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_glass_orange" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_orange_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_orange_sc.json new file mode 100644 index 00000000..2629fc0a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_orange_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:orange_stained_glass" + }, + "result": { + "id": "absentbydesign:slab_glass_orange", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_pink.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_pink.json new file mode 100644 index 00000000..70fc1ae5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_pink.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:pink_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_glass_pink" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_pink_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_pink_sc.json new file mode 100644 index 00000000..f8fa1915 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_pink_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:pink_stained_glass" + }, + "result": { + "id": "absentbydesign:slab_glass_pink", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_purple.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_purple.json new file mode 100644 index 00000000..c9c4ab72 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_purple.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:purple_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_glass_purple" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_purple_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_purple_sc.json new file mode 100644 index 00000000..ba81cd5e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_purple_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:purple_stained_glass" + }, + "result": { + "id": "absentbydesign:slab_glass_purple", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_red.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_red.json new file mode 100644 index 00000000..a2870f34 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_red.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:red_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_glass_red" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_red_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_red_sc.json new file mode 100644 index 00000000..d4cb15b6 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_red_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:red_stained_glass" + }, + "result": { + "id": "absentbydesign:slab_glass_red", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_sc.json new file mode 100644 index 00000000..fb8e6f6f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:glass" + }, + "result": { + "id": "absentbydesign:slab_glass", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_white.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_white.json new file mode 100644 index 00000000..7368425c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_white.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:white_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_glass_white" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_white_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_white_sc.json new file mode 100644 index 00000000..995a5759 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_white_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:white_stained_glass" + }, + "result": { + "id": "absentbydesign:slab_glass_white", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_yellow.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_yellow.json new file mode 100644 index 00000000..6142b783 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_yellow.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:yellow_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_glass_yellow" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glass_yellow_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_glass_yellow_sc.json new file mode 100644 index 00000000..7abfce6d --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glass_yellow_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:yellow_stained_glass" + }, + "result": { + "id": "absentbydesign:slab_glass_yellow", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glowstone.json b/src/main/resources/data/absentbydesign/recipe/slab_glowstone.json new file mode 100644 index 00000000..a26960fa --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glowstone.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:glowstone" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_glowstone" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_glowstone_from_glowstone_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_glowstone_from_glowstone_stonecutting.json new file mode 100644 index 00000000..b6d65e5c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_glowstone_from_glowstone_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:glowstone" + }, + "result": { + "id": "absentbydesign:slab_glowstone", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_gold.json b/src/main/resources/data/absentbydesign/recipe/slab_gold.json new file mode 100644 index 00000000..0d82410f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_gold.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:gold_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_gold" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_gold_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_gold_sc.json new file mode 100644 index 00000000..3f67b090 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_gold_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:gold_block" + }, + "result": { + "id": "absentbydesign:slab_gold", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_honeycomb.json b/src/main/resources/data/absentbydesign/recipe/slab_honeycomb.json new file mode 100644 index 00000000..ccb28959 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_honeycomb.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:honeycomb_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_honeycomb" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_honeycomb_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_honeycomb_sc.json new file mode 100644 index 00000000..4224e263 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_honeycomb_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:honeycomb_block" + }, + "result": { + "id": "absentbydesign:slab_honeycomb", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_iron.json b/src/main/resources/data/absentbydesign/recipe/slab_iron.json new file mode 100644 index 00000000..78c6f8c4 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_iron.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:iron_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_iron" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_iron_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_iron_sc.json new file mode 100644 index 00000000..9a33a438 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_iron_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:iron_block" + }, + "result": { + "id": "absentbydesign:slab_iron", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_lapis.json b/src/main/resources/data/absentbydesign/recipe/slab_lapis.json new file mode 100644 index 00000000..e1811a20 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_lapis.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:lapis_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_lapis" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_lapis_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_lapis_sc.json new file mode 100644 index 00000000..6c45a321 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_lapis_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:lapis_block" + }, + "result": { + "id": "absentbydesign:slab_lapis", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_lodestone.json b/src/main/resources/data/absentbydesign/recipe/slab_lodestone.json new file mode 100644 index 00000000..c8463a7e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_lodestone.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:lodestone" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_lodestone" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_lodestone_from_lodestone_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_lodestone_from_lodestone_stonecutting.json new file mode 100644 index 00000000..b8dbea7b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_lodestone_from_lodestone_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:lodestone" + }, + "result": { + "id": "absentbydesign:slab_lodestone", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_magma.json b/src/main/resources/data/absentbydesign/recipe/slab_magma.json new file mode 100644 index 00000000..91052475 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_magma.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:magma_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_magma" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_magma_from_magma_block_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_magma_from_magma_block_stonecutting.json new file mode 100644 index 00000000..25a47da8 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_magma_from_magma_block_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:magma_block" + }, + "result": { + "id": "absentbydesign:slab_magma", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_moss.json b/src/main/resources/data/absentbydesign/recipe/slab_moss.json new file mode 100644 index 00000000..d549f28b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_moss.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:moss_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_moss" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_moss_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_moss_sc.json new file mode 100644 index 00000000..413ce9ef --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_moss_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:moss_block" + }, + "result": { + "id": "absentbydesign:slab_moss", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_mud.json b/src/main/resources/data/absentbydesign/recipe/slab_mud.json new file mode 100644 index 00000000..cea7bf36 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_mud.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:mud" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_mud" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_mud_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_mud_sc.json new file mode 100644 index 00000000..5a3895a0 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_mud_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:mud" + }, + "result": { + "id": "absentbydesign:slab_mud", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_muddy_mangrove_roots.json b/src/main/resources/data/absentbydesign/recipe/slab_muddy_mangrove_roots.json new file mode 100644 index 00000000..88200dce --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_muddy_mangrove_roots.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:muddy_mangrove_roots" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_muddy_mangrove_roots" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_muddy_mangrove_roots_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_muddy_mangrove_roots_sc.json new file mode 100644 index 00000000..26c78711 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_muddy_mangrove_roots_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:muddy_mangrove_roots" + }, + "result": { + "id": "absentbydesign:slab_muddy_mangrove_roots", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_mushroom_polished.json b/src/main/resources/data/absentbydesign/recipe/slab_mushroom_polished.json new file mode 100644 index 00000000..f4cda886 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_mushroom_polished.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "#" + ], + "key": { + "#": { + "item": "absentbydesign:slab_mushroom_stem" + } + }, + "result": { + "count": 1, + "id": "absentbydesign:slab_mushroom_polished" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_mushroom_polished_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_mushroom_polished_sc.json new file mode 100644 index 00000000..8dedc0b4 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_mushroom_polished_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "absentbydesign:slab_mushroom_stem" + }, + "result": { + "id": "absentbydesign:slab_mushroom_polished", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_mushroom_stem.json b/src/main/resources/data/absentbydesign/recipe/slab_mushroom_stem.json new file mode 100644 index 00000000..217f3798 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_mushroom_stem.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:mushroom_stem" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_mushroom_stem" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_mushroom_stem_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_mushroom_stem_sc.json new file mode 100644 index 00000000..2c66c260 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_mushroom_stem_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:mushroom_stem" + }, + "result": { + "id": "absentbydesign:slab_mushroom_stem", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_netherite.json b/src/main/resources/data/absentbydesign/recipe/slab_netherite.json new file mode 100644 index 00000000..a59ff6f4 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_netherite.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:netherite_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_netherite" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_netherite_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_netherite_sc.json new file mode 100644 index 00000000..f1e767bc --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_netherite_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:netherite_block" + }, + "result": { + "id": "absentbydesign:slab_netherite", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_netherrack.json b/src/main/resources/data/absentbydesign/recipe/slab_netherrack.json new file mode 100644 index 00000000..cb7a9938 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_netherrack.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:netherrack" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_netherrack" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_netherrack_from_netherrack_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_netherrack_from_netherrack_stonecutting.json new file mode 100644 index 00000000..e2f07be2 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_netherrack_from_netherrack_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:netherrack" + }, + "result": { + "id": "absentbydesign:slab_netherrack", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_obsidian.json b/src/main/resources/data/absentbydesign/recipe/slab_obsidian.json new file mode 100644 index 00000000..7432d41f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_obsidian.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:obsidian" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_obsidian" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_obsidian_from_obsidian_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_obsidian_from_obsidian_stonecutting.json new file mode 100644 index 00000000..2b361519 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_obsidian_from_obsidian_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:obsidian" + }, + "result": { + "id": "absentbydesign:slab_obsidian", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_ochre_froglight.json b/src/main/resources/data/absentbydesign/recipe/slab_ochre_froglight.json new file mode 100644 index 00000000..7283564e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_ochre_froglight.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:ochre_froglight" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_ochre_froglight" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_ochre_froglight_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_ochre_froglight_sc.json new file mode 100644 index 00000000..509f2934 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_ochre_froglight_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:ochre_froglight" + }, + "result": { + "id": "absentbydesign:slab_ochre_froglight", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_packed_ice.json b/src/main/resources/data/absentbydesign/recipe/slab_packed_ice.json new file mode 100644 index 00000000..7d9ab258 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_packed_ice.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:packed_ice" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_packed_ice" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_packed_ice_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_packed_ice_sc.json new file mode 100644 index 00000000..e65319e8 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_packed_ice_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:packed_ice" + }, + "result": { + "id": "absentbydesign:slab_packed_ice", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_packed_mud.json b/src/main/resources/data/absentbydesign/recipe/slab_packed_mud.json new file mode 100644 index 00000000..53706296 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_packed_mud.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:packed_mud" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_packed_mud" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_packed_mud_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_packed_mud_sc.json new file mode 100644 index 00000000..f510b42f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_packed_mud_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:packed_mud" + }, + "result": { + "id": "absentbydesign:slab_packed_mud", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_pearlescent_froglight.json b/src/main/resources/data/absentbydesign/recipe/slab_pearlescent_froglight.json new file mode 100644 index 00000000..2920bbe4 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_pearlescent_froglight.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:pearlescent_froglight" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_pearlescent_froglight" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_pearlescent_froglight_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_pearlescent_froglight_sc.json new file mode 100644 index 00000000..5db2dafe --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_pearlescent_froglight_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:pearlescent_froglight" + }, + "result": { + "id": "absentbydesign:slab_pearlescent_froglight", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_polished_basalt.json b/src/main/resources/data/absentbydesign/recipe/slab_polished_basalt.json new file mode 100644 index 00000000..a1a271f4 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_polished_basalt.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:polished_basalt" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_polished_basalt" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_polished_basalt_from_polished_basalt_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_polished_basalt_from_polished_basalt_stonecutting.json new file mode 100644 index 00000000..95fca71a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_polished_basalt_from_polished_basalt_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:polished_basalt" + }, + "result": { + "id": "absentbydesign:slab_polished_basalt", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_quartz_bricks.json b/src/main/resources/data/absentbydesign/recipe/slab_quartz_bricks.json new file mode 100644 index 00000000..7d760483 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_quartz_bricks.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:quartz_bricks" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_quartz_bricks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_quartz_bricks_from_quartz_bricks_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_quartz_bricks_from_quartz_bricks_stonecutting.json new file mode 100644 index 00000000..4e19a74f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_quartz_bricks_from_quartz_bricks_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:quartz_bricks" + }, + "result": { + "id": "absentbydesign:slab_quartz_bricks", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_raw_copper.json b/src/main/resources/data/absentbydesign/recipe/slab_raw_copper.json new file mode 100644 index 00000000..b6773010 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_raw_copper.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:raw_copper_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_raw_copper" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_raw_copper_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_raw_copper_sc.json new file mode 100644 index 00000000..fc5a7f8f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_raw_copper_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:raw_copper_block" + }, + "result": { + "id": "absentbydesign:slab_raw_copper", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_raw_gold.json b/src/main/resources/data/absentbydesign/recipe/slab_raw_gold.json new file mode 100644 index 00000000..5d02a878 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_raw_gold.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:raw_gold_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_raw_gold" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_raw_gold_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_raw_gold_sc.json new file mode 100644 index 00000000..d286fea3 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_raw_gold_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:raw_gold_block" + }, + "result": { + "id": "absentbydesign:slab_raw_gold", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_raw_iron.json b/src/main/resources/data/absentbydesign/recipe/slab_raw_iron.json new file mode 100644 index 00000000..21959dc7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_raw_iron.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:raw_iron_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_raw_iron" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_raw_iron_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_raw_iron_sc.json new file mode 100644 index 00000000..bf99821c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_raw_iron_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:raw_iron_block" + }, + "result": { + "id": "absentbydesign:slab_raw_iron", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_red_mushroom.json b/src/main/resources/data/absentbydesign/recipe/slab_red_mushroom.json new file mode 100644 index 00000000..b4873afb --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_red_mushroom.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:red_mushroom_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_red_mushroom" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_red_mushroom_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_red_mushroom_stonecutting.json new file mode 100644 index 00000000..4073ce45 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_red_mushroom_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:red_mushroom_block" + }, + "result": { + "id": "absentbydesign:slab_red_mushroom", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_reinforced_deepslate.json b/src/main/resources/data/absentbydesign/recipe/slab_reinforced_deepslate.json new file mode 100644 index 00000000..e1301d0e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_reinforced_deepslate.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:reinforced_deepslate" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_reinforced_deepslate" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_reinforced_deepslate_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_reinforced_deepslate_sc.json new file mode 100644 index 00000000..dce83241 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_reinforced_deepslate_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:reinforced_deepslate" + }, + "result": { + "id": "absentbydesign:slab_reinforced_deepslate", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_rooted_dirt.json b/src/main/resources/data/absentbydesign/recipe/slab_rooted_dirt.json new file mode 100644 index 00000000..71c4e565 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_rooted_dirt.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:rooted_dirt" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_rooted_dirt" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_rooted_dirt_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_rooted_dirt_sc.json new file mode 100644 index 00000000..494082cc --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_rooted_dirt_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:rooted_dirt" + }, + "result": { + "id": "absentbydesign:slab_rooted_dirt", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_sculk.json b/src/main/resources/data/absentbydesign/recipe/slab_sculk.json new file mode 100644 index 00000000..80c65874 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_sculk.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:sculk" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_sculk" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_sculk_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_sculk_sc.json new file mode 100644 index 00000000..d743ed0d --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_sculk_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:sculk" + }, + "result": { + "id": "absentbydesign:slab_sculk", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_sea_lantern.json b/src/main/resources/data/absentbydesign/recipe/slab_sea_lantern.json new file mode 100644 index 00000000..0288c0a5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_sea_lantern.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:sea_lantern" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_sea_lantern" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_sea_lantern_from_sea_lantern_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_sea_lantern_from_sea_lantern_stonecutting.json new file mode 100644 index 00000000..eed6ecf0 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_sea_lantern_from_sea_lantern_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:sea_lantern" + }, + "result": { + "id": "absentbydesign:slab_sea_lantern", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_shroomlight.json b/src/main/resources/data/absentbydesign/recipe/slab_shroomlight.json new file mode 100644 index 00000000..c9bb7d33 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_shroomlight.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:shroomlight" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_shroomlight" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_shroomlight_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_shroomlight_sc.json new file mode 100644 index 00000000..092243e2 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_shroomlight_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:shroomlight" + }, + "result": { + "id": "absentbydesign:slab_shroomlight", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_smooth_basalt.json b/src/main/resources/data/absentbydesign/recipe/slab_smooth_basalt.json new file mode 100644 index 00000000..d6a49810 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_smooth_basalt.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:smooth_basalt" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_smooth_basalt" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_smooth_basalt_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_smooth_basalt_sc.json new file mode 100644 index 00000000..b4e14306 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_smooth_basalt_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:smooth_basalt" + }, + "result": { + "id": "absentbydesign:slab_smooth_basalt", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_snow.json b/src/main/resources/data/absentbydesign/recipe/slab_snow.json similarity index 75% rename from src/main/resources/data/absentbydesign/recipes/slab_snow.json rename to src/main/resources/data/absentbydesign/recipe/slab_snow.json index 795c2ea8..3627671b 100644 --- a/src/main/resources/data/absentbydesign/recipes/slab_snow.json +++ b/src/main/resources/data/absentbydesign/recipe/slab_snow.json @@ -11,7 +11,7 @@ } }, "result": { - "item": "absentbydesign:slab_snow", - "count": 1 + "count": 1, + "id": "absentbydesign:slab_snow" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_snow_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_snow_sc.json new file mode 100644 index 00000000..fe456e7a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_snow_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:snow_block" + }, + "result": { + "id": "absentbydesign:slab_snow", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_soul_sand.json b/src/main/resources/data/absentbydesign/recipe/slab_soul_sand.json new file mode 100644 index 00000000..7df65ca7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_soul_sand.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:soul_sand" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_soul_sand" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_soul_sand_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_soul_sand_sc.json new file mode 100644 index 00000000..bfedfecd --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_soul_sand_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:soul_sand" + }, + "result": { + "id": "absentbydesign:slab_soul_sand", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_soul_soil.json b/src/main/resources/data/absentbydesign/recipe/slab_soul_soil.json new file mode 100644 index 00000000..0cb83472 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_soul_soil.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:soul_soil" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_soul_soil" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_soul_soil_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_soul_soil_sc.json new file mode 100644 index 00000000..a14fd5d0 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_soul_soil_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:soul_soil" + }, + "result": { + "id": "absentbydesign:slab_soul_soil", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta.json new file mode 100644 index 00000000..9c94b0f2 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_terracotta" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_black.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_black.json new file mode 100644 index 00000000..002197eb --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_black.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:black_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_terracotta_black" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_black_from_black_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_black_from_black_terracotta_stonecutting.json new file mode 100644 index 00000000..77e9e27d --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_black_from_black_terracotta_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:black_terracotta" + }, + "result": { + "id": "absentbydesign:slab_terracotta_black", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_blue.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_blue.json new file mode 100644 index 00000000..4d4dffe9 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_blue.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:blue_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_terracotta_blue" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_blue_from_blue_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_blue_from_blue_terracotta_stonecutting.json new file mode 100644 index 00000000..b885d988 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_blue_from_blue_terracotta_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:blue_terracotta" + }, + "result": { + "id": "absentbydesign:slab_terracotta_blue", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_brown.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_brown.json new file mode 100644 index 00000000..be2dc672 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_brown.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:brown_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_terracotta_brown" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_brown_from_brown_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_brown_from_brown_terracotta_stonecutting.json new file mode 100644 index 00000000..f0b84025 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_brown_from_brown_terracotta_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:brown_terracotta" + }, + "result": { + "id": "absentbydesign:slab_terracotta_brown", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_cyan.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_cyan.json new file mode 100644 index 00000000..b7177755 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_cyan.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:cyan_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_terracotta_cyan" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_cyan_from_cyan_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_cyan_from_cyan_terracotta_stonecutting.json new file mode 100644 index 00000000..82f4692c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_cyan_from_cyan_terracotta_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cyan_terracotta" + }, + "result": { + "id": "absentbydesign:slab_terracotta_cyan", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_gray.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_gray.json new file mode 100644 index 00000000..a783ab33 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_gray.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:gray_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_terracotta_gray" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_gray_from_gray_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_gray_from_gray_terracotta_stonecutting.json new file mode 100644 index 00000000..8ec95fe4 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_gray_from_gray_terracotta_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:gray_terracotta" + }, + "result": { + "id": "absentbydesign:slab_terracotta_gray", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_green.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_green.json new file mode 100644 index 00000000..86fed46a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_green.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:green_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_terracotta_green" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_green_from_green_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_green_from_green_terracotta_stonecutting.json new file mode 100644 index 00000000..95854dc5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_green_from_green_terracotta_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:green_terracotta" + }, + "result": { + "id": "absentbydesign:slab_terracotta_green", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_light_blue.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_light_blue.json new file mode 100644 index 00000000..7833d8ad --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_light_blue.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:light_blue_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_terracotta_light_blue" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_light_blue_from_light_blue_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_light_blue_from_light_blue_terracotta_stonecutting.json new file mode 100644 index 00000000..4aa63b71 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_light_blue_from_light_blue_terracotta_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:light_blue_terracotta" + }, + "result": { + "id": "absentbydesign:slab_terracotta_light_blue", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_light_gray.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_light_gray.json new file mode 100644 index 00000000..cdc55978 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_light_gray.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:light_gray_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_terracotta_light_gray" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_light_gray_from_light_gray_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_light_gray_from_light_gray_terracotta_stonecutting.json new file mode 100644 index 00000000..777d8ee0 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_light_gray_from_light_gray_terracotta_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:light_gray_terracotta" + }, + "result": { + "id": "absentbydesign:slab_terracotta_light_gray", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_lime.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_lime.json new file mode 100644 index 00000000..52021503 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_lime.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:lime_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_terracotta_lime" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_lime_from_lime_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_lime_from_lime_terracotta_stonecutting.json new file mode 100644 index 00000000..8deb85c9 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_lime_from_lime_terracotta_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:lime_terracotta" + }, + "result": { + "id": "absentbydesign:slab_terracotta_lime", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_magenta.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_magenta.json new file mode 100644 index 00000000..c70a3c63 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_magenta.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:magenta_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_terracotta_magenta" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_magenta_from_magenta_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_magenta_from_magenta_terracotta_stonecutting.json new file mode 100644 index 00000000..6d521c6b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_magenta_from_magenta_terracotta_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:magenta_terracotta" + }, + "result": { + "id": "absentbydesign:slab_terracotta_magenta", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_orange.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_orange.json new file mode 100644 index 00000000..a7385b9d --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_orange.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:orange_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_terracotta_orange" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_orange_from_orange_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_orange_from_orange_terracotta_stonecutting.json new file mode 100644 index 00000000..4fd0c33b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_orange_from_orange_terracotta_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:orange_terracotta" + }, + "result": { + "id": "absentbydesign:slab_terracotta_orange", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_pink.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_pink.json new file mode 100644 index 00000000..56526380 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_pink.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:pink_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_terracotta_pink" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_pink_from_pink_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_pink_from_pink_terracotta_stonecutting.json new file mode 100644 index 00000000..a534cc20 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_pink_from_pink_terracotta_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:pink_terracotta" + }, + "result": { + "id": "absentbydesign:slab_terracotta_pink", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_purple.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_purple.json new file mode 100644 index 00000000..e3e7e66b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_purple.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:purple_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_terracotta_purple" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_purple_from_purple_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_purple_from_purple_terracotta_stonecutting.json new file mode 100644 index 00000000..7ec3bd35 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_purple_from_purple_terracotta_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:purple_terracotta" + }, + "result": { + "id": "absentbydesign:slab_terracotta_purple", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_red.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_red.json new file mode 100644 index 00000000..de256a25 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_red.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:red_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_terracotta_red" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_red_from_red_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_red_from_red_terracotta_stonecutting.json new file mode 100644 index 00000000..237d4f2b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_red_from_red_terracotta_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:red_terracotta" + }, + "result": { + "id": "absentbydesign:slab_terracotta_red", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_stonecutting.json new file mode 100644 index 00000000..62fc1823 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:terracotta" + }, + "result": { + "id": "absentbydesign:slab_terracotta", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_white.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_white.json new file mode 100644 index 00000000..4926aa3c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_white.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:white_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_terracotta_white" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_white_from_white_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_white_from_white_terracotta_stonecutting.json new file mode 100644 index 00000000..ba34c6d4 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_white_from_white_terracotta_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:white_terracotta" + }, + "result": { + "id": "absentbydesign:slab_terracotta_white", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_yellow.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_yellow.json new file mode 100644 index 00000000..0e54d078 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_yellow.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:yellow_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_terracotta_yellow" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_terracotta_yellow_from_yellow_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_yellow_from_yellow_terracotta_stonecutting.json new file mode 100644 index 00000000..75a9c0e9 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_terracotta_yellow_from_yellow_terracotta_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:yellow_terracotta" + }, + "result": { + "id": "absentbydesign:slab_terracotta_yellow", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_tuff.json b/src/main/resources/data/absentbydesign/recipe/slab_tuff.json new file mode 100644 index 00000000..933084c9 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_tuff.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:tuff" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_tuff" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_tuff_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_tuff_sc.json new file mode 100644 index 00000000..24cca102 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_tuff_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:tuff" + }, + "result": { + "id": "absentbydesign:slab_tuff", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_verdant_froglight.json b/src/main/resources/data/absentbydesign/recipe/slab_verdant_froglight.json new file mode 100644 index 00000000..ff6beee6 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_verdant_froglight.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:verdant_froglight" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_verdant_froglight" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_verdant_froglight_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_verdant_froglight_sc.json new file mode 100644 index 00000000..970c8786 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_verdant_froglight_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:verdant_froglight" + }, + "result": { + "id": "absentbydesign:slab_verdant_froglight", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_black.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_black.json new file mode 100644 index 00000000..0e8657ef --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_black.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:black_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_wool_black" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_black_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_black_sc.json new file mode 100644 index 00000000..8535ba98 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_black_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:black_wool" + }, + "result": { + "id": "absentbydesign:slab_wool_black", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_blue.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_blue.json new file mode 100644 index 00000000..15b86783 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_blue.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:blue_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_wool_blue" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_blue_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_blue_sc.json new file mode 100644 index 00000000..da63391e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_blue_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:blue_wool" + }, + "result": { + "id": "absentbydesign:slab_wool_blue", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_brown.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_brown.json new file mode 100644 index 00000000..4a2e6354 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_brown.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:brown_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_wool_brown" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_brown_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_brown_sc.json new file mode 100644 index 00000000..593c46d1 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_brown_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:brown_wool" + }, + "result": { + "id": "absentbydesign:slab_wool_brown", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_cyan.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_cyan.json new file mode 100644 index 00000000..ce536b63 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_cyan.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:cyan_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_wool_cyan" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_cyan_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_cyan_sc.json new file mode 100644 index 00000000..450b96ab --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_cyan_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cyan_wool" + }, + "result": { + "id": "absentbydesign:slab_wool_cyan", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_gray.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_gray.json new file mode 100644 index 00000000..2340fd2c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_gray.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:gray_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_wool_gray" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_gray_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_gray_sc.json new file mode 100644 index 00000000..a3f02764 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_gray_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:gray_wool" + }, + "result": { + "id": "absentbydesign:slab_wool_gray", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_green.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_green.json new file mode 100644 index 00000000..08e5c084 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_green.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:green_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_wool_green" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_green_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_green_sc.json new file mode 100644 index 00000000..1e4a6361 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_green_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:green_wool" + }, + "result": { + "id": "absentbydesign:slab_wool_green", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_light_blue.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_light_blue.json new file mode 100644 index 00000000..35b802f1 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_light_blue.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:light_blue_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_wool_light_blue" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_light_blue_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_light_blue_sc.json new file mode 100644 index 00000000..05133da2 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_light_blue_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:light_blue_wool" + }, + "result": { + "id": "absentbydesign:slab_wool_light_blue", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_lime.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_lime.json new file mode 100644 index 00000000..b2019970 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_lime.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:lime_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_wool_lime" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_lime_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_lime_sc.json new file mode 100644 index 00000000..c1d93265 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_lime_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:lime_wool" + }, + "result": { + "id": "absentbydesign:slab_wool_lime", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_magenta.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_magenta.json new file mode 100644 index 00000000..a3e99eaf --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_magenta.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:magenta_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_wool_magenta" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_magenta_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_magenta_sc.json new file mode 100644 index 00000000..bb3c9af6 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_magenta_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:magenta_wool" + }, + "result": { + "id": "absentbydesign:slab_wool_magenta", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_orange.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_orange.json new file mode 100644 index 00000000..1b337071 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_orange.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:orange_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_wool_orange" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_orange_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_orange_sc.json new file mode 100644 index 00000000..f107614a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_orange_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:orange_wool" + }, + "result": { + "id": "absentbydesign:slab_wool_orange", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_pink.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_pink.json new file mode 100644 index 00000000..60e97de8 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_pink.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:pink_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_wool_pink" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_pink_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_pink_sc.json new file mode 100644 index 00000000..fc4256ba --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_pink_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:pink_wool" + }, + "result": { + "id": "absentbydesign:slab_wool_pink", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_purple.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_purple.json new file mode 100644 index 00000000..1d4fef07 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_purple.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:purple_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_wool_purple" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_purple_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_purple_sc.json new file mode 100644 index 00000000..0ac53829 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_purple_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:purple_wool" + }, + "result": { + "id": "absentbydesign:slab_wool_purple", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_red.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_red.json new file mode 100644 index 00000000..d2a68a2a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_red.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:red_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_wool_red" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_red_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_red_sc.json new file mode 100644 index 00000000..e9b521eb --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_red_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:red_wool" + }, + "result": { + "id": "absentbydesign:slab_wool_red", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_silver.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_silver.json new file mode 100644 index 00000000..04579e96 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_silver.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:light_gray_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_wool_silver" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_silver_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_silver_sc.json new file mode 100644 index 00000000..9ae2a2d2 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_silver_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:light_gray_wool" + }, + "result": { + "id": "absentbydesign:slab_wool_silver", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_white.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_white.json new file mode 100644 index 00000000..33af08a5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_white.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:white_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_wool_white" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_white_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_white_sc.json new file mode 100644 index 00000000..d84cf5e0 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_white_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:white_wool" + }, + "result": { + "id": "absentbydesign:slab_wool_white", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_yellow.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_yellow.json new file mode 100644 index 00000000..754552c6 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_yellow.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "minecraft:yellow_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:slab_wool_yellow" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/slab_wool_yellow_sc.json b/src/main/resources/data/absentbydesign/recipe/slab_wool_yellow_sc.json new file mode 100644 index 00000000..b47412ec --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/slab_wool_yellow_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:yellow_wool" + }, + "result": { + "id": "absentbydesign:slab_wool_yellow", + "count": 2 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_amethyst.json b/src/main/resources/data/absentbydesign/recipe/stairs_amethyst.json new file mode 100644 index 00000000..92b0b692 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_amethyst.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:amethyst_block" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_amethyst" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_amethyst_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_amethyst_sc.json new file mode 100644 index 00000000..de730920 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_amethyst_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:amethyst_block" + }, + "result": { + "id": "absentbydesign:stairs_amethyst", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_basalt.json b/src/main/resources/data/absentbydesign/recipe/stairs_basalt.json new file mode 100644 index 00000000..00c4e693 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_basalt.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:basalt" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_basalt" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_basalt_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/stairs_basalt_stonecutting.json new file mode 100644 index 00000000..86d20a66 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_basalt_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:basalt" + }, + "result": { + "id": "absentbydesign:stairs_basalt", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_blue_ice.json b/src/main/resources/data/absentbydesign/recipe/stairs_blue_ice.json new file mode 100644 index 00000000..2544f73a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_blue_ice.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:blue_ice" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_blue_ice" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_blue_ice_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_blue_ice_sc.json new file mode 100644 index 00000000..22c2bf91 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_blue_ice_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:blue_ice" + }, + "result": { + "id": "absentbydesign:stairs_blue_ice", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_bone.json b/src/main/resources/data/absentbydesign/recipe/stairs_bone.json similarity index 75% rename from src/main/resources/data/absentbydesign/recipes/stairs_bone.json rename to src/main/resources/data/absentbydesign/recipe/stairs_bone.json index b8785905..cc4b7987 100644 --- a/src/main/resources/data/absentbydesign/recipes/stairs_bone.json +++ b/src/main/resources/data/absentbydesign/recipe/stairs_bone.json @@ -11,7 +11,7 @@ } }, "result": { - "item": "absentbydesign:stairs_bone", - "count": 4 + "count": 4, + "id": "absentbydesign:stairs_bone" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_bone_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_bone_sc.json new file mode 100644 index 00000000..03307e04 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_bone_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:bone_block" + }, + "result": { + "id": "absentbydesign:stairs_bone", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_bricks_cracked.json b/src/main/resources/data/absentbydesign/recipe/stairs_bricks_cracked.json new file mode 100644 index 00000000..4c8d06ac --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_bricks_cracked.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:cracked_stone_bricks" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_bricks_cracked" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_bricks_cracked_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/stairs_bricks_cracked_stonecutting.json new file mode 100644 index 00000000..3afd0a81 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_bricks_cracked_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cracked_stone_bricks" + }, + "result": { + "id": "absentbydesign:stairs_bricks_cracked", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_brown_mushroom.json b/src/main/resources/data/absentbydesign/recipe/stairs_brown_mushroom.json new file mode 100644 index 00000000..3d929881 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_brown_mushroom.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:brown_mushroom_block" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_brown_mushroom" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_brown_mushroom_stonecutting.json b/src/main/resources/data/absentbydesign/recipe/stairs_brown_mushroom_stonecutting.json new file mode 100644 index 00000000..7df3ffff --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_brown_mushroom_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:brown_mushroom_block" + }, + "result": { + "id": "absentbydesign:stairs_brown_mushroom", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_calcite.json b/src/main/resources/data/absentbydesign/recipe/stairs_calcite.json new file mode 100644 index 00000000..33754b66 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_calcite.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:calcite" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_calcite" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_calcite_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_calcite_sc.json new file mode 100644 index 00000000..b1e6784b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_calcite_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:calcite" + }, + "result": { + "id": "absentbydesign:stairs_calcite", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_coarse_dirt.json b/src/main/resources/data/absentbydesign/recipe/stairs_coarse_dirt.json new file mode 100644 index 00000000..b92092d5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_coarse_dirt.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:coarse_dirt" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_coarse_dirt" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_coarse_dirt_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_coarse_dirt_sc.json new file mode 100644 index 00000000..0b151341 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_coarse_dirt_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:coarse_dirt" + }, + "result": { + "id": "absentbydesign:stairs_coarse_dirt", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_black.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_black.json new file mode 100644 index 00000000..348f0d2d --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_black.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:black_concrete" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_concrete_black" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_black_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_black_sc.json new file mode 100644 index 00000000..3ab5cf54 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_black_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:black_concrete" + }, + "result": { + "id": "absentbydesign:stairs_concrete_black", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_blue.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_blue.json new file mode 100644 index 00000000..81d8cc86 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_blue.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:blue_concrete" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_concrete_blue" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_blue_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_blue_sc.json new file mode 100644 index 00000000..ca94925c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_blue_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:blue_concrete" + }, + "result": { + "id": "absentbydesign:stairs_concrete_blue", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_brown.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_brown.json new file mode 100644 index 00000000..f0857710 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_brown.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:brown_concrete" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_concrete_brown" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_brown_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_brown_sc.json new file mode 100644 index 00000000..8b46ecee --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_brown_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:brown_concrete" + }, + "result": { + "id": "absentbydesign:stairs_concrete_brown", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_cyan.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_cyan.json new file mode 100644 index 00000000..794a149d --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_cyan.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:cyan_concrete" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_concrete_cyan" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_cyan_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_cyan_sc.json new file mode 100644 index 00000000..cebcfeca --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_cyan_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cyan_concrete" + }, + "result": { + "id": "absentbydesign:stairs_concrete_cyan", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_gray.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_gray.json new file mode 100644 index 00000000..5e878ef3 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_gray.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:gray_concrete" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_concrete_gray" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_gray_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_gray_sc.json new file mode 100644 index 00000000..e95c7abb --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_gray_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:gray_concrete" + }, + "result": { + "id": "absentbydesign:stairs_concrete_gray", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_green.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_green.json new file mode 100644 index 00000000..0d1be618 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_green.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:green_concrete" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_concrete_green" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_green_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_green_sc.json new file mode 100644 index 00000000..35075e72 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_green_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:green_concrete" + }, + "result": { + "id": "absentbydesign:stairs_concrete_green", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_light_blue.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_light_blue.json new file mode 100644 index 00000000..60677e69 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_light_blue.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:light_blue_concrete" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_concrete_light_blue" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_light_blue_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_light_blue_sc.json new file mode 100644 index 00000000..27db569a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_light_blue_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:light_blue_concrete" + }, + "result": { + "id": "absentbydesign:stairs_concrete_light_blue", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_lime.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_lime.json new file mode 100644 index 00000000..d88923dc --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_lime.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:lime_concrete" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_concrete_lime" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_lime_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_lime_sc.json new file mode 100644 index 00000000..21c6efdb --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_lime_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:lime_concrete" + }, + "result": { + "id": "absentbydesign:stairs_concrete_lime", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_magenta.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_magenta.json new file mode 100644 index 00000000..a569f510 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_magenta.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:magenta_concrete" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_concrete_magenta" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_magenta_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_magenta_sc.json new file mode 100644 index 00000000..b5ad55f9 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_magenta_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:magenta_concrete" + }, + "result": { + "id": "absentbydesign:stairs_concrete_magenta", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_orange.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_orange.json new file mode 100644 index 00000000..3f182cbb --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_orange.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:orange_concrete" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_concrete_orange" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_orange_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_orange_sc.json new file mode 100644 index 00000000..64f32393 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_orange_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:orange_concrete" + }, + "result": { + "id": "absentbydesign:stairs_concrete_orange", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_pink.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_pink.json new file mode 100644 index 00000000..abe63013 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_pink.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:pink_concrete" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_concrete_pink" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_pink_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_pink_sc.json new file mode 100644 index 00000000..0c648710 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_pink_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:pink_concrete" + }, + "result": { + "id": "absentbydesign:stairs_concrete_pink", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_purple.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_purple.json new file mode 100644 index 00000000..e75c4ef6 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_purple.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:purple_concrete" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_concrete_purple" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_purple_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_purple_sc.json new file mode 100644 index 00000000..f009c0b7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_purple_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:purple_concrete" + }, + "result": { + "id": "absentbydesign:stairs_concrete_purple", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_red.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_red.json new file mode 100644 index 00000000..19630934 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_red.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:red_concrete" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_concrete_red" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_red_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_red_sc.json new file mode 100644 index 00000000..2f9974cb --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_red_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:red_concrete" + }, + "result": { + "id": "absentbydesign:stairs_concrete_red", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_silver.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_silver.json new file mode 100644 index 00000000..8f260749 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_silver.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:light_gray_concrete" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_concrete_silver" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_silver_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_silver_sc.json new file mode 100644 index 00000000..ecc21071 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_silver_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:light_gray_concrete" + }, + "result": { + "id": "absentbydesign:stairs_concrete_silver", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_white.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_white.json new file mode 100644 index 00000000..bb26468a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_white.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:white_concrete" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_concrete_white" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_white_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_white_sc.json new file mode 100644 index 00000000..f8599d6d --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_white_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:white_concrete" + }, + "result": { + "id": "absentbydesign:stairs_concrete_white", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_yellow.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_yellow.json new file mode 100644 index 00000000..789e8929 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_yellow.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:yellow_concrete" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_concrete_yellow" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_concrete_yellow_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_yellow_sc.json new file mode 100644 index 00000000..0f97436c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_concrete_yellow_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:yellow_concrete" + }, + "result": { + "id": "absentbydesign:stairs_concrete_yellow", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_cracked_deepslate_bricks.json b/src/main/resources/data/absentbydesign/recipe/stairs_cracked_deepslate_bricks.json new file mode 100644 index 00000000..5fa8e2d3 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_cracked_deepslate_bricks.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:cracked_deepslate_bricks" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_cracked_deepslate_bricks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_cracked_deepslate_bricks_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_cracked_deepslate_bricks_sc.json new file mode 100644 index 00000000..c8068cb5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_cracked_deepslate_bricks_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cracked_deepslate_bricks" + }, + "result": { + "id": "absentbydesign:stairs_cracked_deepslate_bricks", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_cracked_deepslate_tiles.json b/src/main/resources/data/absentbydesign/recipe/stairs_cracked_deepslate_tiles.json new file mode 100644 index 00000000..9b526314 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_cracked_deepslate_tiles.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:cracked_deepslate_tiles" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_cracked_deepslate_tiles" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_cracked_deepslate_tiles_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_cracked_deepslate_tiles_sc.json new file mode 100644 index 00000000..46056a3b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_cracked_deepslate_tiles_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cracked_deepslate_tiles" + }, + "result": { + "id": "absentbydesign:stairs_cracked_deepslate_tiles", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_cracked_nether_bricks.json b/src/main/resources/data/absentbydesign/recipe/stairs_cracked_nether_bricks.json new file mode 100644 index 00000000..e85048ad --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_cracked_nether_bricks.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:cracked_nether_bricks" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_cracked_nether_bricks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_cracked_nether_bricks_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_cracked_nether_bricks_sc.json new file mode 100644 index 00000000..80a7791a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_cracked_nether_bricks_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cracked_nether_bricks" + }, + "result": { + "id": "absentbydesign:stairs_cracked_nether_bricks", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_cracked_polished_blackstone_bricks.json b/src/main/resources/data/absentbydesign/recipe/stairs_cracked_polished_blackstone_bricks.json new file mode 100644 index 00000000..667e73bb --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_cracked_polished_blackstone_bricks.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:cracked_polished_blackstone_bricks" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_cracked_polished_blackstone_bricks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_cracked_polished_blackstone_bricks_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_cracked_polished_blackstone_bricks_sc.json new file mode 100644 index 00000000..696725a5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_cracked_polished_blackstone_bricks_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cracked_polished_blackstone_bricks" + }, + "result": { + "id": "absentbydesign:stairs_cracked_polished_blackstone_bricks", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_crying_obsidian.json b/src/main/resources/data/absentbydesign/recipe/stairs_crying_obsidian.json new file mode 100644 index 00000000..fce46b3b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_crying_obsidian.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:crying_obsidian" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_crying_obsidian" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_crying_obsidian_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_crying_obsidian_sc.json new file mode 100644 index 00000000..2afd85a3 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_crying_obsidian_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:crying_obsidian" + }, + "result": { + "id": "absentbydesign:stairs_crying_obsidian", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_deepslate.json b/src/main/resources/data/absentbydesign/recipe/stairs_deepslate.json new file mode 100644 index 00000000..112f3e3d --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_deepslate.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:deepslate" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_deepslate" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_deepslate_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_deepslate_sc.json new file mode 100644 index 00000000..73fb008b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_deepslate_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:deepslate" + }, + "result": { + "id": "absentbydesign:stairs_deepslate", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_diamond.json b/src/main/resources/data/absentbydesign/recipe/stairs_diamond.json similarity index 75% rename from src/main/resources/data/absentbydesign/recipes/stairs_diamond.json rename to src/main/resources/data/absentbydesign/recipe/stairs_diamond.json index 4c6fc825..aa9f8045 100644 --- a/src/main/resources/data/absentbydesign/recipes/stairs_diamond.json +++ b/src/main/resources/data/absentbydesign/recipe/stairs_diamond.json @@ -11,7 +11,7 @@ } }, "result": { - "item": "absentbydesign:stairs_diamond", - "count": 4 + "count": 4, + "id": "absentbydesign:stairs_diamond" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_diamond_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_diamond_sc.json new file mode 100644 index 00000000..1759ad0c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_diamond_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:diamond_block" + }, + "result": { + "id": "absentbydesign:stairs_diamond", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_dripstone.json b/src/main/resources/data/absentbydesign/recipe/stairs_dripstone.json new file mode 100644 index 00000000..473cb294 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_dripstone.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:dripstone_block" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_dripstone" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_dripstone_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_dripstone_sc.json new file mode 100644 index 00000000..d552a7aa --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_dripstone_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:dripstone_block" + }, + "result": { + "id": "absentbydesign:stairs_dripstone", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_emerald.json b/src/main/resources/data/absentbydesign/recipe/stairs_emerald.json similarity index 75% rename from src/main/resources/data/absentbydesign/recipes/stairs_emerald.json rename to src/main/resources/data/absentbydesign/recipe/stairs_emerald.json index aeb56905..2756b9fe 100644 --- a/src/main/resources/data/absentbydesign/recipes/stairs_emerald.json +++ b/src/main/resources/data/absentbydesign/recipe/stairs_emerald.json @@ -11,7 +11,7 @@ } }, "result": { - "item": "absentbydesign:stairs_emerald", - "count": 4 + "count": 4, + "id": "absentbydesign:stairs_emerald" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_emerald_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_emerald_sc.json new file mode 100644 index 00000000..ab0c467c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_emerald_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:emerald_block" + }, + "result": { + "id": "absentbydesign:stairs_emerald", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_end_stone.json b/src/main/resources/data/absentbydesign/recipe/stairs_end_stone.json new file mode 100644 index 00000000..72a2c978 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_end_stone.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:end_stone" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_end_stone" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_end_stone_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_end_stone_sc.json new file mode 100644 index 00000000..4be6c401 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_end_stone_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:end_stone" + }, + "result": { + "id": "absentbydesign:stairs_end_stone", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_gilded_blackstone.json b/src/main/resources/data/absentbydesign/recipe/stairs_gilded_blackstone.json new file mode 100644 index 00000000..9f5ae14d --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_gilded_blackstone.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:gilded_blackstone" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_gilded_blackstone" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_gilded_blackstone_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_gilded_blackstone_sc.json new file mode 100644 index 00000000..cdb57d35 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_gilded_blackstone_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:gilded_blackstone" + }, + "result": { + "id": "absentbydesign:stairs_gilded_blackstone", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass.json new file mode 100644 index 00000000..a8039e6f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:glass" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_glass" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_black.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_black.json new file mode 100644 index 00000000..83c157e9 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_black.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:black_stained_glass" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_glass_black" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_black_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_black_sc.json new file mode 100644 index 00000000..902b35da --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_black_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:black_stained_glass" + }, + "result": { + "id": "absentbydesign:stairs_glass_black", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_blue.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_blue.json new file mode 100644 index 00000000..f5d5bbc9 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_blue.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:blue_stained_glass" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_glass_blue" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_blue_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_blue_sc.json new file mode 100644 index 00000000..320d4023 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_blue_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:blue_stained_glass" + }, + "result": { + "id": "absentbydesign:stairs_glass_blue", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_brown.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_brown.json new file mode 100644 index 00000000..ad55ee5f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_brown.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:brown_stained_glass" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_glass_brown" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_brown_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_brown_sc.json new file mode 100644 index 00000000..2e9caacf --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_brown_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:brown_stained_glass" + }, + "result": { + "id": "absentbydesign:stairs_glass_brown", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_cyan.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_cyan.json new file mode 100644 index 00000000..87ea99b2 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_cyan.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:cyan_stained_glass" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_glass_cyan" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_cyan_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_cyan_sc.json new file mode 100644 index 00000000..da026ac6 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_cyan_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cyan_stained_glass" + }, + "result": { + "id": "absentbydesign:stairs_glass_cyan", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_gray.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_gray.json new file mode 100644 index 00000000..dab177f5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_gray.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:gray_stained_glass" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_glass_gray" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_gray_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_gray_sc.json new file mode 100644 index 00000000..7fd0a990 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_gray_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:gray_stained_glass" + }, + "result": { + "id": "absentbydesign:stairs_glass_gray", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_green.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_green.json new file mode 100644 index 00000000..ccd0d512 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_green.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:green_stained_glass" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_glass_green" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_green_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_green_sc.json new file mode 100644 index 00000000..29acc8eb --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_green_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:green_stained_glass" + }, + "result": { + "id": "absentbydesign:stairs_glass_green", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_light_blue.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_light_blue.json new file mode 100644 index 00000000..11f7d03e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_light_blue.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:light_blue_stained_glass" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_glass_light_blue" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_light_blue_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_light_blue_sc.json new file mode 100644 index 00000000..c67f33b6 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_light_blue_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:light_blue_stained_glass" + }, + "result": { + "id": "absentbydesign:stairs_glass_light_blue", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_light_gray.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_light_gray.json new file mode 100644 index 00000000..dfcdec90 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_light_gray.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:light_gray_stained_glass" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_glass_light_gray" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_light_gray_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_light_gray_sc.json new file mode 100644 index 00000000..fbe67544 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_light_gray_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:light_gray_stained_glass" + }, + "result": { + "id": "absentbydesign:stairs_glass_light_gray", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_lime.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_lime.json new file mode 100644 index 00000000..4715d683 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_lime.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:lime_stained_glass" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_glass_lime" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_lime_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_lime_sc.json new file mode 100644 index 00000000..d52bac73 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_lime_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:lime_stained_glass" + }, + "result": { + "id": "absentbydesign:stairs_glass_lime", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_magenta.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_magenta.json new file mode 100644 index 00000000..0e337df7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_magenta.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:magenta_stained_glass" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_glass_magenta" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_magenta_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_magenta_sc.json new file mode 100644 index 00000000..d08e59f5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_magenta_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:magenta_stained_glass" + }, + "result": { + "id": "absentbydesign:stairs_glass_magenta", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_orange.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_orange.json new file mode 100644 index 00000000..bdd746ac --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_orange.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:orange_stained_glass" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_glass_orange" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_orange_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_orange_sc.json new file mode 100644 index 00000000..53e6e417 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_orange_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:orange_stained_glass" + }, + "result": { + "id": "absentbydesign:stairs_glass_orange", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_pink.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_pink.json new file mode 100644 index 00000000..b2f9b786 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_pink.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:pink_stained_glass" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_glass_pink" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_pink_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_pink_sc.json new file mode 100644 index 00000000..179e796a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_pink_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:pink_stained_glass" + }, + "result": { + "id": "absentbydesign:stairs_glass_pink", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_purple.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_purple.json new file mode 100644 index 00000000..3d1b10be --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_purple.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:purple_stained_glass" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_glass_purple" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_purple_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_purple_sc.json new file mode 100644 index 00000000..2c25526c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_purple_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:purple_stained_glass" + }, + "result": { + "id": "absentbydesign:stairs_glass_purple", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_red.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_red.json new file mode 100644 index 00000000..e55a87a2 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_red.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:red_stained_glass" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_glass_red" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_red_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_red_sc.json new file mode 100644 index 00000000..4caa288c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_red_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:red_stained_glass" + }, + "result": { + "id": "absentbydesign:stairs_glass_red", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_sc.json new file mode 100644 index 00000000..77f01b66 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:glass" + }, + "result": { + "id": "absentbydesign:stairs_glass", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_white.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_white.json new file mode 100644 index 00000000..c2b89de4 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_white.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:white_stained_glass" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_glass_white" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_white_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_white_sc.json new file mode 100644 index 00000000..ec90f410 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_white_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:white_stained_glass" + }, + "result": { + "id": "absentbydesign:stairs_glass_white", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_yellow.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_yellow.json new file mode 100644 index 00000000..dac76d7c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_yellow.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:yellow_stained_glass" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_glass_yellow" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glass_yellow_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_glass_yellow_sc.json new file mode 100644 index 00000000..acfec299 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glass_yellow_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:yellow_stained_glass" + }, + "result": { + "id": "absentbydesign:stairs_glass_yellow", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glowstone.json b/src/main/resources/data/absentbydesign/recipe/stairs_glowstone.json new file mode 100644 index 00000000..fb9c217a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glowstone.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:glowstone" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_glowstone" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_glowstone_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_glowstone_sc.json new file mode 100644 index 00000000..6f5b3241 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_glowstone_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:glowstone" + }, + "result": { + "id": "absentbydesign:stairs_glowstone", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_gold.json b/src/main/resources/data/absentbydesign/recipe/stairs_gold.json similarity index 75% rename from src/main/resources/data/absentbydesign/recipes/stairs_gold.json rename to src/main/resources/data/absentbydesign/recipe/stairs_gold.json index 99860dc6..b33f0aa9 100644 --- a/src/main/resources/data/absentbydesign/recipes/stairs_gold.json +++ b/src/main/resources/data/absentbydesign/recipe/stairs_gold.json @@ -11,7 +11,7 @@ } }, "result": { - "item": "absentbydesign:stairs_gold", - "count": 4 + "count": 4, + "id": "absentbydesign:stairs_gold" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_gold_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_gold_sc.json new file mode 100644 index 00000000..41a3a4ba --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_gold_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:gold_block" + }, + "result": { + "id": "absentbydesign:stairs_gold", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_honeycomb.json b/src/main/resources/data/absentbydesign/recipe/stairs_honeycomb.json new file mode 100644 index 00000000..0f9bb5b5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_honeycomb.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:honeycomb_block" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_honeycomb" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_honeycomb_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_honeycomb_sc.json new file mode 100644 index 00000000..8adf364b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_honeycomb_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:honeycomb_block" + }, + "result": { + "id": "absentbydesign:stairs_honeycomb", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_iron.json b/src/main/resources/data/absentbydesign/recipe/stairs_iron.json similarity index 75% rename from src/main/resources/data/absentbydesign/recipes/stairs_iron.json rename to src/main/resources/data/absentbydesign/recipe/stairs_iron.json index 50069a38..74d71cab 100644 --- a/src/main/resources/data/absentbydesign/recipes/stairs_iron.json +++ b/src/main/resources/data/absentbydesign/recipe/stairs_iron.json @@ -11,7 +11,7 @@ } }, "result": { - "item": "absentbydesign:stairs_iron", - "count": 4 + "count": 4, + "id": "absentbydesign:stairs_iron" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_iron_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_iron_sc.json new file mode 100644 index 00000000..722682e7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_iron_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:iron_block" + }, + "result": { + "id": "absentbydesign:stairs_iron", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_lapis.json b/src/main/resources/data/absentbydesign/recipe/stairs_lapis.json similarity index 75% rename from src/main/resources/data/absentbydesign/recipes/stairs_lapis.json rename to src/main/resources/data/absentbydesign/recipe/stairs_lapis.json index a1c58229..e39b235b 100644 --- a/src/main/resources/data/absentbydesign/recipes/stairs_lapis.json +++ b/src/main/resources/data/absentbydesign/recipe/stairs_lapis.json @@ -11,7 +11,7 @@ } }, "result": { - "item": "absentbydesign:stairs_lapis", - "count": 4 + "count": 4, + "id": "absentbydesign:stairs_lapis" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_lapis_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_lapis_sc.json new file mode 100644 index 00000000..17d19f40 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_lapis_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:lapis_block" + }, + "result": { + "id": "absentbydesign:stairs_lapis", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_lodestone.json b/src/main/resources/data/absentbydesign/recipe/stairs_lodestone.json new file mode 100644 index 00000000..8fab87b0 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_lodestone.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:lodestone" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_lodestone" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_lodestone_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_lodestone_sc.json new file mode 100644 index 00000000..8b5d8700 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_lodestone_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:lodestone" + }, + "result": { + "id": "absentbydesign:stairs_lodestone", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_magma.json b/src/main/resources/data/absentbydesign/recipe/stairs_magma.json similarity index 75% rename from src/main/resources/data/absentbydesign/recipes/stairs_magma.json rename to src/main/resources/data/absentbydesign/recipe/stairs_magma.json index 33ba4193..7b89fc30 100644 --- a/src/main/resources/data/absentbydesign/recipes/stairs_magma.json +++ b/src/main/resources/data/absentbydesign/recipe/stairs_magma.json @@ -11,7 +11,7 @@ } }, "result": { - "item": "absentbydesign:stairs_magma", - "count": 4 + "count": 4, + "id": "absentbydesign:stairs_magma" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_magma_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_magma_sc.json new file mode 100644 index 00000000..ea53a6e5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_magma_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:magma_block" + }, + "result": { + "id": "absentbydesign:stairs_magma", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_moss.json b/src/main/resources/data/absentbydesign/recipe/stairs_moss.json similarity index 75% rename from src/main/resources/data/absentbydesign/recipes/stairs_moss.json rename to src/main/resources/data/absentbydesign/recipe/stairs_moss.json index 9b0b5749..eb68b50f 100644 --- a/src/main/resources/data/absentbydesign/recipes/stairs_moss.json +++ b/src/main/resources/data/absentbydesign/recipe/stairs_moss.json @@ -11,7 +11,7 @@ } }, "result": { - "item": "absentbydesign:stairs_moss", - "count": 4 + "count": 4, + "id": "absentbydesign:stairs_moss" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_moss_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_moss_sc.json new file mode 100644 index 00000000..5b005512 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_moss_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:moss_block" + }, + "result": { + "id": "absentbydesign:stairs_moss", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_mud.json b/src/main/resources/data/absentbydesign/recipe/stairs_mud.json similarity index 75% rename from src/main/resources/data/absentbydesign/recipes/stairs_mud.json rename to src/main/resources/data/absentbydesign/recipe/stairs_mud.json index b3003dcf..6d7eaeb1 100644 --- a/src/main/resources/data/absentbydesign/recipes/stairs_mud.json +++ b/src/main/resources/data/absentbydesign/recipe/stairs_mud.json @@ -11,7 +11,7 @@ } }, "result": { - "item": "absentbydesign:stairs_mud", - "count": 4 + "count": 4, + "id": "absentbydesign:stairs_mud" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_mud_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_mud_sc.json new file mode 100644 index 00000000..dd279141 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_mud_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:mud" + }, + "result": { + "id": "absentbydesign:stairs_mud", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_muddy_mangrove_roots.json b/src/main/resources/data/absentbydesign/recipe/stairs_muddy_mangrove_roots.json new file mode 100644 index 00000000..c6122176 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_muddy_mangrove_roots.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:muddy_mangrove_roots" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_muddy_mangrove_roots" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_muddy_mangrove_roots_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_muddy_mangrove_roots_sc.json new file mode 100644 index 00000000..dd3c2df5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_muddy_mangrove_roots_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:muddy_mangrove_roots" + }, + "result": { + "id": "absentbydesign:stairs_muddy_mangrove_roots", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_mushroom_polished.json b/src/main/resources/data/absentbydesign/recipe/stairs_mushroom_polished.json new file mode 100644 index 00000000..f83bb00c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_mushroom_polished.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "#" + ], + "key": { + "#": { + "item": "absentbydesign:stairs_mushroom_stem" + } + }, + "result": { + "count": 1, + "id": "absentbydesign:stairs_mushroom_polished" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_mushroom_polished_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_mushroom_polished_sc.json new file mode 100644 index 00000000..a8b4d4e1 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_mushroom_polished_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "absentbydesign:stairs_mushroom_stem" + }, + "result": { + "id": "absentbydesign:stairs_mushroom_polished", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_mushroom_stem.json b/src/main/resources/data/absentbydesign/recipe/stairs_mushroom_stem.json new file mode 100644 index 00000000..f83393da --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_mushroom_stem.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:mushroom_stem" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_mushroom_stem" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_mushroom_stem_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_mushroom_stem_sc.json new file mode 100644 index 00000000..7f39889e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_mushroom_stem_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:mushroom_stem" + }, + "result": { + "id": "absentbydesign:stairs_mushroom_stem", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_netherite.json b/src/main/resources/data/absentbydesign/recipe/stairs_netherite.json new file mode 100644 index 00000000..cb67846c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_netherite.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:netherite_block" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_netherite" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_netherite_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_netherite_sc.json new file mode 100644 index 00000000..5925e330 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_netherite_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:netherite_block" + }, + "result": { + "id": "absentbydesign:stairs_netherite", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_netherrack.json b/src/main/resources/data/absentbydesign/recipe/stairs_netherrack.json new file mode 100644 index 00000000..35775a91 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_netherrack.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:netherrack" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_netherrack" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_netherrack_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_netherrack_sc.json new file mode 100644 index 00000000..e52f0a2a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_netherrack_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:netherrack" + }, + "result": { + "id": "absentbydesign:stairs_netherrack", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_obsidian.json b/src/main/resources/data/absentbydesign/recipe/stairs_obsidian.json new file mode 100644 index 00000000..480e8b83 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_obsidian.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:obsidian" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_obsidian" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_obsidian_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_obsidian_sc.json new file mode 100644 index 00000000..2b13ddcd --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_obsidian_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:obsidian" + }, + "result": { + "id": "absentbydesign:stairs_obsidian", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_ochre_froglight.json b/src/main/resources/data/absentbydesign/recipe/stairs_ochre_froglight.json new file mode 100644 index 00000000..2e348154 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_ochre_froglight.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:ochre_froglight" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_ochre_froglight" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_ochre_froglight_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_ochre_froglight_sc.json new file mode 100644 index 00000000..0595334e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_ochre_froglight_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:ochre_froglight" + }, + "result": { + "id": "absentbydesign:stairs_ochre_froglight", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_packed_ice.json b/src/main/resources/data/absentbydesign/recipe/stairs_packed_ice.json new file mode 100644 index 00000000..5f05c8de --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_packed_ice.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:packed_ice" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_packed_ice" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_packed_ice_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_packed_ice_sc.json new file mode 100644 index 00000000..2419d850 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_packed_ice_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:packed_ice" + }, + "result": { + "id": "absentbydesign:stairs_packed_ice", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_packed_mud.json b/src/main/resources/data/absentbydesign/recipe/stairs_packed_mud.json new file mode 100644 index 00000000..156615d3 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_packed_mud.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:packed_mud" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_packed_mud" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_packed_mud_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_packed_mud_sc.json new file mode 100644 index 00000000..2c26e6c4 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_packed_mud_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:packed_mud" + }, + "result": { + "id": "absentbydesign:stairs_packed_mud", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_pearlescent_froglight.json b/src/main/resources/data/absentbydesign/recipe/stairs_pearlescent_froglight.json new file mode 100644 index 00000000..41acbc2a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_pearlescent_froglight.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:pearlescent_froglight" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_pearlescent_froglight" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_pearlescent_froglight_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_pearlescent_froglight_sc.json new file mode 100644 index 00000000..b2eb8c17 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_pearlescent_froglight_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:pearlescent_froglight" + }, + "result": { + "id": "absentbydesign:stairs_pearlescent_froglight", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_polished_basalt.json b/src/main/resources/data/absentbydesign/recipe/stairs_polished_basalt.json new file mode 100644 index 00000000..266879ac --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_polished_basalt.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:polished_basalt" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_polished_basalt" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_polished_basalt_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_polished_basalt_sc.json new file mode 100644 index 00000000..3710cfff --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_polished_basalt_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:polished_basalt" + }, + "result": { + "id": "absentbydesign:stairs_polished_basalt", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_quartz_bricks.json b/src/main/resources/data/absentbydesign/recipe/stairs_quartz_bricks.json new file mode 100644 index 00000000..3e893166 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_quartz_bricks.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:quartz_bricks" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_quartz_bricks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_quartz_bricks_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_quartz_bricks_sc.json new file mode 100644 index 00000000..a011b432 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_quartz_bricks_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:quartz_bricks" + }, + "result": { + "id": "absentbydesign:stairs_quartz_bricks", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_raw_copper.json b/src/main/resources/data/absentbydesign/recipe/stairs_raw_copper.json new file mode 100644 index 00000000..ff2dfbe0 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_raw_copper.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:raw_copper_block" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_raw_copper" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_raw_copper_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_raw_copper_sc.json new file mode 100644 index 00000000..5507e48d --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_raw_copper_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:raw_copper_block" + }, + "result": { + "id": "absentbydesign:stairs_raw_copper", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_raw_gold.json b/src/main/resources/data/absentbydesign/recipe/stairs_raw_gold.json new file mode 100644 index 00000000..f12f7059 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_raw_gold.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:raw_gold_block" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_raw_gold" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_raw_gold_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_raw_gold_sc.json new file mode 100644 index 00000000..509405fa --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_raw_gold_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:raw_gold_block" + }, + "result": { + "id": "absentbydesign:stairs_raw_gold", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_raw_iron.json b/src/main/resources/data/absentbydesign/recipe/stairs_raw_iron.json new file mode 100644 index 00000000..9cd6a007 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_raw_iron.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:raw_iron_block" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_raw_iron" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_raw_iron_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_raw_iron_sc.json new file mode 100644 index 00000000..ad2e1d49 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_raw_iron_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:raw_iron_block" + }, + "result": { + "id": "absentbydesign:stairs_raw_iron", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_red_mushroom.json b/src/main/resources/data/absentbydesign/recipe/stairs_red_mushroom.json new file mode 100644 index 00000000..262a3e58 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_red_mushroom.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:red_mushroom_block" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_red_mushroom" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_red_mushroom_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_red_mushroom_sc.json new file mode 100644 index 00000000..34619307 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_red_mushroom_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:red_mushroom_block" + }, + "result": { + "id": "absentbydesign:stairs_red_mushroom", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_reinforced_deepslate.json b/src/main/resources/data/absentbydesign/recipe/stairs_reinforced_deepslate.json new file mode 100644 index 00000000..8b51e0f2 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_reinforced_deepslate.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:reinforced_deepslate" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_reinforced_deepslate" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_reinforced_deepslate_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_reinforced_deepslate_sc.json new file mode 100644 index 00000000..cb9c5994 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_reinforced_deepslate_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:reinforced_deepslate" + }, + "result": { + "id": "absentbydesign:stairs_reinforced_deepslate", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_rooted_dirt.json b/src/main/resources/data/absentbydesign/recipe/stairs_rooted_dirt.json new file mode 100644 index 00000000..d9bc1d94 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_rooted_dirt.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:rooted_dirt" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_rooted_dirt" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_rooted_dirt_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_rooted_dirt_sc.json new file mode 100644 index 00000000..91593325 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_rooted_dirt_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:rooted_dirt" + }, + "result": { + "id": "absentbydesign:stairs_rooted_dirt", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_sculk.json b/src/main/resources/data/absentbydesign/recipe/stairs_sculk.json new file mode 100644 index 00000000..b4c91bdb --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_sculk.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:sculk" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_sculk" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_sculk_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_sculk_sc.json new file mode 100644 index 00000000..bcd19a66 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_sculk_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:sculk" + }, + "result": { + "id": "absentbydesign:stairs_sculk", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_sea_lantern.json b/src/main/resources/data/absentbydesign/recipe/stairs_sea_lantern.json new file mode 100644 index 00000000..9a46f6e9 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_sea_lantern.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:sea_lantern" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_sea_lantern" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_sea_lantern_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_sea_lantern_sc.json new file mode 100644 index 00000000..7721ea47 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_sea_lantern_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:sea_lantern" + }, + "result": { + "id": "absentbydesign:stairs_sea_lantern", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_shroomlight.json b/src/main/resources/data/absentbydesign/recipe/stairs_shroomlight.json new file mode 100644 index 00000000..a44f4766 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_shroomlight.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:shroomlight" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_shroomlight" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_shroomlight_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_shroomlight_sc.json new file mode 100644 index 00000000..ca64f187 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_shroomlight_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:shroomlight" + }, + "result": { + "id": "absentbydesign:stairs_shroomlight", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_smooth_basalt.json b/src/main/resources/data/absentbydesign/recipe/stairs_smooth_basalt.json new file mode 100644 index 00000000..23b37ad7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_smooth_basalt.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:smooth_basalt" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_smooth_basalt" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_smooth_basalt_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_smooth_basalt_sc.json new file mode 100644 index 00000000..0cac8302 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_smooth_basalt_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:smooth_basalt" + }, + "result": { + "id": "absentbydesign:stairs_smooth_basalt", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_smooth_stone.json b/src/main/resources/data/absentbydesign/recipe/stairs_smooth_stone.json new file mode 100644 index 00000000..813523d0 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_smooth_stone.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:smooth_stone" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_smooth_stone" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_smooth_stone_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_smooth_stone_sc.json new file mode 100644 index 00000000..9fd7175e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_smooth_stone_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:smooth_stone" + }, + "result": { + "id": "absentbydesign:stairs_smooth_stone", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_snow.json b/src/main/resources/data/absentbydesign/recipe/stairs_snow.json similarity index 75% rename from src/main/resources/data/absentbydesign/recipes/stairs_snow.json rename to src/main/resources/data/absentbydesign/recipe/stairs_snow.json index 48675280..73bb4700 100644 --- a/src/main/resources/data/absentbydesign/recipes/stairs_snow.json +++ b/src/main/resources/data/absentbydesign/recipe/stairs_snow.json @@ -11,7 +11,7 @@ } }, "result": { - "item": "absentbydesign:stairs_snow", - "count": 4 + "count": 4, + "id": "absentbydesign:stairs_snow" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_snow_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_snow_sc.json new file mode 100644 index 00000000..fd8e17f1 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_snow_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:snow_block" + }, + "result": { + "id": "absentbydesign:stairs_snow", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_soul_sand.json b/src/main/resources/data/absentbydesign/recipe/stairs_soul_sand.json new file mode 100644 index 00000000..aa82ebf4 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_soul_sand.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:soul_sand" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_soul_sand" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_soul_sand_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_soul_sand_sc.json new file mode 100644 index 00000000..d2c248c7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_soul_sand_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:soul_sand" + }, + "result": { + "id": "absentbydesign:stairs_soul_sand", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_soul_soil.json b/src/main/resources/data/absentbydesign/recipe/stairs_soul_soil.json new file mode 100644 index 00000000..32e368a9 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_soul_soil.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:soul_soil" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_soul_soil" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_soul_soil_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_soul_soil_sc.json new file mode 100644 index 00000000..d73cd47a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_soul_soil_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:soul_soil" + }, + "result": { + "id": "absentbydesign:stairs_soul_soil", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta.json new file mode 100644 index 00000000..2e4fd607 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:terracotta" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_terracotta" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_black.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_black.json new file mode 100644 index 00000000..5f1f2cf7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_black.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:black_terracotta" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_terracotta_black" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_black_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_black_sc.json new file mode 100644 index 00000000..f18381e0 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_black_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:black_terracotta" + }, + "result": { + "id": "absentbydesign:stairs_terracotta_black", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_blue.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_blue.json new file mode 100644 index 00000000..dd8902ea --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_blue.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:blue_terracotta" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_terracotta_blue" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_blue_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_blue_sc.json new file mode 100644 index 00000000..1deb4da7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_blue_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:yellow_terracotta" + }, + "result": { + "id": "absentbydesign:stairs_terracotta_yellow", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_brown.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_brown.json new file mode 100644 index 00000000..56f5556c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_brown.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:brown_terracotta" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_terracotta_brown" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_brown_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_brown_sc.json new file mode 100644 index 00000000..ea85ecfa --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_brown_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:brown_terracotta" + }, + "result": { + "id": "absentbydesign:stairs_terracotta_brown", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_cyan.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_cyan.json new file mode 100644 index 00000000..ef8f16c1 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_cyan.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:cyan_terracotta" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_terracotta_cyan" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_cyan_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_cyan_sc.json new file mode 100644 index 00000000..8cc2de9c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_cyan_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cyan_terracotta" + }, + "result": { + "id": "absentbydesign:stairs_terracotta_cyan", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_gray.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_gray.json new file mode 100644 index 00000000..80e97cbc --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_gray.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:gray_terracotta" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_terracotta_gray" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_gray_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_gray_sc.json new file mode 100644 index 00000000..c2b79496 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_gray_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:gray_terracotta" + }, + "result": { + "id": "absentbydesign:stairs_terracotta_gray", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_green.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_green.json new file mode 100644 index 00000000..3826b29b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_green.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:green_terracotta" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_terracotta_green" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_green_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_green_sc.json new file mode 100644 index 00000000..5532c946 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_green_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:green_terracotta" + }, + "result": { + "id": "absentbydesign:stairs_terracotta_green", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_light_blue.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_light_blue.json new file mode 100644 index 00000000..71d345be --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_light_blue.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:light_blue_terracotta" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_terracotta_light_blue" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_light_blue_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_light_blue_sc.json new file mode 100644 index 00000000..9e7d60af --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_light_blue_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:light_blue_terracotta" + }, + "result": { + "id": "absentbydesign:stairs_terracotta_light_blue", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_light_gray.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_light_gray.json new file mode 100644 index 00000000..864d3fc3 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_light_gray.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:light_gray_terracotta" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_terracotta_light_gray" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_light_gray_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_light_gray_sc.json new file mode 100644 index 00000000..3cbb02c9 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_light_gray_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:light_gray_terracotta" + }, + "result": { + "id": "absentbydesign:stairs_terracotta_light_gray", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_lime.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_lime.json new file mode 100644 index 00000000..44df1d28 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_lime.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:lime_terracotta" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_terracotta_lime" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_lime_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_lime_sc.json new file mode 100644 index 00000000..2dfe8aee --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_lime_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:lime_terracotta" + }, + "result": { + "id": "absentbydesign:stairs_terracotta_lime", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_magenta.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_magenta.json new file mode 100644 index 00000000..0db06458 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_magenta.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:magenta_terracotta" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_terracotta_magenta" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_magenta_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_magenta_sc.json new file mode 100644 index 00000000..5219a6ca --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_magenta_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:magenta_terracotta" + }, + "result": { + "id": "absentbydesign:stairs_terracotta_magenta", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_orange.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_orange.json new file mode 100644 index 00000000..553ac08f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_orange.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:orange_terracotta" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_terracotta_orange" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_orange_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_orange_sc.json new file mode 100644 index 00000000..9a59bd51 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_orange_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:orange_terracotta" + }, + "result": { + "id": "absentbydesign:stairs_terracotta_orange", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_pink.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_pink.json new file mode 100644 index 00000000..b428f46c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_pink.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:pink_terracotta" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_terracotta_pink" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_pink_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_pink_sc.json new file mode 100644 index 00000000..6bcc109e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_pink_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:pink_terracotta" + }, + "result": { + "id": "absentbydesign:stairs_terracotta_pink", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_purple.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_purple.json new file mode 100644 index 00000000..aa20a8de --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_purple.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:purple_terracotta" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_terracotta_purple" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_purple_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_purple_sc.json new file mode 100644 index 00000000..a442d624 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_purple_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:purple_terracotta" + }, + "result": { + "id": "absentbydesign:stairs_terracotta_purple", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_red.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_red.json new file mode 100644 index 00000000..559f83ca --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_red.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:red_terracotta" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_terracotta_red" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_red_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_red_sc.json new file mode 100644 index 00000000..30e43234 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_red_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:red_terracotta" + }, + "result": { + "id": "absentbydesign:stairs_terracotta_red", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_sc.json new file mode 100644 index 00000000..5dd4cd2f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:terracotta" + }, + "result": { + "id": "absentbydesign:stairs_terracotta", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_white.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_white.json new file mode 100644 index 00000000..3e8a79d5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_white.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:white_terracotta" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_terracotta_white" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_white_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_white_sc.json new file mode 100644 index 00000000..920ac061 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_white_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:white_terracotta" + }, + "result": { + "id": "absentbydesign:stairs_terracotta_white", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_yellow.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_yellow.json new file mode 100644 index 00000000..25728750 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_yellow.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:yellow_terracotta" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_terracotta_yellow" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_yellow_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_yellow_sc.json new file mode 100644 index 00000000..1deb4da7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_terracotta_yellow_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:yellow_terracotta" + }, + "result": { + "id": "absentbydesign:stairs_terracotta_yellow", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_tuff.json b/src/main/resources/data/absentbydesign/recipe/stairs_tuff.json similarity index 75% rename from src/main/resources/data/absentbydesign/recipes/stairs_tuff.json rename to src/main/resources/data/absentbydesign/recipe/stairs_tuff.json index 13169b34..efc6ff84 100644 --- a/src/main/resources/data/absentbydesign/recipes/stairs_tuff.json +++ b/src/main/resources/data/absentbydesign/recipe/stairs_tuff.json @@ -11,7 +11,7 @@ } }, "result": { - "item": "absentbydesign:stairs_tuff", - "count": 4 + "count": 4, + "id": "absentbydesign:stairs_tuff" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_tuff_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_tuff_sc.json new file mode 100644 index 00000000..b549e149 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_tuff_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:tuff" + }, + "result": { + "id": "absentbydesign:stairs_tuff", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_verdant_froglight.json b/src/main/resources/data/absentbydesign/recipe/stairs_verdant_froglight.json new file mode 100644 index 00000000..b61d2686 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_verdant_froglight.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:verdant_froglight" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_verdant_froglight" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_verdant_froglight_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_verdant_froglight_sc.json new file mode 100644 index 00000000..127e6f16 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_verdant_froglight_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:verdant_froglight" + }, + "result": { + "id": "absentbydesign:stairs_verdant_froglight", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_black.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_black.json new file mode 100644 index 00000000..d8b53ef2 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_black.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:black_wool" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_wool_black" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_black_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_black_sc.json new file mode 100644 index 00000000..870c2478 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_black_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:black_wool" + }, + "result": { + "id": "absentbydesign:stairs_wool_black", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_blue.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_blue.json new file mode 100644 index 00000000..1fd9c069 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_blue.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:blue_wool" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_wool_blue" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_blue_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_blue_sc.json new file mode 100644 index 00000000..4f574e7b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_blue_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:blue_wool" + }, + "result": { + "id": "absentbydesign:stairs_wool_blue", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_brown.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_brown.json new file mode 100644 index 00000000..6af01221 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_brown.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:brown_wool" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_wool_brown" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_brown_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_brown_sc.json new file mode 100644 index 00000000..0ddb3276 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_brown_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:brown_wool" + }, + "result": { + "id": "absentbydesign:stairs_wool_brown", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_cyan.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_cyan.json new file mode 100644 index 00000000..5ab1f548 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_cyan.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:cyan_wool" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_wool_cyan" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_cyan_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_cyan_sc.json new file mode 100644 index 00000000..5ef436da --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_cyan_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cyan_wool" + }, + "result": { + "id": "absentbydesign:stairs_wool_cyan", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_gray.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_gray.json new file mode 100644 index 00000000..66d11e9f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_gray.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:gray_wool" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_wool_gray" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_gray_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_gray_sc.json new file mode 100644 index 00000000..14d31bbf --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_gray_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:gray_wool" + }, + "result": { + "id": "absentbydesign:stairs_wool_gray", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_green.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_green.json new file mode 100644 index 00000000..11611f6c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_green.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:green_wool" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_wool_green" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_green_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_green_sc.json new file mode 100644 index 00000000..3afdbe6e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_green_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:green_wool" + }, + "result": { + "id": "absentbydesign:stairs_wool_green", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_light_blue.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_light_blue.json new file mode 100644 index 00000000..744829d2 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_light_blue.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:light_blue_wool" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_wool_light_blue" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_light_blue_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_light_blue_sc.json new file mode 100644 index 00000000..7b75c6cc --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_light_blue_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:light_blue_wool" + }, + "result": { + "id": "absentbydesign:stairs_wool_light_blue", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_lime.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_lime.json new file mode 100644 index 00000000..c9937317 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_lime.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:lime_wool" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_wool_lime" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_lime_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_lime_sc.json new file mode 100644 index 00000000..cf7f5144 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_lime_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:lime_wool" + }, + "result": { + "id": "absentbydesign:stairs_wool_lime", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_magenta.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_magenta.json new file mode 100644 index 00000000..474c10ec --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_magenta.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:magenta_wool" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_wool_magenta" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_magenta_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_magenta_sc.json new file mode 100644 index 00000000..72c84a11 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_magenta_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:magenta_wool" + }, + "result": { + "id": "absentbydesign:stairs_wool_magenta", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_orange.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_orange.json new file mode 100644 index 00000000..f21515d7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_orange.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:orange_wool" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_wool_orange" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_orange_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_orange_sc.json new file mode 100644 index 00000000..4f96df01 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_orange_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:orange_wool" + }, + "result": { + "id": "absentbydesign:stairs_wool_orange", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_pink.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_pink.json new file mode 100644 index 00000000..341800c8 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_pink.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:pink_wool" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_wool_pink" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_pink_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_pink_sc.json new file mode 100644 index 00000000..f45f9192 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_pink_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:pink_wool" + }, + "result": { + "id": "absentbydesign:stairs_wool_pink", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_purple.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_purple.json new file mode 100644 index 00000000..1ecd21e5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_purple.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:purple_wool" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_wool_purple" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_purple_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_purple_sc.json new file mode 100644 index 00000000..97cf0289 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_purple_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:purple_wool" + }, + "result": { + "id": "absentbydesign:stairs_wool_purple", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_red.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_red.json new file mode 100644 index 00000000..bdb05485 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_red.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:red_wool" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_wool_red" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_red_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_red_sc.json new file mode 100644 index 00000000..0ff099ac --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_red_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:red_wool" + }, + "result": { + "id": "absentbydesign:stairs_wool_red", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_silver.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_silver.json new file mode 100644 index 00000000..66a8a55d --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_silver.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:light_gray_wool" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_wool_silver" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_silver_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_silver_sc.json new file mode 100644 index 00000000..986c6252 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_silver_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:light_gray_wool" + }, + "result": { + "id": "absentbydesign:stairs_wool_silver", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_white.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_white.json new file mode 100644 index 00000000..92904e36 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_white.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:white_wool" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_wool_white" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_white_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_white_sc.json new file mode 100644 index 00000000..a68a8af7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_white_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:white_wool" + }, + "result": { + "id": "absentbydesign:stairs_wool_white", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_yellow.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_yellow.json new file mode 100644 index 00000000..03d2830e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_yellow.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "minecraft:yellow_wool" + } + }, + "result": { + "count": 4, + "id": "absentbydesign:stairs_wool_yellow" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stairs_wool_yellow_sc.json b/src/main/resources/data/absentbydesign/recipe/stairs_wool_yellow_sc.json new file mode 100644 index 00000000..787874b6 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stairs_wool_yellow_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:yellow_wool" + }, + "result": { + "id": "absentbydesign:stairs_wool_yellow", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stripped_acacia_wood.json b/src/main/resources/data/absentbydesign/recipe/stripped_acacia_wood.json new file mode 100644 index 00000000..da58e08c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stripped_acacia_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "#", + "#" + ], + "key": { + "#": { + "item": "minecraft:stripped_acacia_log" + } + }, + "result": { + "count": 2, + "id": "minecraft:stripped_acacia_wood" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stripped_birch_wood.json b/src/main/resources/data/absentbydesign/recipe/stripped_birch_wood.json new file mode 100644 index 00000000..c723852e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stripped_birch_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "#", + "#" + ], + "key": { + "#": { + "item": "minecraft:stripped_birch_log" + } + }, + "result": { + "count": 2, + "id": "minecraft:stripped_birch_wood" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stripped_dark_oak_wood.json b/src/main/resources/data/absentbydesign/recipe/stripped_dark_oak_wood.json new file mode 100644 index 00000000..d8d563ad --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stripped_dark_oak_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "#", + "#" + ], + "key": { + "#": { + "item": "minecraft:stripped_dark_oak_log" + } + }, + "result": { + "count": 2, + "id": "minecraft:stripped_dark_oak_wood" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stripped_jungle_wood.json b/src/main/resources/data/absentbydesign/recipe/stripped_jungle_wood.json new file mode 100644 index 00000000..19512a7e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stripped_jungle_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "#", + "#" + ], + "key": { + "#": { + "item": "minecraft:stripped_jungle_log" + } + }, + "result": { + "count": 2, + "id": "minecraft:stripped_jungle_wood" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stripped_oak_wood.json b/src/main/resources/data/absentbydesign/recipe/stripped_oak_wood.json new file mode 100644 index 00000000..098ae15c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stripped_oak_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "#", + "#" + ], + "key": { + "#": { + "item": "minecraft:stripped_oak_log" + } + }, + "result": { + "count": 2, + "id": "minecraft:stripped_oak_wood" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/stripped_spruce_wood.json b/src/main/resources/data/absentbydesign/recipe/stripped_spruce_wood.json new file mode 100644 index 00000000..a9f9aa02 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/stripped_spruce_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "#", + "#" + ], + "key": { + "#": { + "item": "minecraft:stripped_spruce_log" + } + }, + "result": { + "count": 2, + "id": "minecraft:stripped_spruce_wood" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/trapdoor_amethyst.json b/src/main/resources/data/absentbydesign/recipe/trapdoor_amethyst.json new file mode 100644 index 00000000..53400483 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/trapdoor_amethyst.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "minecraft:amethyst_shard" + } + }, + "result": { + "count": 1, + "id": "absentbydesign:trapdoor_amethyst" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/trapdoor_andesite.json b/src/main/resources/data/absentbydesign/recipe/trapdoor_andesite.json new file mode 100644 index 00000000..81637187 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/trapdoor_andesite.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:andesite" + } + }, + "result": { + "count": 2, + "id": "absentbydesign:trapdoor_andesite" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/trapdoor_basalt.json b/src/main/resources/data/absentbydesign/recipe/trapdoor_basalt.json new file mode 100644 index 00000000..3f6e0076 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/trapdoor_basalt.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:basalt" + } + }, + "result": { + "count": 2, + "id": "absentbydesign:trapdoor_basalt" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/trapdoor_blackstone.json b/src/main/resources/data/absentbydesign/recipe/trapdoor_blackstone.json new file mode 100644 index 00000000..257e36d0 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/trapdoor_blackstone.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:blackstone" + } + }, + "result": { + "count": 2, + "id": "absentbydesign:trapdoor_blackstone" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/trapdoor_blackstone_bricks.json b/src/main/resources/data/absentbydesign/recipe/trapdoor_blackstone_bricks.json new file mode 100644 index 00000000..ce057b67 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/trapdoor_blackstone_bricks.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:polished_blackstone_bricks" + } + }, + "result": { + "count": 2, + "id": "absentbydesign:trapdoor_blackstone_bricks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/trapdoor_bricks.json b/src/main/resources/data/absentbydesign/recipe/trapdoor_bricks.json new file mode 100644 index 00000000..826d9a0f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/trapdoor_bricks.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:bricks" + } + }, + "result": { + "count": 2, + "id": "absentbydesign:trapdoor_bricks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/trapdoor_crying_obsidian.json b/src/main/resources/data/absentbydesign/recipe/trapdoor_crying_obsidian.json new file mode 100644 index 00000000..67377475 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/trapdoor_crying_obsidian.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "minecraft:crying_obsidian" + } + }, + "result": { + "count": 1, + "id": "absentbydesign:trapdoor_crying_obsidian" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/trapdoor_diamond.json b/src/main/resources/data/absentbydesign/recipe/trapdoor_diamond.json new file mode 100644 index 00000000..87c3fc82 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/trapdoor_diamond.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "minecraft:diamond" + } + }, + "result": { + "count": 1, + "id": "absentbydesign:trapdoor_diamond" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/trapdoor_diorite.json b/src/main/resources/data/absentbydesign/recipe/trapdoor_diorite.json new file mode 100644 index 00000000..b1c76813 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/trapdoor_diorite.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:diorite" + } + }, + "result": { + "count": 2, + "id": "absentbydesign:trapdoor_diorite" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/trapdoor_emerald.json b/src/main/resources/data/absentbydesign/recipe/trapdoor_emerald.json new file mode 100644 index 00000000..092a06c0 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/trapdoor_emerald.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "minecraft:emerald" + } + }, + "result": { + "count": 1, + "id": "absentbydesign:trapdoor_emerald" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/trapdoor_end_stone.json b/src/main/resources/data/absentbydesign/recipe/trapdoor_end_stone.json new file mode 100644 index 00000000..1ff735c8 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/trapdoor_end_stone.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:end_stone" + } + }, + "result": { + "count": 2, + "id": "absentbydesign:trapdoor_end_stone" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/trapdoor_gold.json b/src/main/resources/data/absentbydesign/recipe/trapdoor_gold.json new file mode 100644 index 00000000..f46d9e2a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/trapdoor_gold.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "minecraft:gold_ingot" + } + }, + "result": { + "count": 1, + "id": "absentbydesign:trapdoor_gold" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/trapdoor_granite.json b/src/main/resources/data/absentbydesign/recipe/trapdoor_granite.json new file mode 100644 index 00000000..913dac56 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/trapdoor_granite.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:granite" + } + }, + "result": { + "count": 2, + "id": "absentbydesign:trapdoor_granite" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/trapdoor_lapis.json b/src/main/resources/data/absentbydesign/recipe/trapdoor_lapis.json new file mode 100644 index 00000000..ec5a938e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/trapdoor_lapis.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "minecraft:lapis_lazuli" + } + }, + "result": { + "count": 1, + "id": "absentbydesign:trapdoor_lapis" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/trapdoor_mud_bricks.json b/src/main/resources/data/absentbydesign/recipe/trapdoor_mud_bricks.json new file mode 100644 index 00000000..8e0c85ae --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/trapdoor_mud_bricks.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "minecraft:mud_bricks" + } + }, + "result": { + "count": 1, + "id": "absentbydesign:trapdoor_mud_bricks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/trapdoor_obsidian.json b/src/main/resources/data/absentbydesign/recipe/trapdoor_obsidian.json new file mode 100644 index 00000000..ce5ddf2d --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/trapdoor_obsidian.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "minecraft:obsidian" + } + }, + "result": { + "count": 1, + "id": "absentbydesign:trapdoor_obsidian" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/trapdoor_purpur.json b/src/main/resources/data/absentbydesign/recipe/trapdoor_purpur.json new file mode 100644 index 00000000..3a133eac --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/trapdoor_purpur.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:purpur_block" + } + }, + "result": { + "count": 2, + "id": "absentbydesign:trapdoor_purpur" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/trapdoor_quartz.json b/src/main/resources/data/absentbydesign/recipe/trapdoor_quartz.json new file mode 100644 index 00000000..4bc3a822 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/trapdoor_quartz.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:quartz_block" + } + }, + "result": { + "count": 2, + "id": "absentbydesign:trapdoor_quartz" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/trapdoor_quartz_bricks.json b/src/main/resources/data/absentbydesign/recipe/trapdoor_quartz_bricks.json new file mode 100644 index 00000000..5f9c5173 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/trapdoor_quartz_bricks.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:quartz_bricks" + } + }, + "result": { + "count": 2, + "id": "absentbydesign:trapdoor_quartz_bricks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/trapdoor_stone.json b/src/main/resources/data/absentbydesign/recipe/trapdoor_stone.json new file mode 100644 index 00000000..318f1026 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/trapdoor_stone.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:stone" + } + }, + "result": { + "count": 2, + "id": "absentbydesign:trapdoor_stone" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/trapdoor_stone_bricks.json b/src/main/resources/data/absentbydesign/recipe/trapdoor_stone_bricks.json new file mode 100644 index 00000000..d377d561 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/trapdoor_stone_bricks.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:stone_bricks" + } + }, + "result": { + "count": 2, + "id": "absentbydesign:trapdoor_stone_bricks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_acacia_log.json b/src/main/resources/data/absentbydesign/recipe/wall_acacia_log.json new file mode 100644 index 00000000..72a30b62 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_acacia_log.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:acacia_wood" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_acacia_log" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_acacia_log_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_acacia_log_sc.json new file mode 100644 index 00000000..49707e3c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_acacia_log_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:acacia_wood" + }, + "result": { + "id": "absentbydesign:wall_acacia_log", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_acacia_planks.json b/src/main/resources/data/absentbydesign/recipe/wall_acacia_planks.json new file mode 100644 index 00000000..a8163895 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_acacia_planks.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:acacia_planks" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_acacia_planks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_acacia_planks_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_acacia_planks_sc.json new file mode 100644 index 00000000..7581ccb1 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_acacia_planks_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:acacia_planks" + }, + "result": { + "id": "absentbydesign:wall_acacia_planks", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_amethyst.json b/src/main/resources/data/absentbydesign/recipe/wall_amethyst.json new file mode 100644 index 00000000..e464946c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_amethyst.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:amethyst_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_amethyst" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_amethyst_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_amethyst_sc.json new file mode 100644 index 00000000..37a1e16c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_amethyst_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:amethyst_block" + }, + "result": { + "id": "absentbydesign:wall_amethyst", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_andesite_smooth.json b/src/main/resources/data/absentbydesign/recipe/wall_andesite_smooth.json new file mode 100644 index 00000000..ee4f5272 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_andesite_smooth.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:polished_andesite" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_andesite_smooth" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_andesite_smooth_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_andesite_smooth_sc.json new file mode 100644 index 00000000..1f79efb7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_andesite_smooth_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:polished_andesite" + }, + "result": { + "id": "absentbydesign:wall_andesite_smooth", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_bamboo_mosaic.json b/src/main/resources/data/absentbydesign/recipe/wall_bamboo_mosaic.json new file mode 100644 index 00000000..d5305f1a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_bamboo_mosaic.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:bamboo_mosaic" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_bamboo_mosaic" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_bamboo_mosaic_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_bamboo_mosaic_sc.json new file mode 100644 index 00000000..363c7b7e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_bamboo_mosaic_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:bamboo_mosaic" + }, + "result": { + "id": "absentbydesign:wall_bamboo_mosaic", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_bamboo_planks.json b/src/main/resources/data/absentbydesign/recipe/wall_bamboo_planks.json new file mode 100644 index 00000000..81548f2a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_bamboo_planks.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:bamboo_planks" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_bamboo_planks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_bamboo_planks_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_bamboo_planks_sc.json new file mode 100644 index 00000000..f51317d0 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_bamboo_planks_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:bamboo_planks" + }, + "result": { + "id": "absentbydesign:wall_bamboo_planks", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_basalt.json b/src/main/resources/data/absentbydesign/recipe/wall_basalt.json new file mode 100644 index 00000000..64c0f741 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_basalt.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:basalt" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_basalt" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_basalt_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_basalt_sc.json new file mode 100644 index 00000000..5f740810 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_basalt_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:basalt" + }, + "result": { + "id": "absentbydesign:wall_basalt", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_birch_log.json b/src/main/resources/data/absentbydesign/recipe/wall_birch_log.json new file mode 100644 index 00000000..ec8caed2 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_birch_log.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:birch_wood" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_birch_log" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_birch_log_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_birch_log_sc.json new file mode 100644 index 00000000..f57bbc05 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_birch_log_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:birch_wood" + }, + "result": { + "id": "absentbydesign:wall_birch_log", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_birch_planks.json b/src/main/resources/data/absentbydesign/recipe/wall_birch_planks.json new file mode 100644 index 00000000..e0a36c2a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_birch_planks.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:birch_planks" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_birch_planks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_birch_planks_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_birch_planks_sc.json new file mode 100644 index 00000000..985b8df5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_birch_planks_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:birch_planks" + }, + "result": { + "id": "absentbydesign:wall_birch_planks", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_blue_ice.json b/src/main/resources/data/absentbydesign/recipe/wall_blue_ice.json new file mode 100644 index 00000000..8df41090 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_blue_ice.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:blue_ice" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_blue_ice" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_blue_ice_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_blue_ice_sc.json new file mode 100644 index 00000000..037ee031 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_blue_ice_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:blue_ice" + }, + "result": { + "id": "absentbydesign:wall_blue_ice", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_bone.json b/src/main/resources/data/absentbydesign/recipe/wall_bone.json similarity index 75% rename from src/main/resources/data/absentbydesign/recipes/wall_bone.json rename to src/main/resources/data/absentbydesign/recipe/wall_bone.json index 87b7e1b8..0561dace 100644 --- a/src/main/resources/data/absentbydesign/recipes/wall_bone.json +++ b/src/main/resources/data/absentbydesign/recipe/wall_bone.json @@ -10,7 +10,7 @@ } }, "result": { - "item": "absentbydesign:wall_bone", - "count": 6 + "count": 6, + "id": "absentbydesign:wall_bone" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_bone_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_bone_sc.json new file mode 100644 index 00000000..eb4a88b1 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_bone_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:bone_block" + }, + "result": { + "id": "absentbydesign:wall_bone", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_brown_mushroom.json b/src/main/resources/data/absentbydesign/recipe/wall_brown_mushroom.json new file mode 100644 index 00000000..a1c3e2b3 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_brown_mushroom.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:brown_mushroom_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_brown_mushroom" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_brown_mushroom_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_brown_mushroom_sc.json new file mode 100644 index 00000000..434af727 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_brown_mushroom_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:brown_mushroom_block" + }, + "result": { + "id": "absentbydesign:wall_brown_mushroom", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_calcite.json b/src/main/resources/data/absentbydesign/recipe/wall_calcite.json new file mode 100644 index 00000000..a8151d2d --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_calcite.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:calcite" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_calcite" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_calcite_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_calcite_sc.json new file mode 100644 index 00000000..1c3377b4 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_calcite_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:calcite" + }, + "result": { + "id": "absentbydesign:wall_calcite", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_cherry_log.json b/src/main/resources/data/absentbydesign/recipe/wall_cherry_log.json new file mode 100644 index 00000000..50d863c3 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_cherry_log.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:cherry_wood" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_cherry_log" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_cherry_log_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_cherry_log_sc.json new file mode 100644 index 00000000..cf8bf7e8 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_cherry_log_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cherry_wood" + }, + "result": { + "id": "absentbydesign:wall_cherry_log", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_cherry_planks.json b/src/main/resources/data/absentbydesign/recipe/wall_cherry_planks.json new file mode 100644 index 00000000..91585832 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_cherry_planks.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:cherry_planks" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_cherry_planks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_cherry_planks_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_cherry_planks_sc.json new file mode 100644 index 00000000..2171830b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_cherry_planks_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cherry_planks" + }, + "result": { + "id": "absentbydesign:wall_cherry_planks", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_cherry_stripped_log.json b/src/main/resources/data/absentbydesign/recipe/wall_cherry_stripped_log.json new file mode 100644 index 00000000..9470efb8 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_cherry_stripped_log.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:stripped_cherry_log" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_cherry_stripped_log" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_cherry_stripped_log_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_cherry_stripped_log_sc.json new file mode 100644 index 00000000..3e99d53e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_cherry_stripped_log_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:stripped_cherry_log" + }, + "result": { + "id": "absentbydesign:wall_cherry_stripped_log", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_coarse_dirt.json b/src/main/resources/data/absentbydesign/recipe/wall_coarse_dirt.json new file mode 100644 index 00000000..f65234f7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_coarse_dirt.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:coarse_dirt" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_coarse_dirt" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_coarse_dirt_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_coarse_dirt_sc.json new file mode 100644 index 00000000..8265b896 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_coarse_dirt_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:coarse_dirt" + }, + "result": { + "id": "absentbydesign:wall_coarse_dirt", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_black.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_black.json new file mode 100644 index 00000000..7150c368 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_black.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:black_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_concrete_black" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_black_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_black_sc.json new file mode 100644 index 00000000..8771f0e6 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_black_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:black_concrete" + }, + "result": { + "id": "absentbydesign:wall_concrete_black", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_blue.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_blue.json new file mode 100644 index 00000000..c92a92c7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_blue.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:blue_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_concrete_blue" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_blue_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_blue_sc.json new file mode 100644 index 00000000..5d7304b6 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_blue_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:blue_concrete" + }, + "result": { + "id": "absentbydesign:wall_concrete_blue", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_brown.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_brown.json new file mode 100644 index 00000000..7669eddd --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_brown.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:brown_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_concrete_brown" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_brown_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_brown_sc.json new file mode 100644 index 00000000..ab89f34f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_brown_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:brown_concrete" + }, + "result": { + "id": "absentbydesign:wall_concrete_brown", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_cyan.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_cyan.json new file mode 100644 index 00000000..967b912e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_cyan.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:cyan_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_concrete_cyan" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_cyan_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_cyan_sc.json new file mode 100644 index 00000000..12e794ea --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_cyan_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cyan_concrete" + }, + "result": { + "id": "absentbydesign:wall_concrete_cyan", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_gray.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_gray.json new file mode 100644 index 00000000..5e4386f1 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_gray.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:gray_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_concrete_gray" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_gray_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_gray_sc.json new file mode 100644 index 00000000..6fd9c30c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_gray_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:gray_concrete" + }, + "result": { + "id": "absentbydesign:wall_concrete_gray", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_green.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_green.json new file mode 100644 index 00000000..90e57496 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_green.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:gray_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_concrete_green" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_green_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_green_sc.json new file mode 100644 index 00000000..809debed --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_green_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:green_concrete" + }, + "result": { + "id": "absentbydesign:wall_concrete_green", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_light_blue.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_light_blue.json new file mode 100644 index 00000000..43f2c952 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_light_blue.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:light_blue_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_concrete_light_blue" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_light_blue_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_light_blue_sc.json new file mode 100644 index 00000000..77bbe776 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_light_blue_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:light_blue_concrete" + }, + "result": { + "id": "absentbydesign:wall_concrete_light_blue", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_light_gray.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_light_gray.json new file mode 100644 index 00000000..fd0a2017 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_light_gray.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:light_gray_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_concrete_light_gray" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_light_gray_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_light_gray_sc.json new file mode 100644 index 00000000..bdd935ad --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_light_gray_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:light_gray_concrete" + }, + "result": { + "id": "absentbydesign:wall_concrete_light_gray", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_lime.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_lime.json new file mode 100644 index 00000000..d754f4ce --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_lime.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:lime_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_concrete_lime" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_lime_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_lime_sc.json new file mode 100644 index 00000000..8b9429c4 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_lime_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:lime_concrete" + }, + "result": { + "id": "absentbydesign:wall_concrete_lime", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_magenta.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_magenta.json new file mode 100644 index 00000000..d9618fb6 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_magenta.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "magenta_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_concrete_magenta" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_magenta_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_magenta_sc.json new file mode 100644 index 00000000..142964c5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_magenta_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:magenta_concrete" + }, + "result": { + "id": "absentbydesign:wall_concrete_magenta", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_orange.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_orange.json new file mode 100644 index 00000000..d48229c1 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_orange.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:orange_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_concrete_orange" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_orange_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_orange_sc.json new file mode 100644 index 00000000..9b047aff --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_orange_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:orange_concrete" + }, + "result": { + "id": "absentbydesign:wall_concrete_orange", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_pink.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_pink.json new file mode 100644 index 00000000..514af4e9 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_pink.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:pink_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_concrete_pink" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_pink_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_pink_sc.json new file mode 100644 index 00000000..15d45958 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_pink_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:pink_concrete" + }, + "result": { + "id": "absentbydesign:wall_concrete_pink", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_purple.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_purple.json new file mode 100644 index 00000000..2a1aa813 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_purple.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:purple_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_concrete_purple" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_purple_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_purple_sc.json new file mode 100644 index 00000000..2b7a4230 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_purple_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:purple_concrete" + }, + "result": { + "id": "absentbydesign:wall_concrete_purple", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_red.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_red.json new file mode 100644 index 00000000..bf260183 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_red.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:red_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_concrete_red" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_red_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_red_sc.json new file mode 100644 index 00000000..db4a9046 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_red_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:red_concrete" + }, + "result": { + "id": "absentbydesign:wall_concrete_red", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_white.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_white.json new file mode 100644 index 00000000..d437a59b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_white.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:white_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_concrete_white" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_white_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_white_sc.json new file mode 100644 index 00000000..37c53328 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_white_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:white_concrete" + }, + "result": { + "id": "absentbydesign:wall_concrete_white", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_yellow.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_yellow.json new file mode 100644 index 00000000..d546610b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_yellow.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:yellow_concrete" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_concrete_yellow" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_concrete_yellow_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_concrete_yellow_sc.json new file mode 100644 index 00000000..fedf8807 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_concrete_yellow_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:yellow_concrete" + }, + "result": { + "id": "absentbydesign:wall_concrete_yellow", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_cracked_deepslate_bricks.json b/src/main/resources/data/absentbydesign/recipe/wall_cracked_deepslate_bricks.json new file mode 100644 index 00000000..80b29d10 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_cracked_deepslate_bricks.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:cracked_deepslate_bricks" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_cracked_deepslate_bricks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_cracked_deepslate_bricks_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_cracked_deepslate_bricks_sc.json new file mode 100644 index 00000000..d2ec99cd --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_cracked_deepslate_bricks_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cracked_deepslate_bricks" + }, + "result": { + "id": "absentbydesign:wall_cracked_deepslate_bricks", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_cracked_deepslate_tiles.json b/src/main/resources/data/absentbydesign/recipe/wall_cracked_deepslate_tiles.json new file mode 100644 index 00000000..309e0a0e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_cracked_deepslate_tiles.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:cracked_deepslate_tiles" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_cracked_deepslate_tiles" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_cracked_deepslate_tiles_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_cracked_deepslate_tiles_sc.json new file mode 100644 index 00000000..971a9fe4 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_cracked_deepslate_tiles_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cracked_deepslate_tiles" + }, + "result": { + "id": "absentbydesign:wall_cracked_deepslate_tiles", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_cracked_nether_bricks.json b/src/main/resources/data/absentbydesign/recipe/wall_cracked_nether_bricks.json new file mode 100644 index 00000000..f4cee488 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_cracked_nether_bricks.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:cracked_nether_bricks" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_cracked_nether_bricks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_cracked_nether_bricks_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_cracked_nether_bricks_sc.json new file mode 100644 index 00000000..8df1c70f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_cracked_nether_bricks_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cracked_nether_bricks" + }, + "result": { + "id": "absentbydesign:wall_cracked_nether_bricks", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_cracked_polished_blackstone_bricks.json b/src/main/resources/data/absentbydesign/recipe/wall_cracked_polished_blackstone_bricks.json new file mode 100644 index 00000000..b98639c7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_cracked_polished_blackstone_bricks.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:cracked_polished_blackstone_bricks" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_cracked_polished_blackstone_bricks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_cracked_polished_blackstone_bricks_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_cracked_polished_blackstone_bricks_sc.json new file mode 100644 index 00000000..1080b3ee --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_cracked_polished_blackstone_bricks_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cracked_polished_blackstone_bricks" + }, + "result": { + "id": "absentbydesign:wall_cracked_polished_blackstone_bricks", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_crimson.json b/src/main/resources/data/absentbydesign/recipe/wall_crimson.json new file mode 100644 index 00000000..71a3d82e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_crimson.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:crimson_hyphae" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_crimson" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_crimson_planks.json b/src/main/resources/data/absentbydesign/recipe/wall_crimson_planks.json new file mode 100644 index 00000000..6f82c3e0 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_crimson_planks.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:crimson_planks" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_crimson_planks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_crimson_planks_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_crimson_planks_sc.json new file mode 100644 index 00000000..66b991ac --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_crimson_planks_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:crimson_planks" + }, + "result": { + "id": "absentbydesign:wall_crimson_planks", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_crimson_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_crimson_sc.json new file mode 100644 index 00000000..ccb95433 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_crimson_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:crimson_hyphae" + }, + "result": { + "id": "absentbydesign:wall_crimson", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_crying_obsidian.json b/src/main/resources/data/absentbydesign/recipe/wall_crying_obsidian.json new file mode 100644 index 00000000..74f3d52f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_crying_obsidian.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:crying_obsidian" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_crying_obsidian" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_crying_obsidian_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_crying_obsidian_sc.json new file mode 100644 index 00000000..bc6cd0f1 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_crying_obsidian_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:crying_obsidian" + }, + "result": { + "id": "absentbydesign:wall_crying_obsidian", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_dark_oak_log.json b/src/main/resources/data/absentbydesign/recipe/wall_dark_oak_log.json new file mode 100644 index 00000000..53116891 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_dark_oak_log.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:dark_oak_wood" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_dark_oak_log" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_dark_oak_log_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_dark_oak_log_sc.json new file mode 100644 index 00000000..91698ee9 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_dark_oak_log_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:dark_oak_wood" + }, + "result": { + "id": "absentbydesign:wall_dark_oak_log", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_dark_oak_planks.json b/src/main/resources/data/absentbydesign/recipe/wall_dark_oak_planks.json new file mode 100644 index 00000000..863b8e24 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_dark_oak_planks.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:dark_oak_planks" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_dark_oak_planks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_dark_oak_planks_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_dark_oak_planks_sc.json new file mode 100644 index 00000000..c2ccaae7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_dark_oak_planks_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:dark_oak_planks" + }, + "result": { + "id": "absentbydesign:wall_dark_oak_planks", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_dark_prismarine.json b/src/main/resources/data/absentbydesign/recipe/wall_dark_prismarine.json new file mode 100644 index 00000000..d5333627 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_dark_prismarine.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:dark_prismarine" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_dark_prismarine" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_dark_prismarine_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_dark_prismarine_sc.json new file mode 100644 index 00000000..39ea7ca2 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_dark_prismarine_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:dark_prismarine" + }, + "result": { + "id": "absentbydesign:wall_dark_prismarine", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_deepslate.json b/src/main/resources/data/absentbydesign/recipe/wall_deepslate.json new file mode 100644 index 00000000..a2de241b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_deepslate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:deepslate" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_deepslate" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_deepslate_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_deepslate_sc.json new file mode 100644 index 00000000..852ea386 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_deepslate_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:deepslate" + }, + "result": { + "id": "absentbydesign:wall_deepslate", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_diamond.json b/src/main/resources/data/absentbydesign/recipe/wall_diamond.json new file mode 100644 index 00000000..2b050f3e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_diamond.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:diamond_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_diamond" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_diamond_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_diamond_sc.json new file mode 100644 index 00000000..88804089 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_diamond_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:diamond_block" + }, + "result": { + "id": "absentbydesign:wall_diamond", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_diorite_smooth.json b/src/main/resources/data/absentbydesign/recipe/wall_diorite_smooth.json new file mode 100644 index 00000000..d840a369 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_diorite_smooth.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:polished_diorite" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_diorite_smooth" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_diorite_smooth_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_diorite_smooth_sc.json new file mode 100644 index 00000000..2372a74c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_diorite_smooth_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:polished_diorite" + }, + "result": { + "id": "absentbydesign:wall_diorite_smooth", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_dripstone.json b/src/main/resources/data/absentbydesign/recipe/wall_dripstone.json new file mode 100644 index 00000000..6f25d65e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_dripstone.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:dripstone_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_dripstone" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_dripstone_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_dripstone_sc.json new file mode 100644 index 00000000..33e6cca6 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_dripstone_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:dripstone_block" + }, + "result": { + "id": "absentbydesign:wall_dripstone", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_emerald.json b/src/main/resources/data/absentbydesign/recipe/wall_emerald.json new file mode 100644 index 00000000..fd508b07 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_emerald.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:emerald_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_emerald" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_emerald_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_emerald_sc.json new file mode 100644 index 00000000..2e06a4d5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_emerald_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:emerald_block" + }, + "result": { + "id": "absentbydesign:wall_emerald", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_end_stone.json b/src/main/resources/data/absentbydesign/recipe/wall_end_stone.json new file mode 100644 index 00000000..4f6c94d6 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_end_stone.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:end_stone" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_end_stone" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_end_stone_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_end_stone_sc.json new file mode 100644 index 00000000..9d1a835d --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_end_stone_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:end_stone" + }, + "result": { + "id": "absentbydesign:wall_end_stone", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_gilded_blackstone.json b/src/main/resources/data/absentbydesign/recipe/wall_gilded_blackstone.json new file mode 100644 index 00000000..dea9b4a1 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_gilded_blackstone.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:gilded_blackstone" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_gilded_blackstone" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_gilded_blackstone_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_gilded_blackstone_sc.json new file mode 100644 index 00000000..06cce5ac --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_gilded_blackstone_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:gilded_blackstone" + }, + "result": { + "id": "absentbydesign:wall_gilded_blackstone", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass.json b/src/main/resources/data/absentbydesign/recipe/wall_glass.json new file mode 100644 index 00000000..73f7615d --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_glass" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_black.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_black.json new file mode 100644 index 00000000..1ba331d2 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_black.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:black_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_glass_black" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_black_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_black_sc.json new file mode 100644 index 00000000..386c8cd6 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_black_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:black_stained_glass" + }, + "result": { + "id": "absentbydesign:wall_glass_black", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_blue.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_blue.json new file mode 100644 index 00000000..f8fad5f4 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_blue.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:blue_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_glass_blue" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_blue_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_blue_sc.json new file mode 100644 index 00000000..0fb17264 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_blue_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:blue_stained_glass" + }, + "result": { + "id": "absentbydesign:wall_glass_blue", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_brown.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_brown.json new file mode 100644 index 00000000..26801ec6 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_brown.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:brown_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_glass_brown" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_brown_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_brown_sc.json new file mode 100644 index 00000000..b8c5b9d5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_brown_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:brown_stained_glass" + }, + "result": { + "id": "absentbydesign:wall_glass_brown", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_cyan.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_cyan.json new file mode 100644 index 00000000..4133ad14 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_cyan.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:cyan_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_glass_cyan" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_cyan_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_cyan_sc.json new file mode 100644 index 00000000..fad33496 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_cyan_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cyan_stained_glass" + }, + "result": { + "id": "absentbydesign:wall_glass_cyan", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_gray.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_gray.json new file mode 100644 index 00000000..9c1d2c25 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_gray.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:gray_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_glass_gray" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_gray_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_gray_sc.json new file mode 100644 index 00000000..ea64ef20 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_gray_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:gray_stained_glass" + }, + "result": { + "id": "absentbydesign:wall_glass_gray", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_green.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_green.json new file mode 100644 index 00000000..1835af64 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_green.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:green_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_glass_green" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_green_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_green_sc.json new file mode 100644 index 00000000..7463c544 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_green_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:green_stained_glass" + }, + "result": { + "id": "absentbydesign:wall_glass_green", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_light_blue.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_light_blue.json new file mode 100644 index 00000000..3d46a9db --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_light_blue.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:light_blue_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_glass_light_blue" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_light_blue_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_light_blue_sc.json new file mode 100644 index 00000000..63b6752d --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_light_blue_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:light_blue_stained_glass" + }, + "result": { + "id": "absentbydesign:wall_glass_light_blue", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_light_gray.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_light_gray.json new file mode 100644 index 00000000..c80b41e2 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_light_gray.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:light_gray_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_glass_light_gray" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_light_gray_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_light_gray_sc.json new file mode 100644 index 00000000..19ccc0a3 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_light_gray_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:light_gray_stained_glass" + }, + "result": { + "id": "absentbydesign:wall_glass_light_gray", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_lime.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_lime.json new file mode 100644 index 00000000..29293021 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_lime.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:lime_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_glass_lime" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_lime_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_lime_sc.json new file mode 100644 index 00000000..07a693c7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_lime_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:lime_stained_glass" + }, + "result": { + "id": "absentbydesign:wall_glass_lime", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_magenta.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_magenta.json new file mode 100644 index 00000000..ba279864 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_magenta.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:magenta_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_glass_magenta" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_magenta_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_magenta_sc.json new file mode 100644 index 00000000..5c46bd37 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_magenta_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:magenta_stained_glass" + }, + "result": { + "id": "absentbydesign:wall_glass_magenta", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_orange.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_orange.json new file mode 100644 index 00000000..0ed542b7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_orange.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:orange_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_glass_orange" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_orange_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_orange_sc.json new file mode 100644 index 00000000..9b2d61a4 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_orange_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:orange_stained_glass" + }, + "result": { + "id": "absentbydesign:wall_glass_orange", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_pink.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_pink.json new file mode 100644 index 00000000..44f3f6ca --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_pink.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:pink_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_glass_pink" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_pink_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_pink_sc.json new file mode 100644 index 00000000..6044e538 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_pink_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:pink_stained_glass" + }, + "result": { + "id": "absentbydesign:wall_glass_pink", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_purple.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_purple.json new file mode 100644 index 00000000..b518075e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_purple.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:purple_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_glass_purple" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_purple_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_purple_sc.json new file mode 100644 index 00000000..144dab29 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_purple_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:purple_stained_glass" + }, + "result": { + "id": "absentbydesign:wall_glass_purple", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_red.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_red.json new file mode 100644 index 00000000..ac20d778 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_red.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:red_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_glass_red" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_red_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_red_sc.json new file mode 100644 index 00000000..0242b3ad --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_red_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:red_stained_glass" + }, + "result": { + "id": "absentbydesign:wall_glass_red", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_sc.json new file mode 100644 index 00000000..97068890 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:glass" + }, + "result": { + "id": "absentbydesign:wall_glass", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_white.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_white.json new file mode 100644 index 00000000..6d9f81e9 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_white.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:white_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_glass_white" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_white_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_white_sc.json new file mode 100644 index 00000000..4dfb1e85 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_white_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:white_stained_glass" + }, + "result": { + "id": "absentbydesign:wall_glass_white", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_yellow.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_yellow.json new file mode 100644 index 00000000..b219ef25 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_yellow.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:yellow_stained_glass" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_glass_yellow" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glass_yellow_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_glass_yellow_sc.json new file mode 100644 index 00000000..ecc062ed --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glass_yellow_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:yellow_stained_glass" + }, + "result": { + "id": "absentbydesign:wall_glass_yellow", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glowstone.json b/src/main/resources/data/absentbydesign/recipe/wall_glowstone.json new file mode 100644 index 00000000..864b2f11 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glowstone.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:glowstone" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_glowstone" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_glowstone_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_glowstone_sc.json new file mode 100644 index 00000000..9980da00 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_glowstone_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:glowstone" + }, + "result": { + "id": "absentbydesign:wall_glowstone", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_gold.json b/src/main/resources/data/absentbydesign/recipe/wall_gold.json similarity index 75% rename from src/main/resources/data/absentbydesign/recipes/wall_gold.json rename to src/main/resources/data/absentbydesign/recipe/wall_gold.json index 5e959251..5e7aa36c 100644 --- a/src/main/resources/data/absentbydesign/recipes/wall_gold.json +++ b/src/main/resources/data/absentbydesign/recipe/wall_gold.json @@ -10,7 +10,7 @@ } }, "result": { - "item": "absentbydesign:wall_gold", - "count": 6 + "count": 6, + "id": "absentbydesign:wall_gold" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_gold_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_gold_sc.json new file mode 100644 index 00000000..b87afff9 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_gold_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:gold_block" + }, + "result": { + "id": "absentbydesign:wall_gold", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_granite_smooth.json b/src/main/resources/data/absentbydesign/recipe/wall_granite_smooth.json new file mode 100644 index 00000000..64f0ff9a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_granite_smooth.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:polished_granite" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_granite_smooth" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_granite_smooth_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_granite_smooth_sc.json new file mode 100644 index 00000000..4b933dfa --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_granite_smooth_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:polished_granite" + }, + "result": { + "id": "absentbydesign:wall_granite_smooth", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_honeycomb.json b/src/main/resources/data/absentbydesign/recipe/wall_honeycomb.json new file mode 100644 index 00000000..827b0cc8 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_honeycomb.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:honeycomb" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_honeycomb" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_honeycomb_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_honeycomb_sc.json new file mode 100644 index 00000000..0eed07ef --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_honeycomb_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:honeycomb" + }, + "result": { + "id": "absentbydesign:wall_honeycomb", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_iron.json b/src/main/resources/data/absentbydesign/recipe/wall_iron.json similarity index 75% rename from src/main/resources/data/absentbydesign/recipes/wall_iron.json rename to src/main/resources/data/absentbydesign/recipe/wall_iron.json index c011813e..0f7ebf5a 100644 --- a/src/main/resources/data/absentbydesign/recipes/wall_iron.json +++ b/src/main/resources/data/absentbydesign/recipe/wall_iron.json @@ -10,7 +10,7 @@ } }, "result": { - "item": "absentbydesign:wall_iron", - "count": 6 + "count": 6, + "id": "absentbydesign:wall_iron" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_iron_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_iron_sc.json new file mode 100644 index 00000000..cc18b66e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_iron_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:iron_block" + }, + "result": { + "id": "absentbydesign:wall_iron", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_jungle_log.json b/src/main/resources/data/absentbydesign/recipe/wall_jungle_log.json new file mode 100644 index 00000000..8d1cbec9 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_jungle_log.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:jungle_wood" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_jungle_log" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_jungle_log_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_jungle_log_sc.json new file mode 100644 index 00000000..1cd78991 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_jungle_log_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:jungle_wood" + }, + "result": { + "id": "absentbydesign:wall_jungle_log", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_jungle_planks.json b/src/main/resources/data/absentbydesign/recipe/wall_jungle_planks.json new file mode 100644 index 00000000..1314968c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_jungle_planks.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:jungle_planks" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_jungle_planks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_jungle_planks_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_jungle_planks_sc.json new file mode 100644 index 00000000..7e28c9ac --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_jungle_planks_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:jungle_planks" + }, + "result": { + "id": "absentbydesign:wall_jungle_planks", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_lapis.json b/src/main/resources/data/absentbydesign/recipe/wall_lapis.json similarity index 75% rename from src/main/resources/data/absentbydesign/recipes/wall_lapis.json rename to src/main/resources/data/absentbydesign/recipe/wall_lapis.json index edda5a08..96c89451 100644 --- a/src/main/resources/data/absentbydesign/recipes/wall_lapis.json +++ b/src/main/resources/data/absentbydesign/recipe/wall_lapis.json @@ -10,7 +10,7 @@ } }, "result": { - "item": "absentbydesign:wall_lapis", - "count": 6 + "count": 6, + "id": "absentbydesign:wall_lapis" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_lapis_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_lapis_sc.json new file mode 100644 index 00000000..12175154 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_lapis_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:lapis_block" + }, + "result": { + "id": "absentbydesign:wall_lapis", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_lodestone.json b/src/main/resources/data/absentbydesign/recipe/wall_lodestone.json new file mode 100644 index 00000000..05a0ea1e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_lodestone.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:lodestone" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_lodestone" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_lodestone_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_lodestone_sc.json new file mode 100644 index 00000000..756dbc25 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_lodestone_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:lodestone" + }, + "result": { + "id": "absentbydesign:wall_lodestone", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_magma.json b/src/main/resources/data/absentbydesign/recipe/wall_magma.json similarity index 75% rename from src/main/resources/data/absentbydesign/recipes/wall_magma.json rename to src/main/resources/data/absentbydesign/recipe/wall_magma.json index 45fb5133..0dbda417 100644 --- a/src/main/resources/data/absentbydesign/recipes/wall_magma.json +++ b/src/main/resources/data/absentbydesign/recipe/wall_magma.json @@ -10,7 +10,7 @@ } }, "result": { - "item": "absentbydesign:wall_magma", - "count": 6 + "count": 6, + "id": "absentbydesign:wall_magma" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_magma_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_magma_sc.json new file mode 100644 index 00000000..837cc38d --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_magma_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:magma_block" + }, + "result": { + "id": "absentbydesign:wall_magma", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_mangrove_log.json b/src/main/resources/data/absentbydesign/recipe/wall_mangrove_log.json new file mode 100644 index 00000000..a530b8e5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_mangrove_log.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:mangrove_log" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_mangrove_log" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_mangrove_log_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_mangrove_log_sc.json new file mode 100644 index 00000000..2112ddbd --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_mangrove_log_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:mangrove_log" + }, + "result": { + "id": "absentbydesign:wall_mangrove_log", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_mangrove_planks.json b/src/main/resources/data/absentbydesign/recipe/wall_mangrove_planks.json new file mode 100644 index 00000000..c8436abf --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_mangrove_planks.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:mangrove_planks" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_mangrove_planks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_mangrove_planks_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_mangrove_planks_sc.json new file mode 100644 index 00000000..c20c5731 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_mangrove_planks_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:mangrove_planks" + }, + "result": { + "id": "absentbydesign:wall_mangrove_planks", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_moss.json b/src/main/resources/data/absentbydesign/recipe/wall_moss.json similarity index 75% rename from src/main/resources/data/absentbydesign/recipes/wall_moss.json rename to src/main/resources/data/absentbydesign/recipe/wall_moss.json index 85fad823..cb134926 100644 --- a/src/main/resources/data/absentbydesign/recipes/wall_moss.json +++ b/src/main/resources/data/absentbydesign/recipe/wall_moss.json @@ -10,7 +10,7 @@ } }, "result": { - "item": "absentbydesign:wall_moss", - "count": 6 + "count": 6, + "id": "absentbydesign:wall_moss" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_moss_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_moss_sc.json new file mode 100644 index 00000000..92eac96f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_moss_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:moss_block" + }, + "result": { + "id": "absentbydesign:wall_moss", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_mud.json b/src/main/resources/data/absentbydesign/recipe/wall_mud.json new file mode 100644 index 00000000..ceb573ef --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_mud.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:mud" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_mud" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_mud_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_mud_sc.json new file mode 100644 index 00000000..65f1d710 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_mud_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:mud" + }, + "result": { + "id": "absentbydesign:wall_mud", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_muddy_mangrove_roots.json b/src/main/resources/data/absentbydesign/recipe/wall_muddy_mangrove_roots.json new file mode 100644 index 00000000..3ccefed8 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_muddy_mangrove_roots.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:muddy_mangrove_roots" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_muddy_mangrove_roots" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_muddy_mangrove_roots_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_muddy_mangrove_roots_sc.json new file mode 100644 index 00000000..34da66eb --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_muddy_mangrove_roots_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:muddy_mangrove_roots" + }, + "result": { + "id": "absentbydesign:wall_muddy_mangrove_roots", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_mushroom_polished.json b/src/main/resources/data/absentbydesign/recipe/wall_mushroom_polished.json new file mode 100644 index 00000000..90ca7b1e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_mushroom_polished.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "#" + ], + "key": { + "#": { + "item": "absentbydesign:wall_mushroom_stem" + } + }, + "result": { + "count": 1, + "id": "absentbydesign:wall_mushroom_polished" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_mushroom_polished_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_mushroom_polished_sc.json new file mode 100644 index 00000000..9741fa49 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_mushroom_polished_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "absentbydesign:wall_mushroom_stem" + }, + "result": { + "id": "absentbydesign:wall_mushroom_polished", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_mushroom_stem.json b/src/main/resources/data/absentbydesign/recipe/wall_mushroom_stem.json new file mode 100644 index 00000000..58f7cce0 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_mushroom_stem.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:mushroom_stem" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_mushroom_stem" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_mushroom_stem_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_mushroom_stem_sc.json new file mode 100644 index 00000000..a4a2ea61 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_mushroom_stem_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:mushroom_stem" + }, + "result": { + "id": "absentbydesign:wall_mushroom_stem", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_netherite.json b/src/main/resources/data/absentbydesign/recipe/wall_netherite.json new file mode 100644 index 00000000..ef4bd11f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_netherite.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:netherite_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_netherite" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_netherite_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_netherite_sc.json new file mode 100644 index 00000000..18e0383b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_netherite_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:netherite_block" + }, + "result": { + "id": "absentbydesign:wall_netherite", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_netherrack.json b/src/main/resources/data/absentbydesign/recipe/wall_netherrack.json new file mode 100644 index 00000000..d734184f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_netherrack.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:netherrack" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_netherrack" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_netherrack_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_netherrack_sc.json new file mode 100644 index 00000000..6e1eb228 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_netherrack_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:netherrack" + }, + "result": { + "id": "absentbydesign:wall_netherrack", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_oak_log.json b/src/main/resources/data/absentbydesign/recipe/wall_oak_log.json new file mode 100644 index 00000000..2f5fffb1 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_oak_log.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:oak_wood" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_oak_log" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_oak_log_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_oak_log_sc.json new file mode 100644 index 00000000..bea7331d --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_oak_log_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:oak_wood" + }, + "result": { + "id": "absentbydesign:wall_oak_log", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_oak_planks.json b/src/main/resources/data/absentbydesign/recipe/wall_oak_planks.json new file mode 100644 index 00000000..8eb7ee20 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_oak_planks.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:oak_planks" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_oak_planks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_oak_planks_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_oak_planks_sc.json new file mode 100644 index 00000000..bbba6dca --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_oak_planks_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:oak_planks" + }, + "result": { + "id": "absentbydesign:wall_oak_planks", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_obsidian.json b/src/main/resources/data/absentbydesign/recipe/wall_obsidian.json new file mode 100644 index 00000000..2cb41170 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_obsidian.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:obsidian" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_obsidian" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_obsidian_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_obsidian_sc.json new file mode 100644 index 00000000..3f5591f3 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_obsidian_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:obsidian" + }, + "result": { + "id": "absentbydesign:wall_obsidian", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_ochre_froglight.json b/src/main/resources/data/absentbydesign/recipe/wall_ochre_froglight.json new file mode 100644 index 00000000..345ec3c4 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_ochre_froglight.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:ochre_froglight" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_ochre_froglight" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_ochre_froglight_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_ochre_froglight_sc.json new file mode 100644 index 00000000..8b95ee67 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_ochre_froglight_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:ochre_froglight" + }, + "result": { + "id": "absentbydesign:wall_ochre_froglight", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_packed_ice.json b/src/main/resources/data/absentbydesign/recipe/wall_packed_ice.json new file mode 100644 index 00000000..76aeedb7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_packed_ice.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:packed_ice" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_packed_ice" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_packed_ice_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_packed_ice_sc.json new file mode 100644 index 00000000..121a13b6 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_packed_ice_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:packed_ice" + }, + "result": { + "id": "absentbydesign:wall_packed_ice", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_packed_mud.json b/src/main/resources/data/absentbydesign/recipe/wall_packed_mud.json new file mode 100644 index 00000000..c52d95db --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_packed_mud.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:packed_mud" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_packed_mud" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_packed_mud_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_packed_mud_sc.json new file mode 100644 index 00000000..9f97008c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_packed_mud_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:packed_mud" + }, + "result": { + "id": "absentbydesign:wall_packed_mud", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_pearlescent_froglight.json b/src/main/resources/data/absentbydesign/recipe/wall_pearlescent_froglight.json new file mode 100644 index 00000000..3da6053a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_pearlescent_froglight.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:pearlescent_froglight" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_pearlescent_froglight" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_pearlescent_froglight_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_pearlescent_froglight_sc.json new file mode 100644 index 00000000..aae2aa25 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_pearlescent_froglight_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:pearlescent_froglight" + }, + "result": { + "id": "absentbydesign:wall_pearlescent_froglight", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_polished_basalt.json b/src/main/resources/data/absentbydesign/recipe/wall_polished_basalt.json new file mode 100644 index 00000000..a94c247a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_polished_basalt.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:polished_basalt" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_polished_basalt" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_polished_basalt_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_polished_basalt_sc.json new file mode 100644 index 00000000..384f36e2 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_polished_basalt_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:polished_basalt" + }, + "result": { + "id": "absentbydesign:wall_polished_basalt", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_prismarine_bricks.json b/src/main/resources/data/absentbydesign/recipe/wall_prismarine_bricks.json new file mode 100644 index 00000000..70bd6842 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_prismarine_bricks.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:prismarine_bricks" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_prismarine_bricks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_prismarine_bricks_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_prismarine_bricks_sc.json new file mode 100644 index 00000000..e7541f89 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_prismarine_bricks_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:prismarine_bricks" + }, + "result": { + "id": "absentbydesign:wall_prismarine_bricks", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_purpur.json b/src/main/resources/data/absentbydesign/recipe/wall_purpur.json new file mode 100644 index 00000000..583530a3 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_purpur.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:purpur_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_purpur" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_purpur_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_purpur_sc.json new file mode 100644 index 00000000..3795c68f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_purpur_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:purpur_block" + }, + "result": { + "id": "absentbydesign:wall_purpur", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_quartz.json b/src/main/resources/data/absentbydesign/recipe/wall_quartz.json new file mode 100644 index 00000000..9b9010ce --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_quartz.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:quartz_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_quartz" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_quartz_bricks.json b/src/main/resources/data/absentbydesign/recipe/wall_quartz_bricks.json new file mode 100644 index 00000000..7fe88bff --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_quartz_bricks.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:quartz_bricks" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_quartz_bricks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_quartz_bricks_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_quartz_bricks_sc.json new file mode 100644 index 00000000..dd1ed5a0 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_quartz_bricks_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:quartz_bricks" + }, + "result": { + "id": "absentbydesign:wall_quartz_bricks", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_quartz_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_quartz_sc.json new file mode 100644 index 00000000..ebfc4718 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_quartz_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:quartz_block" + }, + "result": { + "id": "absentbydesign:wall_quartz", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_raw_copper.json b/src/main/resources/data/absentbydesign/recipe/wall_raw_copper.json new file mode 100644 index 00000000..f4c081f0 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_raw_copper.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:raw_copper_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_raw_copper" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_raw_copper_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_raw_copper_sc.json new file mode 100644 index 00000000..933ec8ec --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_raw_copper_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:raw_copper_block" + }, + "result": { + "id": "absentbydesign:wall_raw_copper", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_raw_gold.json b/src/main/resources/data/absentbydesign/recipe/wall_raw_gold.json new file mode 100644 index 00000000..82f298e6 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_raw_gold.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:raw_gold_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_raw_gold" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_raw_gold_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_raw_gold_sc.json new file mode 100644 index 00000000..df238136 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_raw_gold_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:raw_gold_block" + }, + "result": { + "id": "absentbydesign:wall_raw_gold", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_raw_iron.json b/src/main/resources/data/absentbydesign/recipe/wall_raw_iron.json new file mode 100644 index 00000000..9cd42db1 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_raw_iron.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:raw_iron_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_raw_iron" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_raw_iron_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_raw_iron_sc.json new file mode 100644 index 00000000..d248ea74 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_raw_iron_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:raw_iron_block" + }, + "result": { + "id": "absentbydesign:wall_raw_iron", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_red_mushroom.json b/src/main/resources/data/absentbydesign/recipe/wall_red_mushroom.json new file mode 100644 index 00000000..28568bd8 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_red_mushroom.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:red_mushroom_block" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_red_mushroom" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_red_mushroom_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_red_mushroom_sc.json new file mode 100644 index 00000000..d603460b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_red_mushroom_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:red_mushroom_block" + }, + "result": { + "id": "absentbydesign:wall_red_mushroom", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_reinforced_deepslate.json b/src/main/resources/data/absentbydesign/recipe/wall_reinforced_deepslate.json new file mode 100644 index 00000000..427b683e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_reinforced_deepslate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:reinforced_deepslate" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_reinforced_deepslate" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_reinforced_deepslate_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_reinforced_deepslate_sc.json new file mode 100644 index 00000000..686ad68c --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_reinforced_deepslate_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:reinforced_deepslate" + }, + "result": { + "id": "absentbydesign:wall_reinforced_deepslate", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_rooted_dirt.json b/src/main/resources/data/absentbydesign/recipe/wall_rooted_dirt.json new file mode 100644 index 00000000..ddd9c716 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_rooted_dirt.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:rooted_dirt" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_rooted_dirt" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_rooted_dirt_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_rooted_dirt_sc.json new file mode 100644 index 00000000..7e8a331d --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_rooted_dirt_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:rooted_dirt" + }, + "result": { + "id": "absentbydesign:wall_rooted_dirt", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_sandstone_red_smooth.json b/src/main/resources/data/absentbydesign/recipe/wall_sandstone_red_smooth.json new file mode 100644 index 00000000..f75cd1ca --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_sandstone_red_smooth.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:smooth_red_sandstone" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_sandstone_red_smooth" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_sandstone_red_smooth_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_sandstone_red_smooth_sc.json new file mode 100644 index 00000000..06d2edd1 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_sandstone_red_smooth_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:smooth_red_sandstone" + }, + "result": { + "id": "absentbydesign:wall_sandstone_red_smooth", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_sandstone_smooth.json b/src/main/resources/data/absentbydesign/recipe/wall_sandstone_smooth.json new file mode 100644 index 00000000..8f6cca25 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_sandstone_smooth.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:smooth_sandstone" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_sandstone_smooth" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_sandstone_smooth_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_sandstone_smooth_sc.json new file mode 100644 index 00000000..204b02ee --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_sandstone_smooth_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:smooth_sandstone" + }, + "result": { + "id": "absentbydesign:wall_sandstone_smooth", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_sculk.json b/src/main/resources/data/absentbydesign/recipe/wall_sculk.json new file mode 100644 index 00000000..2d532de5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_sculk.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:sculk" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_sculk" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_sculk_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_sculk_sc.json new file mode 100644 index 00000000..c930e26f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_sculk_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:sculk" + }, + "result": { + "id": "absentbydesign:wall_sculk", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_sea_lantern.json b/src/main/resources/data/absentbydesign/recipe/wall_sea_lantern.json new file mode 100644 index 00000000..c91cd85e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_sea_lantern.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:sea_lantern" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_sea_lantern" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_sea_lantern_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_sea_lantern_sc.json new file mode 100644 index 00000000..d75ece32 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_sea_lantern_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:sea_lantern" + }, + "result": { + "id": "absentbydesign:wall_sea_lantern", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_shroomlight.json b/src/main/resources/data/absentbydesign/recipe/wall_shroomlight.json new file mode 100644 index 00000000..edb7ed67 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_shroomlight.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:shroomlight" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_shroomlight" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_shroomlight_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_shroomlight_sc.json new file mode 100644 index 00000000..49f2c852 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_shroomlight_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:shroomlight" + }, + "result": { + "id": "absentbydesign:wall_shroomlight", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_smooth_basalt.json b/src/main/resources/data/absentbydesign/recipe/wall_smooth_basalt.json new file mode 100644 index 00000000..56032e0b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_smooth_basalt.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:smooth_basalt" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_smooth_basalt" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_smooth_basalt_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_smooth_basalt_sc.json new file mode 100644 index 00000000..e27fde71 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_smooth_basalt_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:smooth_basalt" + }, + "result": { + "id": "absentbydesign:wall_smooth_basalt", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_snow.json b/src/main/resources/data/absentbydesign/recipe/wall_snow.json similarity index 75% rename from src/main/resources/data/absentbydesign/recipes/wall_snow.json rename to src/main/resources/data/absentbydesign/recipe/wall_snow.json index 5302dc49..740f18a9 100644 --- a/src/main/resources/data/absentbydesign/recipes/wall_snow.json +++ b/src/main/resources/data/absentbydesign/recipe/wall_snow.json @@ -10,7 +10,7 @@ } }, "result": { - "item": "absentbydesign:wall_snow", - "count": 6 + "count": 6, + "id": "absentbydesign:wall_snow" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_snow_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_snow_sc.json new file mode 100644 index 00000000..7e44d437 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_snow_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:snow_block" + }, + "result": { + "id": "absentbydesign:wall_snow", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_soul_sand.json b/src/main/resources/data/absentbydesign/recipe/wall_soul_sand.json new file mode 100644 index 00000000..df6b79df --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_soul_sand.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:soul_sand" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_soul_sand" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_soul_sand_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_soul_sand_sc.json new file mode 100644 index 00000000..60e6d8cb --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_soul_sand_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:soul_sand" + }, + "result": { + "id": "absentbydesign:wall_soul_sand", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_soul_soil.json b/src/main/resources/data/absentbydesign/recipe/wall_soul_soil.json new file mode 100644 index 00000000..bfb23c1a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_soul_soil.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:soul_soil" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_soul_soil" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_soul_soil_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_soul_soil_sc.json new file mode 100644 index 00000000..be6a1364 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_soul_soil_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:soul_soil" + }, + "result": { + "id": "absentbydesign:wall_soul_soil", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_spruce_log.json b/src/main/resources/data/absentbydesign/recipe/wall_spruce_log.json new file mode 100644 index 00000000..42b99952 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_spruce_log.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:spruce_wood" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_spruce_log" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_spruce_log_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_spruce_log_sc.json new file mode 100644 index 00000000..9a69a995 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_spruce_log_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:spruce_wood" + }, + "result": { + "id": "absentbydesign:wall_spruce_log", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_spruce_planks.json b/src/main/resources/data/absentbydesign/recipe/wall_spruce_planks.json new file mode 100644 index 00000000..4d14839b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_spruce_planks.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:spruce_planks" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_spruce_planks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_spruce_planks_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_spruce_planks_sc.json new file mode 100644 index 00000000..31eb8702 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_spruce_planks_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:spruce_planks" + }, + "result": { + "id": "absentbydesign:wall_spruce_planks", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stone.json b/src/main/resources/data/absentbydesign/recipe/wall_stone.json new file mode 100644 index 00000000..aaa1783b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stone.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:stone" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_stone" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stone_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_stone_sc.json new file mode 100644 index 00000000..44f5ca7b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stone_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:stone" + }, + "result": { + "id": "absentbydesign:wall_stone", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stone_slab.json b/src/main/resources/data/absentbydesign/recipe/wall_stone_slab.json new file mode 100644 index 00000000..581715f7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stone_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:smooth_stone" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_stone_slab" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stone_slab_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_stone_slab_sc.json new file mode 100644 index 00000000..cba2c9f4 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stone_slab_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:smooth_stone" + }, + "result": { + "id": "absentbydesign:wall_stone_slab", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stonebrick_carved.json b/src/main/resources/data/absentbydesign/recipe/wall_stonebrick_carved.json new file mode 100644 index 00000000..a98e1ad2 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stonebrick_carved.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:chiseled_stone_bricks" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_stonebrick_carved" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stonebrick_carved_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_stonebrick_carved_sc.json new file mode 100644 index 00000000..b4a22837 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stonebrick_carved_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:chiseled_stone_bricks" + }, + "result": { + "id": "absentbydesign:wall_stonebrick_carved", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stonebrick_cracked.json b/src/main/resources/data/absentbydesign/recipe/wall_stonebrick_cracked.json new file mode 100644 index 00000000..841f7259 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stonebrick_cracked.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:cracked_stone_bricks" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_stonebrick_cracked" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stonebrick_cracked_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_stonebrick_cracked_sc.json new file mode 100644 index 00000000..103f35b4 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stonebrick_cracked_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cracked_stone_bricks" + }, + "result": { + "id": "absentbydesign:wall_stonebrick_cracked", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stripped_acacia_log.json b/src/main/resources/data/absentbydesign/recipe/wall_stripped_acacia_log.json new file mode 100644 index 00000000..fd0f928f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stripped_acacia_log.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:stripped_acacia_wood" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_stripped_acacia_log" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stripped_acacia_log_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_stripped_acacia_log_sc.json new file mode 100644 index 00000000..cffe9921 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stripped_acacia_log_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:stripped_acacia_wood" + }, + "result": { + "id": "absentbydesign:wall_stripped_acacia_log", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stripped_birch_log.json b/src/main/resources/data/absentbydesign/recipe/wall_stripped_birch_log.json new file mode 100644 index 00000000..5cc5ab2e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stripped_birch_log.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:stripped_birch_wood" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_stripped_birch_log" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stripped_birch_log_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_stripped_birch_log_sc.json new file mode 100644 index 00000000..a06dd2f7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stripped_birch_log_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:stripped_birch_wood" + }, + "result": { + "id": "absentbydesign:wall_stripped_birch_log", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stripped_crimson.json b/src/main/resources/data/absentbydesign/recipe/wall_stripped_crimson.json new file mode 100644 index 00000000..8db646bf --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stripped_crimson.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:stripped_crimson_hyphae" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_stripped_crimson" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stripped_crimson_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_stripped_crimson_sc.json new file mode 100644 index 00000000..74da3b87 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stripped_crimson_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:stripped_crimson_hyphae" + }, + "result": { + "id": "absentbydesign:wall_stripped_crimson", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stripped_dark_oak_log.json b/src/main/resources/data/absentbydesign/recipe/wall_stripped_dark_oak_log.json new file mode 100644 index 00000000..df8f96d8 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stripped_dark_oak_log.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:stripped_dark_oak_wood" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_stripped_dark_oak_log" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stripped_dark_oak_log_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_stripped_dark_oak_log_sc.json new file mode 100644 index 00000000..7128dea0 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stripped_dark_oak_log_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:stripped_dark_oak_wood" + }, + "result": { + "id": "absentbydesign:wall_stripped_dark_oak_log", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stripped_jungle_log.json b/src/main/resources/data/absentbydesign/recipe/wall_stripped_jungle_log.json new file mode 100644 index 00000000..0e696246 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stripped_jungle_log.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:stripped_jungle_wood" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_stripped_jungle_log" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stripped_jungle_log_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_stripped_jungle_log_sc.json new file mode 100644 index 00000000..059c4e6a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stripped_jungle_log_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:stripped_jungle_wood" + }, + "result": { + "id": "absentbydesign:wall_stripped_jungle_log", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stripped_mangrove_log.json b/src/main/resources/data/absentbydesign/recipe/wall_stripped_mangrove_log.json new file mode 100644 index 00000000..018188ab --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stripped_mangrove_log.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:stripped_mangrove_log" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_stripped_mangrove_log" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stripped_mangrove_log_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_stripped_mangrove_log_sc.json new file mode 100644 index 00000000..82001abc --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stripped_mangrove_log_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:stripped_mangrove_log" + }, + "result": { + "id": "absentbydesign:wall_stripped_mangrove_log", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stripped_oak_log.json b/src/main/resources/data/absentbydesign/recipe/wall_stripped_oak_log.json new file mode 100644 index 00000000..97d0eaaf --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stripped_oak_log.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:stripped_oak_wood" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_stripped_oak_log" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stripped_oak_log_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_stripped_oak_log_sc.json new file mode 100644 index 00000000..d63eef29 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stripped_oak_log_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:stripped_oak_wood" + }, + "result": { + "id": "absentbydesign:wall_stripped_oak_log", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stripped_spruce_log.json b/src/main/resources/data/absentbydesign/recipe/wall_stripped_spruce_log.json new file mode 100644 index 00000000..1bcd42ba --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stripped_spruce_log.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:stripped_spruce_wood" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_stripped_spruce_log" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stripped_spruce_log_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_stripped_spruce_log_sc.json new file mode 100644 index 00000000..a3afe972 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stripped_spruce_log_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:stripped_spruce_wood" + }, + "result": { + "id": "absentbydesign:wall_stripped_spruce_log", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stripped_warped.json b/src/main/resources/data/absentbydesign/recipe/wall_stripped_warped.json new file mode 100644 index 00000000..93cddcff --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stripped_warped.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:stripped_warped_hyphae" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_stripped_warped" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_stripped_warped_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_stripped_warped_sc.json new file mode 100644 index 00000000..db2bd178 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_stripped_warped_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:stripped_warped_hyphae" + }, + "result": { + "id": "absentbydesign:wall_stripped_warped", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_black.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_black.json new file mode 100644 index 00000000..33f99f1f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_black.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:black_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_terracotta_black" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_black_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_black_sc.json new file mode 100644 index 00000000..3f7488c6 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_black_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:black_terracotta" + }, + "result": { + "id": "absentbydesign:wall_terracotta_black", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_blue.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_blue.json new file mode 100644 index 00000000..bddcb2b8 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_blue.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:blue_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_terracotta_blue" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_blue_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_blue_sc.json new file mode 100644 index 00000000..04d21a37 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_blue_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:blue_terracotta" + }, + "result": { + "id": "absentbydesign:wall_terracotta_blue", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_brown.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_brown.json new file mode 100644 index 00000000..2ebf9a76 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_brown.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:brown_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_terracotta_brown" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_brown_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_brown_sc.json new file mode 100644 index 00000000..01d9db82 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_brown_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:brown_terracotta" + }, + "result": { + "id": "absentbydesign:wall_terracotta_brown", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_cyan.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_cyan.json new file mode 100644 index 00000000..b0386c11 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_cyan.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:cyan_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_terracotta_cyan" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_cyan_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_cyan_sc.json new file mode 100644 index 00000000..3c20303b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_cyan_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cyan_terracotta" + }, + "result": { + "id": "absentbydesign:wall_terracotta_cyan", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_gray.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_gray.json new file mode 100644 index 00000000..5fad0411 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_gray.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:gray_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_terracotta_gray" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_gray_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_gray_sc.json new file mode 100644 index 00000000..3b95aad0 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_gray_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:gray_terracotta" + }, + "result": { + "id": "absentbydesign:wall_terracotta_gray", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_green.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_green.json new file mode 100644 index 00000000..fe0b5a47 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_green.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:green_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_terracotta_green" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_green_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_green_sc.json new file mode 100644 index 00000000..85d705ec --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_green_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:green_terracotta" + }, + "result": { + "id": "absentbydesign:wall_terracotta_green", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_light_blue.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_light_blue.json new file mode 100644 index 00000000..e657f7f2 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_light_blue.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:light_blue_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_terracotta_light_blue" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_light_blue_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_light_blue_sc.json new file mode 100644 index 00000000..a281f58a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_light_blue_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:light_blue_terracotta" + }, + "result": { + "id": "absentbydesign:wall_terracotta_light_blue", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_light_gray.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_light_gray.json new file mode 100644 index 00000000..6e9442c1 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_light_gray.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:light_gray_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_terracotta_light_gray" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_light_gray_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_light_gray_sc.json new file mode 100644 index 00000000..c1fafbe0 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_light_gray_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:light_gray_terracotta" + }, + "result": { + "id": "absentbydesign:wall_terracotta_light_gray", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_lime.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_lime.json new file mode 100644 index 00000000..04ea9aa5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_lime.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:lime_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_terracotta_lime" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_lime_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_lime_sc.json new file mode 100644 index 00000000..e34df8f7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_lime_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:lime_terracotta" + }, + "result": { + "id": "absentbydesign:wall_terracotta_lime", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_magenta.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_magenta.json new file mode 100644 index 00000000..5165b016 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_magenta.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:magenta_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_terracotta_magenta" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_magenta_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_magenta_sc.json new file mode 100644 index 00000000..7ecbd0b3 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_magenta_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:magenta_terracotta" + }, + "result": { + "id": "absentbydesign:wall_terracotta_magenta", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_orange.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_orange.json new file mode 100644 index 00000000..242dfbb3 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_orange.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:orange_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_terracotta_orange" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_orange_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_orange_sc.json new file mode 100644 index 00000000..0e0e8478 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_orange_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:orange_terracotta" + }, + "result": { + "id": "absentbydesign:wall_terracotta_orange", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_pink.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_pink.json new file mode 100644 index 00000000..15774bf1 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_pink.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:pink_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_terracotta_pink" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_pink_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_pink_sc.json new file mode 100644 index 00000000..9e91387a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_pink_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:pink_terracotta" + }, + "result": { + "id": "absentbydesign:wall_terracotta_pink", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_purple.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_purple.json new file mode 100644 index 00000000..c2bdb0d1 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_purple.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:purple_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_terracotta_purple" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_purple_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_purple_sc.json new file mode 100644 index 00000000..469fdaea --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_purple_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:purple_terracotta" + }, + "result": { + "id": "absentbydesign:wall_terracotta_purple", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_red.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_red.json new file mode 100644 index 00000000..c25b76b6 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_red.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:red_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_terracotta_red" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_red_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_red_sc.json new file mode 100644 index 00000000..4fce262b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_red_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:red_terracotta" + }, + "result": { + "id": "absentbydesign:wall_terracotta_red", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_white.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_white.json new file mode 100644 index 00000000..710494e9 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_white.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:white_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_terracotta_white" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_white_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_white_sc.json new file mode 100644 index 00000000..231b29c6 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_white_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:white_terracotta" + }, + "result": { + "id": "absentbydesign:wall_terracotta_white", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_yellow.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_yellow.json new file mode 100644 index 00000000..2e8ae3f7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_yellow.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:yellow_terracotta" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_terracotta_yellow" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_terracotta_yellow_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_yellow_sc.json new file mode 100644 index 00000000..323e92f6 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_terracotta_yellow_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:yellow_terracotta" + }, + "result": { + "id": "absentbydesign:wall_terracotta_yellow", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_tuff.json b/src/main/resources/data/absentbydesign/recipe/wall_tuff.json new file mode 100644 index 00000000..9408be9d --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_tuff.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:tuff" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_tuff" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_tuff_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_tuff_sc.json new file mode 100644 index 00000000..e6cc649b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_tuff_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:tuff" + }, + "result": { + "id": "absentbydesign:wall_tuff", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_verdant_froglight.json b/src/main/resources/data/absentbydesign/recipe/wall_verdant_froglight.json new file mode 100644 index 00000000..3a8b44f1 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_verdant_froglight.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:verdant_froglight" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_verdant_froglight" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_verdant_froglight_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_verdant_froglight_sc.json new file mode 100644 index 00000000..efccb20f --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_verdant_froglight_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:verdant_froglight" + }, + "result": { + "id": "absentbydesign:wall_verdant_froglight", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_warped.json b/src/main/resources/data/absentbydesign/recipe/wall_warped.json new file mode 100644 index 00000000..dbb4cc77 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_warped.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:warped_hyphae" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_warped" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_warped_planks.json b/src/main/resources/data/absentbydesign/recipe/wall_warped_planks.json new file mode 100644 index 00000000..7e990f01 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_warped_planks.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "minecraft:warped_planks" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_warped_planks" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_warped_planks_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_warped_planks_sc.json new file mode 100644 index 00000000..7ad436df --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_warped_planks_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:warped_planks" + }, + "result": { + "id": "absentbydesign:wall_warped_planks", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_warped_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_warped_sc.json new file mode 100644 index 00000000..e3dc97c1 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_warped_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:warped_hyphae" + }, + "result": { + "id": "absentbydesign:wall_warped", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_black.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_black.json new file mode 100644 index 00000000..f7d691c2 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_black.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:black_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_wool_black" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_black_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_black_sc.json new file mode 100644 index 00000000..b72a0e7a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_black_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:black_wool" + }, + "result": { + "id": "absentbydesign:wall_wool_black", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_blue.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_blue.json new file mode 100644 index 00000000..201aa6c0 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_blue.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:blue_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_wool_blue" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_blue_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_blue_sc.json new file mode 100644 index 00000000..6c7a4605 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_blue_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:blue_wool" + }, + "result": { + "id": "absentbydesign:wall_wool_blue", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_brown.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_brown.json new file mode 100644 index 00000000..89a18ffe --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_brown.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:brown_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_wool_brown" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_brown_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_brown_sc.json new file mode 100644 index 00000000..4fbc7c35 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_brown_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:brown_wool" + }, + "result": { + "id": "absentbydesign:wall_wool_brown", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_cyan.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_cyan.json new file mode 100644 index 00000000..42e0efe4 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_cyan.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:cyan_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_wool_cyan" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_cyan_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_cyan_sc.json new file mode 100644 index 00000000..c1d882e9 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_cyan_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cyan_wool" + }, + "result": { + "id": "absentbydesign:wall_wool_cyan", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_gray.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_gray.json new file mode 100644 index 00000000..0dabde4b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_gray.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:gray_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_wool_gray" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_gray_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_gray_sc.json new file mode 100644 index 00000000..82a84b1b --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_gray_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:gray_wool" + }, + "result": { + "id": "absentbydesign:wall_wool_gray", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_green.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_green.json new file mode 100644 index 00000000..452d5b67 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_green.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:green_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_wool_green" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_green_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_green_sc.json new file mode 100644 index 00000000..aec097d7 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_green_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:green_wool" + }, + "result": { + "id": "absentbydesign:wall_wool_green", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_light_blue.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_light_blue.json new file mode 100644 index 00000000..53fbefad --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_light_blue.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:light_blue_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_wool_light_blue" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_light_blue_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_light_blue_sc.json new file mode 100644 index 00000000..01d7a63e --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_light_blue_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:light_blue_wool" + }, + "result": { + "id": "absentbydesign:wall_wool_light_blue", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_light_gray.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_light_gray.json new file mode 100644 index 00000000..4e4381a4 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_light_gray.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:light_gray_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_wool_light_gray" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_light_gray_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_light_gray_sc.json new file mode 100644 index 00000000..4827de38 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_light_gray_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:light_gray_wool" + }, + "result": { + "id": "absentbydesign:wall_wool_light_gray", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_lime.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_lime.json new file mode 100644 index 00000000..e2eb7a06 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_lime.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:lime_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_wool_lime" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_lime_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_lime_sc.json new file mode 100644 index 00000000..64b4b8f5 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_lime_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:lime_wool" + }, + "result": { + "id": "absentbydesign:wall_wool_lime", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_magenta.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_magenta.json new file mode 100644 index 00000000..bc7fbd1a --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_magenta.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:magenta_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_wool_magenta" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_magenta_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_magenta_sc.json new file mode 100644 index 00000000..1adcf1f1 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_magenta_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:magenta_wool" + }, + "result": { + "id": "absentbydesign:wall_wool_magenta", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_orange.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_orange.json new file mode 100644 index 00000000..d918e3b9 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_orange.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:orange_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_wool_orange" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_orange_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_orange_sc.json new file mode 100644 index 00000000..c5e4db77 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_orange_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:orange_wool" + }, + "result": { + "id": "absentbydesign:wall_wool_orange", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_pink.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_pink.json new file mode 100644 index 00000000..31391ab9 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_pink.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:pink_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_wool_pink" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_pink_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_pink_sc.json new file mode 100644 index 00000000..63e7c6d3 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_pink_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:pink_wool" + }, + "result": { + "id": "absentbydesign:wall_wool_pink", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_purple.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_purple.json new file mode 100644 index 00000000..7574f9eb --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_purple.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:purple_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_wool_purple" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_purple_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_purple_sc.json new file mode 100644 index 00000000..c01f6996 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_purple_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:purple_wool" + }, + "result": { + "id": "absentbydesign:wall_wool_purple", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_red.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_red.json new file mode 100644 index 00000000..34708b38 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_red.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:red_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_wool_red" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_red_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_red_sc.json new file mode 100644 index 00000000..6992bce1 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_red_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:red_wool" + }, + "result": { + "id": "absentbydesign:wall_wool_red", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_white.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_white.json new file mode 100644 index 00000000..fff0ba01 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_white.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:white_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_wool_white" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_white_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_white_sc.json new file mode 100644 index 00000000..8a3adafc --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_white_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:white_wool" + }, + "result": { + "id": "absentbydesign:wall_wool_white", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_yellow.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_yellow.json new file mode 100644 index 00000000..ca92f738 --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_yellow.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:yellow_wool" + } + }, + "result": { + "count": 6, + "id": "absentbydesign:wall_wool_yellow" + } +} diff --git a/src/main/resources/data/absentbydesign/recipe/wall_wool_yellow_sc.json b/src/main/resources/data/absentbydesign/recipe/wall_wool_yellow_sc.json new file mode 100644 index 00000000..111a5dbc --- /dev/null +++ b/src/main/resources/data/absentbydesign/recipe/wall_wool_yellow_sc.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:yellow_wool" + }, + "result": { + "id": "absentbydesign:wall_wool_yellow", + "count": 1 + } +} diff --git a/src/main/resources/data/absentbydesign/recipes/mc_slab_acacia_sc.json b/src/main/resources/data/absentbydesign/recipes/mc_slab_acacia_sc.json deleted file mode 100644 index 99ded52c..00000000 --- a/src/main/resources/data/absentbydesign/recipes/mc_slab_acacia_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:acacia_planks" - }, - "result": "minecraft:acacia_slab", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/mc_slab_birch_sc.json b/src/main/resources/data/absentbydesign/recipes/mc_slab_birch_sc.json deleted file mode 100644 index 878339a8..00000000 --- a/src/main/resources/data/absentbydesign/recipes/mc_slab_birch_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:birch_planks" - }, - "result": "minecraft:birch_slab", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/mc_slab_crimson_sc.json b/src/main/resources/data/absentbydesign/recipes/mc_slab_crimson_sc.json deleted file mode 100644 index a38212c3..00000000 --- a/src/main/resources/data/absentbydesign/recipes/mc_slab_crimson_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:crimson_planks" - }, - "result": "minecraft:crimson_slab", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/mc_slab_dark_oak_sc.json b/src/main/resources/data/absentbydesign/recipes/mc_slab_dark_oak_sc.json deleted file mode 100644 index c70ff0fc..00000000 --- a/src/main/resources/data/absentbydesign/recipes/mc_slab_dark_oak_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:dark_oak_planks" - }, - "result": "minecraft:dark_oak_slab", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/mc_slab_jungle_sc.json b/src/main/resources/data/absentbydesign/recipes/mc_slab_jungle_sc.json deleted file mode 100644 index 3f13604c..00000000 --- a/src/main/resources/data/absentbydesign/recipes/mc_slab_jungle_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:jungle_planks" - }, - "result": "minecraft:jungle_slab", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/mc_slab_oak_sc.json b/src/main/resources/data/absentbydesign/recipes/mc_slab_oak_sc.json deleted file mode 100644 index 4c19026e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/mc_slab_oak_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:oak_planks" - }, - "result": "minecraft:oak_slab", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/mc_slab_spruce_sc.json b/src/main/resources/data/absentbydesign/recipes/mc_slab_spruce_sc.json deleted file mode 100644 index fde5f5c2..00000000 --- a/src/main/resources/data/absentbydesign/recipes/mc_slab_spruce_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:spruce_planks" - }, - "result": "minecraft:spruce_slab", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/mc_slab_warped_sc.json b/src/main/resources/data/absentbydesign/recipes/mc_slab_warped_sc.json deleted file mode 100644 index 022d2e48..00000000 --- a/src/main/resources/data/absentbydesign/recipes/mc_slab_warped_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:warped_planks" - }, - "result": "minecraft:warped_slab", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/mc_stairs_acacia_sc.json b/src/main/resources/data/absentbydesign/recipes/mc_stairs_acacia_sc.json deleted file mode 100644 index e0a29ffb..00000000 --- a/src/main/resources/data/absentbydesign/recipes/mc_stairs_acacia_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:acacia_planks" - }, - "result": "minecraft:acacia_stairs", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/mc_stairs_birch_sc.json b/src/main/resources/data/absentbydesign/recipes/mc_stairs_birch_sc.json deleted file mode 100644 index 7e25353a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/mc_stairs_birch_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:birch_planks" - }, - "result": "minecraft:birch_stairs", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/mc_stairs_crimson_sc.json b/src/main/resources/data/absentbydesign/recipes/mc_stairs_crimson_sc.json deleted file mode 100644 index 2ba0d6c5..00000000 --- a/src/main/resources/data/absentbydesign/recipes/mc_stairs_crimson_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:crimson_planks" - }, - "result": "minecraft:crimson_stairs", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/mc_stairs_dark_oak_sc.json b/src/main/resources/data/absentbydesign/recipes/mc_stairs_dark_oak_sc.json deleted file mode 100644 index a0a6f9ad..00000000 --- a/src/main/resources/data/absentbydesign/recipes/mc_stairs_dark_oak_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:dark_oak_planks" - }, - "result": "minecraft:dark_oak_stairs", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/mc_stairs_jungle_sc.json b/src/main/resources/data/absentbydesign/recipes/mc_stairs_jungle_sc.json deleted file mode 100644 index 69a6e104..00000000 --- a/src/main/resources/data/absentbydesign/recipes/mc_stairs_jungle_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:jungle_planks" - }, - "result": "minecraft:jungle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/mc_stairs_oak_sc.json b/src/main/resources/data/absentbydesign/recipes/mc_stairs_oak_sc.json deleted file mode 100644 index d45ad35e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/mc_stairs_oak_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:oak_planks" - }, - "result": "minecraft:oak_stairs", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/mc_stairs_spruce_sc.json b/src/main/resources/data/absentbydesign/recipes/mc_stairs_spruce_sc.json deleted file mode 100644 index 3435bf01..00000000 --- a/src/main/resources/data/absentbydesign/recipes/mc_stairs_spruce_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:spruce_planks" - }, - "result": "minecraft:spruce_stairs", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/mc_stairs_warped_sc.json b/src/main/resources/data/absentbydesign/recipes/mc_stairs_warped_sc.json deleted file mode 100644 index 598b0aa1..00000000 --- a/src/main/resources/data/absentbydesign/recipes/mc_stairs_warped_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:warped_planks" - }, - "result": "minecraft:warped_stairs", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_amethyst.json b/src/main/resources/data/absentbydesign/recipes/slab_amethyst.json deleted file mode 100644 index 8676a3b3..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_amethyst.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:amethyst_block" - } - }, - "result": { - "item": "absentbydesign:slab_amethyst", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_amethyst_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_amethyst_sc.json deleted file mode 100644 index 4ab84f80..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_amethyst_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:amethyst_block" - }, - "result": "absentbydesign:slab_amethyst", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_basalt.json b/src/main/resources/data/absentbydesign/recipes/slab_basalt.json deleted file mode 100644 index d15e7f66..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_basalt.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:basalt" - } - }, - "result": { - "item": "absentbydesign:slab_basalt", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_basalt_from_basalt_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_basalt_from_basalt_stonecutting.json deleted file mode 100644 index 0893acba..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_basalt_from_basalt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:basalt" - }, - "result": "absentbydesign:slab_basalt", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_blue_ice.json b/src/main/resources/data/absentbydesign/recipes/slab_blue_ice.json deleted file mode 100644 index 81e4ab2d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_blue_ice.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:blue_ice" - } - }, - "result": { - "item": "absentbydesign:slab_blue_ice", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_blue_ice_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_blue_ice_sc.json deleted file mode 100644 index b5fe1af0..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_blue_ice_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:blue_ice" - }, - "result": "absentbydesign:slab_blue_ice", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_bone.json b/src/main/resources/data/absentbydesign/recipes/slab_bone.json deleted file mode 100644 index 1070daf4..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_bone.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:bone_block" - } - }, - "result": { - "item": "absentbydesign:slab_bone", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_bone_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_bone_sc.json deleted file mode 100644 index 1849d878..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_bone_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:bone_block" - }, - "result": "absentbydesign:slab_bone", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_bricks_cracked.json b/src/main/resources/data/absentbydesign/recipes/slab_bricks_cracked.json deleted file mode 100644 index fbbe1cbf..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_bricks_cracked.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:cracked_stone_bricks" - } - }, - "result": { - "item": "absentbydesign:slab_bricks_cracked", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_bricks_cracked_from_cracked_stone_bricks_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_bricks_cracked_from_cracked_stone_bricks_stonecutting.json deleted file mode 100644 index b5677573..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_bricks_cracked_from_cracked_stone_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cracked_stone_bricks" - }, - "result": "absentbydesign:slab_bricks_cracked", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_brown_mushroom.json b/src/main/resources/data/absentbydesign/recipes/slab_brown_mushroom.json deleted file mode 100644 index 9c7cba93..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_brown_mushroom.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:brown_mushroom_block" - } - }, - "result": { - "item": "absentbydesign:slab_brown_mushroom", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_brown_mushroom_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_brown_mushroom_sc.json deleted file mode 100644 index d1b5aa2d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_brown_mushroom_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:brown_mushroom_block" - }, - "result": "absentbydesign:slab_brown_mushroom", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_calcite.json b/src/main/resources/data/absentbydesign/recipes/slab_calcite.json deleted file mode 100644 index 0004ef07..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_calcite.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:calcite" - } - }, - "result": { - "item": "absentbydesign:slab_calcite", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_calcite_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_calcite_sc.json deleted file mode 100644 index ffd6e4b0..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_calcite_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:calcite" - }, - "result": "absentbydesign:slab_calcite", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_coarse_dirt.json b/src/main/resources/data/absentbydesign/recipes/slab_coarse_dirt.json deleted file mode 100644 index 98e49a79..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_coarse_dirt.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:coarse_dirt" - } - }, - "result": { - "item": "absentbydesign:slab_coarse_dirt", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_coarse_dirt_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_coarse_dirt_stonecutting.json deleted file mode 100644 index cedec6f9..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_coarse_dirt_stonecutting.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:coarse_dirt" - }, - "result": "absentbydesign:slab_coarse_dirt", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_black.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_black.json deleted file mode 100644 index 9c8f64e2..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_black.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:black_concrete" - } - }, - "result": { - "item": "absentbydesign:slab_concrete_black", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_black_from_black_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_black_from_black_concrete_stonecutting.json deleted file mode 100644 index dd1734af..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_black_from_black_concrete_stonecutting.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:black_concrete" - }, - "result": "absentbydesign:slab_concrete_black", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_blue.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_blue.json deleted file mode 100644 index a9621985..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_blue.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:blue_concrete" - } - }, - "result": { - "item": "absentbydesign:slab_concrete_blue", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_blue_from_blue_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_blue_from_blue_concrete_stonecutting.json deleted file mode 100644 index 6b34ffdc..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_blue_from_blue_concrete_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:blue_concrete" - }, - "result": "absentbydesign:slab_concrete_blue", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_brown.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_brown.json deleted file mode 100644 index 8b8c285d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_brown.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:brown_concrete" - } - }, - "result": { - "item": "absentbydesign:slab_concrete_brown", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_brown_from_brown_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_brown_from_brown_concrete_stonecutting.json deleted file mode 100644 index 63962be6..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_brown_from_brown_concrete_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:brown_concrete" - }, - "result": "absentbydesign:slab_concrete_brown", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_cyan.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_cyan.json deleted file mode 100644 index 7ba13185..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_cyan.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:cyan_concrete" - } - }, - "result": { - "item": "absentbydesign:slab_concrete_cyan", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_cyan_from_cyan_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_cyan_from_cyan_concrete_stonecutting.json deleted file mode 100644 index b658b559..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_cyan_from_cyan_concrete_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cyan_concrete" - }, - "result": "absentbydesign:slab_concrete_cyan", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_gray.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_gray.json deleted file mode 100644 index d11adf7a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_gray.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:gray_concrete" - } - }, - "result": { - "item": "absentbydesign:slab_concrete_gray", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_gray_from_gray_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_gray_from_gray_concrete_stonecutting.json deleted file mode 100644 index 39d089d3..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_gray_from_gray_concrete_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:gray_concrete" - }, - "result": "absentbydesign:slab_concrete_gray", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_green.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_green.json deleted file mode 100644 index 2c1c8e76..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_green.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:green_concrete" - } - }, - "result": { - "item": "absentbydesign:slab_concrete_green", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_green_from_green_concrete.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_green_from_green_concrete.json deleted file mode 100644 index 383e5f3c..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_green_from_green_concrete.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:green_concrete" - }, - "result": "absentbydesign:slab_concrete_green", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_light_blue.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_light_blue.json deleted file mode 100644 index 1a36d0bd..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_light_blue.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:light_blue_concrete" - } - }, - "result": { - "item": "absentbydesign:slab_concrete_light_blue", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_light_blue_from_light_blue_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_light_blue_from_light_blue_concrete_stonecutting.json deleted file mode 100644 index b7c027ab..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_light_blue_from_light_blue_concrete_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:light_blue_concrete" - }, - "result": "absentbydesign:slab_concrete_light_blue", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_lime.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_lime.json deleted file mode 100644 index f8d53473..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_lime.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:lime_concrete" - } - }, - "result": { - "item": "absentbydesign:slab_concrete_lime", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_lime_from_lime_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_lime_from_lime_concrete_stonecutting.json deleted file mode 100644 index 140108b3..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_lime_from_lime_concrete_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:lime_concrete" - }, - "result": "absentbydesign:slab_concrete_lime", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_magenta.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_magenta.json deleted file mode 100644 index 35a9c14f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_magenta.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:magenta_concrete" - } - }, - "result": { - "item": "absentbydesign:slab_concrete_magenta", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_magenta_from_magenta_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_magenta_from_magenta_concrete_stonecutting.json deleted file mode 100644 index c085dbb8..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_magenta_from_magenta_concrete_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:magenta_concrete" - }, - "result": "absentbydesign:slab_concrete_magenta", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_orange.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_orange.json deleted file mode 100644 index a311051e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_orange.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:orange_concrete" - } - }, - "result": { - "item": "absentbydesign:slab_concrete_orange", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_orange_from_orange_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_orange_from_orange_concrete_stonecutting.json deleted file mode 100644 index fea2b227..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_orange_from_orange_concrete_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:orange_concrete" - }, - "result": "absentbydesign:slab_concrete_orange", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_pink.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_pink.json deleted file mode 100644 index 6fe3adb6..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_pink.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:pink_concrete" - } - }, - "result": { - "item": "absentbydesign:slab_concrete_pink", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_pink_from_pink_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_pink_from_pink_concrete_stonecutting.json deleted file mode 100644 index 5db3ad13..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_pink_from_pink_concrete_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:pink_concrete" - }, - "result": "absentbydesign:slab_concrete_pink", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_purple.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_purple.json deleted file mode 100644 index ed8de488..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_purple.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:purple_concrete" - } - }, - "result": { - "item": "absentbydesign:slab_concrete_purple", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_purple_from_purple_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_purple_from_purple_concrete_stonecutting.json deleted file mode 100644 index 12e48a89..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_purple_from_purple_concrete_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:purple_concrete" - }, - "result": "absentbydesign:slab_concrete_purple", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_red.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_red.json deleted file mode 100644 index 162e400b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_red.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:red_concrete" - } - }, - "result": { - "item": "absentbydesign:slab_concrete_red", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_red_from_red_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_red_from_red_concrete_stonecutting.json deleted file mode 100644 index fd0b701f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_red_from_red_concrete_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:red_concrete" - }, - "result": "absentbydesign:slab_concrete_red", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_silver.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_silver.json deleted file mode 100644 index 8a78797d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_silver.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:light_gray_concrete" - } - }, - "result": { - "item": "absentbydesign:slab_concrete_silver", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_silver_from_light_gray_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_silver_from_light_gray_concrete_stonecutting.json deleted file mode 100644 index 8d0fcd5f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_silver_from_light_gray_concrete_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:light_gray_concrete" - }, - "result": "absentbydesign:slab_concrete_silver", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_white.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_white.json deleted file mode 100644 index 142fe36f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_white.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:white_concrete" - } - }, - "result": { - "item": "absentbydesign:slab_concrete_white", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_white_from_white_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_white_from_white_concrete_stonecutting.json deleted file mode 100644 index 3d2c624f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_white_from_white_concrete_stonecutting.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:white_concrete" - }, - "result": "absentbydesign:slab_concrete_white", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_yellow.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_yellow.json deleted file mode 100644 index 3ae056f3..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_yellow.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:yellow_concrete" - } - }, - "result": { - "item": "absentbydesign:slab_concrete_yellow", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_concrete_yellow_from_yellow_concrete_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_concrete_yellow_from_yellow_concrete_stonecutting.json deleted file mode 100644 index 05ab70f5..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_concrete_yellow_from_yellow_concrete_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:yellow_concrete" - }, - "result": "absentbydesign:slab_concrete_yellow", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_cracked_deepslate_bricks.json b/src/main/resources/data/absentbydesign/recipes/slab_cracked_deepslate_bricks.json deleted file mode 100644 index a6ce74e1..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_cracked_deepslate_bricks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:cracked_deepslate_bricks" - } - }, - "result": { - "item": "absentbydesign:slab_cracked_deepslate_bricks", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_cracked_deepslate_bricks_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_cracked_deepslate_bricks_sc.json deleted file mode 100644 index 0bb8906f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_cracked_deepslate_bricks_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cracked_deepslate_bricks" - }, - "result": "absentbydesign:slab_cracked_deepslate_bricks", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_cracked_deepslate_tiles.json b/src/main/resources/data/absentbydesign/recipes/slab_cracked_deepslate_tiles.json deleted file mode 100644 index 0afaedbb..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_cracked_deepslate_tiles.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:cracked_deepslate_tiles" - } - }, - "result": { - "item": "absentbydesign:slab_cracked_deepslate_tiles", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_cracked_deepslate_tiles_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_cracked_deepslate_tiles_sc.json deleted file mode 100644 index c8716e5f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_cracked_deepslate_tiles_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cracked_deepslate_tiles" - }, - "result": "absentbydesign:slab_cracked_deepslate_tiles", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_cracked_nether_bricks.json b/src/main/resources/data/absentbydesign/recipes/slab_cracked_nether_bricks.json deleted file mode 100644 index b5fb49b3..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_cracked_nether_bricks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:cracked_nether_bricks" - } - }, - "result": { - "item": "absentbydesign:slab_cracked_nether_bricks", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_cracked_nether_bricks_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_cracked_nether_bricks_sc.json deleted file mode 100644 index 7a0beb23..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_cracked_nether_bricks_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cracked_nether_bricks" - }, - "result": "absentbydesign:slab_cracked_nether_bricks", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_cracked_polished_blackstone_bricks.json b/src/main/resources/data/absentbydesign/recipes/slab_cracked_polished_blackstone_bricks.json deleted file mode 100644 index d5128dbf..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_cracked_polished_blackstone_bricks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:cracked_polished_blackstone_bricks" - } - }, - "result": { - "item": "absentbydesign:slab_cracked_polished_blackstone_bricks", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_cracked_polished_blackstone_bricks_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_cracked_polished_blackstone_bricks_sc.json deleted file mode 100644 index 921c9495..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_cracked_polished_blackstone_bricks_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cracked_polished_blackstone_bricks" - }, - "result": "absentbydesign:slab_cracked_polished_blackstone_bricks", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_crying_obsidian.json b/src/main/resources/data/absentbydesign/recipes/slab_crying_obsidian.json deleted file mode 100644 index 979b2498..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_crying_obsidian.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:crying_obsidian" - } - }, - "result": { - "item": "absentbydesign:slab_crying_obsidian", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_crying_obsidian_from_crying_obsidian_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_crying_obsidian_from_crying_obsidian_stonecutting.json deleted file mode 100644 index 5ee94b26..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_crying_obsidian_from_crying_obsidian_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:crying_obsidian" - }, - "result": "absentbydesign:slab_crying_obsidian", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_deepslate.json b/src/main/resources/data/absentbydesign/recipes/slab_deepslate.json deleted file mode 100644 index 8e600dcb..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_deepslate.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:deepslate" - } - }, - "result": { - "item": "absentbydesign:slab_deepslate", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_deepslate_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_deepslate_sc.json deleted file mode 100644 index 4d2ac4ba..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_deepslate_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:deepslate" - }, - "result": "absentbydesign:slab_deepslate", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_diamond.json b/src/main/resources/data/absentbydesign/recipes/slab_diamond.json deleted file mode 100644 index 7820d9f9..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_diamond.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:diamond_block" - } - }, - "result": { - "item": "absentbydesign:slab_diamond", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_diamond_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_diamond_sc.json deleted file mode 100644 index 28542cae..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_diamond_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:diamond_block" - }, - "result": "absentbydesign:slab_diamond", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_dripstone.json b/src/main/resources/data/absentbydesign/recipes/slab_dripstone.json deleted file mode 100644 index 384348df..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_dripstone.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:dripstone_block" - } - }, - "result": { - "item": "absentbydesign:slab_dripstone", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_dripstone_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_dripstone_sc.json deleted file mode 100644 index 731fcc55..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_dripstone_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:dripstone_block" - }, - "result": "absentbydesign:slab_dripstone", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_emerald.json b/src/main/resources/data/absentbydesign/recipes/slab_emerald.json deleted file mode 100644 index a8aa22ed..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_emerald.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:emerald_block" - } - }, - "result": { - "item": "absentbydesign:slab_emerald", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_emerald_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_emerald_sc.json deleted file mode 100644 index 86435355..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_emerald_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:emerald_block" - }, - "result": "absentbydesign:slab_emerald", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_end_stone.json b/src/main/resources/data/absentbydesign/recipes/slab_end_stone.json deleted file mode 100644 index bfe8a352..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_end_stone.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:end_stone" - } - }, - "result": { - "item": "absentbydesign:slab_end_stone", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_end_stone_from_end_stone_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_end_stone_from_end_stone_stonecutting.json deleted file mode 100644 index 4c72d42e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_end_stone_from_end_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:end_stone" - }, - "result": "absentbydesign:slab_end_stone", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_gilded_blackstone.json b/src/main/resources/data/absentbydesign/recipes/slab_gilded_blackstone.json deleted file mode 100644 index 5a7bf26f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_gilded_blackstone.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:gilded_blackstone" - } - }, - "result": { - "item": "absentbydesign:slab_gilded_blackstone", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_gilded_blackstone_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_gilded_blackstone_sc.json deleted file mode 100644 index bc7a6812..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_gilded_blackstone_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:gilded_blackstone" - }, - "result": "absentbydesign:slab_gilded_blackstone", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass.json b/src/main/resources/data/absentbydesign/recipes/slab_glass.json deleted file mode 100644 index 406de359..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:glass" - } - }, - "result": { - "item": "absentbydesign:slab_glass", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_black.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_black.json deleted file mode 100644 index a861a47f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_black.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:black_stained_glass" - } - }, - "result": { - "item": "absentbydesign:slab_glass_black", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_black_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_black_sc.json deleted file mode 100644 index caa27417..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_black_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:black_stained_glass" - }, - "result": "absentbydesign:slab_glass_black", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_blue.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_blue.json deleted file mode 100644 index d625a922..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_blue.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:blue_stained_glass" - } - }, - "result": { - "item": "absentbydesign:slab_glass_blue", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_blue_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_blue_sc.json deleted file mode 100644 index 723e1e61..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_blue_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:blue_stained_glass" - }, - "result": "absentbydesign:slab_glass_blue", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_brown.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_brown.json deleted file mode 100644 index 84216e01..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_brown.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:brown_stained_glass" - } - }, - "result": { - "item": "absentbydesign:slab_glass_brown", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_brown_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_brown_sc.json deleted file mode 100644 index 57f2cedd..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_brown_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:brown_stained_glass" - }, - "result": "absentbydesign:slab_glass_brown", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_cyan.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_cyan.json deleted file mode 100644 index 1f372a39..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_cyan.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:cyan_stained_glass" - } - }, - "result": { - "item": "absentbydesign:slab_glass_cyan", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_cyan_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_cyan_sc.json deleted file mode 100644 index 3ac401c5..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_cyan_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cyan_stained_glass" - }, - "result": "absentbydesign:slab_glass_cyan", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_gray.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_gray.json deleted file mode 100644 index 702d106a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_gray.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:gray_stained_glass" - } - }, - "result": { - "item": "absentbydesign:slab_glass_gray", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_gray_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_gray_sc.json deleted file mode 100644 index 60f214f9..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_gray_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:gray_stained_glass" - }, - "result": "absentbydesign:slab_glass_gray", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_green.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_green.json deleted file mode 100644 index 0943ede5..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_green.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:green_stained_glass" - } - }, - "result": { - "item": "absentbydesign:slab_glass_green", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_green_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_green_sc.json deleted file mode 100644 index 12039bbc..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_green_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:green_stained_glass" - }, - "result": "absentbydesign:slab_glass_green", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_light_blue.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_light_blue.json deleted file mode 100644 index a4ed3798..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_light_blue.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:light_blue_stained_glass" - } - }, - "result": { - "item": "absentbydesign:slab_glass_light_blue", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_light_blue_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_light_blue_sc.json deleted file mode 100644 index 4033a13e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_light_blue_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:light_blue_stained_glass" - }, - "result": "absentbydesign:slab_glass_light_blue", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_light_gray.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_light_gray.json deleted file mode 100644 index f0ff1746..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_light_gray.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:light_gray_stained_glass" - } - }, - "result": { - "item": "absentbydesign:slab_glass_light_gray", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_light_gray_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_light_gray_sc.json deleted file mode 100644 index 57bed601..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_light_gray_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:light_gray_stained_glass" - }, - "result": "absentbydesign:slab_glass_light_gray", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_lime.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_lime.json deleted file mode 100644 index 36715c65..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_lime.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:lime_stained_glass" - } - }, - "result": { - "item": "absentbydesign:slab_glass_lime", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_lime_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_lime_sc.json deleted file mode 100644 index a4e5dafd..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_lime_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:lime_stained_glass" - }, - "result": "absentbydesign:slab_glass_lime", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_magenta.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_magenta.json deleted file mode 100644 index a8c39948..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_magenta.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:magenta_stained_glass" - } - }, - "result": { - "item": "absentbydesign:slab_glass_magenta", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_magenta_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_magenta_sc.json deleted file mode 100644 index 713165a3..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_magenta_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:magenta_stained_glass" - }, - "result": "absentbydesign:slab_glass_magenta", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_orange.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_orange.json deleted file mode 100644 index 03f3370f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_orange.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:orange_stained_glass" - } - }, - "result": { - "item": "absentbydesign:slab_glass_orange", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_orange_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_orange_sc.json deleted file mode 100644 index 4a852902..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_orange_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:orange_stained_glass" - }, - "result": "absentbydesign:slab_glass_orange", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_pink.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_pink.json deleted file mode 100644 index 67de2f73..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_pink.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:pink_stained_glass" - } - }, - "result": { - "item": "absentbydesign:slab_glass_pink", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_pink_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_pink_sc.json deleted file mode 100644 index 05701156..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_pink_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:pink_stained_glass" - }, - "result": "absentbydesign:slab_glass_pink", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_purple.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_purple.json deleted file mode 100644 index 29965623..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_purple.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:purple_stained_glass" - } - }, - "result": { - "item": "absentbydesign:slab_glass_purple", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_purple_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_purple_sc.json deleted file mode 100644 index c3934c51..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_purple_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:purple_stained_glass" - }, - "result": "absentbydesign:slab_glass_purple", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_red.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_red.json deleted file mode 100644 index b7222631..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_red.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:red_stained_glass" - } - }, - "result": { - "item": "absentbydesign:slab_glass_red", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_red_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_red_sc.json deleted file mode 100644 index 5e6738ad..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_red_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:red_stained_glass" - }, - "result": "absentbydesign:slab_glass_red", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_sc.json deleted file mode 100644 index 267cd316..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:glass" - }, - "result": "absentbydesign:slab_glass", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_white.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_white.json deleted file mode 100644 index 7a02b655..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_white.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:white_stained_glass" - } - }, - "result": { - "item": "absentbydesign:slab_glass_white", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_white_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_white_sc.json deleted file mode 100644 index e178e161..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_white_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:white_stained_glass" - }, - "result": "absentbydesign:slab_glass_white", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_yellow.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_yellow.json deleted file mode 100644 index 2b6971ff..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_yellow.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:yellow_stained_glass" - } - }, - "result": { - "item": "absentbydesign:slab_glass_yellow", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glass_yellow_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_glass_yellow_sc.json deleted file mode 100644 index c8e3f4d3..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glass_yellow_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:yellow_stained_glass" - }, - "result": "absentbydesign:slab_glass_yellow", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glowstone.json b/src/main/resources/data/absentbydesign/recipes/slab_glowstone.json deleted file mode 100644 index 3269c003..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glowstone.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:glowstone" - } - }, - "result": { - "item": "absentbydesign:slab_glowstone", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_glowstone_from_glowstone_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_glowstone_from_glowstone_stonecutting.json deleted file mode 100644 index f8fbd946..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_glowstone_from_glowstone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:glowstone" - }, - "result": "absentbydesign:slab_glowstone", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_gold.json b/src/main/resources/data/absentbydesign/recipes/slab_gold.json deleted file mode 100644 index bf9ddfbc..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_gold.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:gold_block" - } - }, - "result": { - "item": "absentbydesign:slab_gold", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_gold_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_gold_sc.json deleted file mode 100644 index e4fee62a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_gold_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:gold_block" - }, - "result": "absentbydesign:slab_gold", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_honeycomb.json b/src/main/resources/data/absentbydesign/recipes/slab_honeycomb.json deleted file mode 100644 index 117c3321..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_honeycomb.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:honeycomb_block" - } - }, - "result": { - "item": "absentbydesign:slab_honeycomb", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_honeycomb_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_honeycomb_sc.json deleted file mode 100644 index 13864f89..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_honeycomb_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:honeycomb_block" - }, - "result": "absentbydesign:slab_honeycomb", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_iron.json b/src/main/resources/data/absentbydesign/recipes/slab_iron.json deleted file mode 100644 index c7568f76..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_iron.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:iron_block" - } - }, - "result": { - "item": "absentbydesign:slab_iron", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_iron_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_iron_sc.json deleted file mode 100644 index 80431611..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_iron_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:iron_block" - }, - "result": "absentbydesign:slab_iron", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_lapis.json b/src/main/resources/data/absentbydesign/recipes/slab_lapis.json deleted file mode 100644 index a72334d1..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_lapis.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:lapis_block" - } - }, - "result": { - "item": "absentbydesign:slab_lapis", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_lapis_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_lapis_sc.json deleted file mode 100644 index 6a90294c..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_lapis_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:lapis_block" - }, - "result": "absentbydesign:slab_lapis", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_lodestone.json b/src/main/resources/data/absentbydesign/recipes/slab_lodestone.json deleted file mode 100644 index 55d41c7b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_lodestone.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:lodestone" - } - }, - "result": { - "item": "absentbydesign:slab_lodestone", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_lodestone_from_lodestone_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_lodestone_from_lodestone_stonecutting.json deleted file mode 100644 index 0d4dd0e0..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_lodestone_from_lodestone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:lodestone" - }, - "result": "absentbydesign:slab_lodestone", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_magma.json b/src/main/resources/data/absentbydesign/recipes/slab_magma.json deleted file mode 100644 index 4de0a285..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_magma.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:magma_block" - } - }, - "result": { - "item": "absentbydesign:slab_magma", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_magma_from_magma_block_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_magma_from_magma_block_stonecutting.json deleted file mode 100644 index d26faec5..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_magma_from_magma_block_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:magma_block" - }, - "result": "absentbydesign:slab_magma", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_moss.json b/src/main/resources/data/absentbydesign/recipes/slab_moss.json deleted file mode 100644 index 7ace79d8..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_moss.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:moss_block" - } - }, - "result": { - "item": "absentbydesign:slab_moss", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_moss_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_moss_sc.json deleted file mode 100644 index b30fff33..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_moss_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:moss_block" - }, - "result": "absentbydesign:slab_moss", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_mud.json b/src/main/resources/data/absentbydesign/recipes/slab_mud.json deleted file mode 100644 index 97f06432..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_mud.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:mud" - } - }, - "result": { - "item": "absentbydesign:slab_mud", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_mud_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_mud_sc.json deleted file mode 100644 index 72f22bb1..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_mud_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:mud" - }, - "result": "absentbydesign:slab_mud", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_muddy_mangrove_roots.json b/src/main/resources/data/absentbydesign/recipes/slab_muddy_mangrove_roots.json deleted file mode 100644 index 498d429a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_muddy_mangrove_roots.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:muddy_mangrove_roots" - } - }, - "result": { - "item": "absentbydesign:slab_muddy_mangrove_roots", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_muddy_mangrove_roots_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_muddy_mangrove_roots_sc.json deleted file mode 100644 index d3ac2999..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_muddy_mangrove_roots_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:muddy_mangrove_roots" - }, - "result": "absentbydesign:slab_muddy_mangrove_roots", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_mushroom_polished.json b/src/main/resources/data/absentbydesign/recipes/slab_mushroom_polished.json deleted file mode 100644 index 0cce6ed7..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_mushroom_polished.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "#" - ], - "key": { - "#": { - "item": "absentbydesign:slab_mushroom_stem" - } - }, - "result": { - "item": "absentbydesign:slab_mushroom_polished", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_mushroom_polished_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_mushroom_polished_sc.json deleted file mode 100644 index ac9af217..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_mushroom_polished_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "absentbydesign:slab_mushroom_stem" - }, - "result": "absentbydesign:slab_mushroom_polished", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_mushroom_stem.json b/src/main/resources/data/absentbydesign/recipes/slab_mushroom_stem.json deleted file mode 100644 index 80ced049..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_mushroom_stem.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:mushroom_stem" - } - }, - "result": { - "item": "absentbydesign:slab_mushroom_stem", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_mushroom_stem_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_mushroom_stem_sc.json deleted file mode 100644 index 231f070b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_mushroom_stem_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:mushroom_stem" - }, - "result": "absentbydesign:slab_mushroom_stem", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_netherite.json b/src/main/resources/data/absentbydesign/recipes/slab_netherite.json deleted file mode 100644 index 45256cc7..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_netherite.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:netherite_block" - } - }, - "result": { - "item": "absentbydesign:slab_netherite", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_netherite_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_netherite_sc.json deleted file mode 100644 index 2020d4bf..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_netherite_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:netherite_block" - }, - "result": "absentbydesign:slab_netherite", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_netherrack.json b/src/main/resources/data/absentbydesign/recipes/slab_netherrack.json deleted file mode 100644 index 8ffe020b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_netherrack.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:netherrack" - } - }, - "result": { - "item": "absentbydesign:slab_netherrack", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_netherrack_from_netherrack_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_netherrack_from_netherrack_stonecutting.json deleted file mode 100644 index aabb11df..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_netherrack_from_netherrack_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:netherrack" - }, - "result": "absentbydesign:slab_netherrack", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_obsidian.json b/src/main/resources/data/absentbydesign/recipes/slab_obsidian.json deleted file mode 100644 index 94e8b112..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_obsidian.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:obsidian" - } - }, - "result": { - "item": "absentbydesign:slab_obsidian", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_obsidian_from_obsidian_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_obsidian_from_obsidian_stonecutting.json deleted file mode 100644 index fb7b785e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_obsidian_from_obsidian_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:obsidian" - }, - "result": "absentbydesign:slab_obsidian", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_ochre_froglight.json b/src/main/resources/data/absentbydesign/recipes/slab_ochre_froglight.json deleted file mode 100644 index b5ea761c..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_ochre_froglight.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:ochre_froglight" - } - }, - "result": { - "item": "absentbydesign:slab_ochre_froglight", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_ochre_froglight_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_ochre_froglight_sc.json deleted file mode 100644 index bd382055..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_ochre_froglight_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:ochre_froglight" - }, - "result": "absentbydesign:slab_ochre_froglight", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_packed_ice.json b/src/main/resources/data/absentbydesign/recipes/slab_packed_ice.json deleted file mode 100644 index 9805714c..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_packed_ice.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:packed_ice" - } - }, - "result": { - "item": "absentbydesign:slab_packed_ice", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_packed_ice_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_packed_ice_sc.json deleted file mode 100644 index adfde768..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_packed_ice_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:packed_ice" - }, - "result": "absentbydesign:slab_packed_ice", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_packed_mud.json b/src/main/resources/data/absentbydesign/recipes/slab_packed_mud.json deleted file mode 100644 index fd037c60..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_packed_mud.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:packed_mud" - } - }, - "result": { - "item": "absentbydesign:slab_packed_mud", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_packed_mud_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_packed_mud_sc.json deleted file mode 100644 index 3863a7c4..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_packed_mud_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:packed_mud" - }, - "result": "absentbydesign:slab_packed_mud", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_pearlescent_froglight.json b/src/main/resources/data/absentbydesign/recipes/slab_pearlescent_froglight.json deleted file mode 100644 index 268957c3..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_pearlescent_froglight.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:pearlescent_froglight" - } - }, - "result": { - "item": "absentbydesign:slab_pearlescent_froglight", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_pearlescent_froglight_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_pearlescent_froglight_sc.json deleted file mode 100644 index e153831e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_pearlescent_froglight_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:pearlescent_froglight" - }, - "result": "absentbydesign:slab_pearlescent_froglight", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_polished_basalt.json b/src/main/resources/data/absentbydesign/recipes/slab_polished_basalt.json deleted file mode 100644 index fcc8807e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_polished_basalt.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:polished_basalt" - } - }, - "result": { - "item": "absentbydesign:slab_polished_basalt", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_polished_basalt_from_polished_basalt_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_polished_basalt_from_polished_basalt_stonecutting.json deleted file mode 100644 index 95e70ae2..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_polished_basalt_from_polished_basalt_stonecutting.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:polished_basalt" - }, - "result": "absentbydesign:slab_polished_basalt", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_quartz_bricks.json b/src/main/resources/data/absentbydesign/recipes/slab_quartz_bricks.json deleted file mode 100644 index e6a0722f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_quartz_bricks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:quartz_bricks" - } - }, - "result": { - "item": "absentbydesign:slab_quartz_bricks", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_quartz_bricks_from_quartz_bricks_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_quartz_bricks_from_quartz_bricks_stonecutting.json deleted file mode 100644 index bded9efb..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_quartz_bricks_from_quartz_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:quartz_bricks" - }, - "result": "absentbydesign:slab_quartz_bricks", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_raw_copper.json b/src/main/resources/data/absentbydesign/recipes/slab_raw_copper.json deleted file mode 100644 index 40bf23a0..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_raw_copper.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:raw_copper_block" - } - }, - "result": { - "item": "absentbydesign:slab_raw_copper", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_raw_copper_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_raw_copper_sc.json deleted file mode 100644 index 9762713b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_raw_copper_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:raw_copper_block" - }, - "result": "absentbydesign:slab_raw_copper", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_raw_gold.json b/src/main/resources/data/absentbydesign/recipes/slab_raw_gold.json deleted file mode 100644 index 2c8e97b6..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_raw_gold.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:raw_gold_block" - } - }, - "result": { - "item": "absentbydesign:slab_raw_gold", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_raw_gold_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_raw_gold_sc.json deleted file mode 100644 index 3deb6c5d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_raw_gold_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:raw_gold_block" - }, - "result": "absentbydesign:slab_raw_gold", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_raw_iron.json b/src/main/resources/data/absentbydesign/recipes/slab_raw_iron.json deleted file mode 100644 index dffc207a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_raw_iron.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:raw_iron_block" - } - }, - "result": { - "item": "absentbydesign:slab_raw_iron", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_raw_iron_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_raw_iron_sc.json deleted file mode 100644 index e5f0b4f5..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_raw_iron_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:raw_iron_block" - }, - "result": "absentbydesign:slab_raw_iron", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_red_mushroom.json b/src/main/resources/data/absentbydesign/recipes/slab_red_mushroom.json deleted file mode 100644 index 59defd20..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_red_mushroom.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:red_mushroom_block" - } - }, - "result": { - "item": "absentbydesign:slab_red_mushroom", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_red_mushroom_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_red_mushroom_stonecutting.json deleted file mode 100644 index f48b227f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_red_mushroom_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:red_mushroom_block" - }, - "result": "absentbydesign:slab_red_mushroom", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_reinforced_deepslate.json b/src/main/resources/data/absentbydesign/recipes/slab_reinforced_deepslate.json deleted file mode 100644 index 1d4a1e83..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_reinforced_deepslate.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:reinforced_deepslate" - } - }, - "result": { - "item": "absentbydesign:slab_reinforced_deepslate", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_reinforced_deepslate_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_reinforced_deepslate_sc.json deleted file mode 100644 index 172fd47e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_reinforced_deepslate_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:reinforced_deepslate" - }, - "result": "absentbydesign:slab_reinforced_deepslate", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_rooted_dirt.json b/src/main/resources/data/absentbydesign/recipes/slab_rooted_dirt.json deleted file mode 100644 index 18bf92cc..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_rooted_dirt.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:rooted_dirt" - } - }, - "result": { - "item": "absentbydesign:slab_rooted_dirt", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_rooted_dirt_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_rooted_dirt_sc.json deleted file mode 100644 index 9558598f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_rooted_dirt_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:rooted_dirt" - }, - "result": "absentbydesign:slab_rooted_dirt", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_sculk.json b/src/main/resources/data/absentbydesign/recipes/slab_sculk.json deleted file mode 100644 index 3dfc2898..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_sculk.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:sculk" - } - }, - "result": { - "item": "absentbydesign:slab_sculk", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_sculk_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_sculk_sc.json deleted file mode 100644 index 6c372db2..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_sculk_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:sculk" - }, - "result": "absentbydesign:slab_sculk", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_sea_lantern.json b/src/main/resources/data/absentbydesign/recipes/slab_sea_lantern.json deleted file mode 100644 index 035d5d09..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_sea_lantern.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:sea_lantern" - } - }, - "result": { - "item": "absentbydesign:slab_sea_lantern", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_sea_lantern_from_sea_lantern_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_sea_lantern_from_sea_lantern_stonecutting.json deleted file mode 100644 index f91bf747..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_sea_lantern_from_sea_lantern_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:sea_lantern" - }, - "result": "absentbydesign:slab_sea_lantern", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_shroomlight.json b/src/main/resources/data/absentbydesign/recipes/slab_shroomlight.json deleted file mode 100644 index 16bbb8bf..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_shroomlight.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:shroomlight" - } - }, - "result": { - "item": "absentbydesign:slab_shroomlight", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_shroomlight_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_shroomlight_sc.json deleted file mode 100644 index ae6d470b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_shroomlight_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:shroomlight" - }, - "result": "absentbydesign:slab_shroomlight", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_smooth_basalt.json b/src/main/resources/data/absentbydesign/recipes/slab_smooth_basalt.json deleted file mode 100644 index 2d30c66d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_smooth_basalt.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:smooth_basalt" - } - }, - "result": { - "item": "absentbydesign:slab_smooth_basalt", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_smooth_basalt_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_smooth_basalt_sc.json deleted file mode 100644 index 35066c69..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_smooth_basalt_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:smooth_basalt" - }, - "result": "absentbydesign:slab_smooth_basalt", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_snow_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_snow_sc.json deleted file mode 100644 index e4d65d9e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_snow_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:snow_block" - }, - "result": "absentbydesign:slab_snow", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_soul_sand.json b/src/main/resources/data/absentbydesign/recipes/slab_soul_sand.json deleted file mode 100644 index fa13045c..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_soul_sand.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:soul_sand" - } - }, - "result": { - "item": "absentbydesign:slab_soul_sand", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_soul_sand_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_soul_sand_sc.json deleted file mode 100644 index 07712c21..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_soul_sand_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:soul_sand" - }, - "result": "absentbydesign:slab_soul_sand", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_soul_soil.json b/src/main/resources/data/absentbydesign/recipes/slab_soul_soil.json deleted file mode 100644 index 28d5a415..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_soul_soil.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:soul_soil" - } - }, - "result": { - "item": "absentbydesign:slab_soul_soil", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_soul_soil_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_soul_soil_sc.json deleted file mode 100644 index deeef079..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_soul_soil_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:soul_soil" - }, - "result": "absentbydesign:slab_soul_soil", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta.json deleted file mode 100644 index f7aa4437..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:terracotta" - } - }, - "result": { - "item": "absentbydesign:slab_terracotta", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_black.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_black.json deleted file mode 100644 index 2cde3370..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_black.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:black_terracotta" - } - }, - "result": { - "item": "absentbydesign:slab_terracotta_black", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_black_from_black_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_black_from_black_terracotta_stonecutting.json deleted file mode 100644 index f3db7ff2..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_black_from_black_terracotta_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:black_terracotta" - }, - "result": "absentbydesign:slab_terracotta_black", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_blue.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_blue.json deleted file mode 100644 index 34910cb7..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_blue.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:blue_terracotta" - } - }, - "result": { - "item": "absentbydesign:slab_terracotta_blue", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_blue_from_blue_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_blue_from_blue_terracotta_stonecutting.json deleted file mode 100644 index 417f3c6d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_blue_from_blue_terracotta_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:blue_terracotta" - }, - "result": "absentbydesign:slab_terracotta_blue", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_brown.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_brown.json deleted file mode 100644 index 05e41d45..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_brown.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:brown_terracotta" - } - }, - "result": { - "item": "absentbydesign:slab_terracotta_brown", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_brown_from_brown_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_brown_from_brown_terracotta_stonecutting.json deleted file mode 100644 index 7ee9b735..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_brown_from_brown_terracotta_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:brown_terracotta" - }, - "result": "absentbydesign:slab_terracotta_brown", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_cyan.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_cyan.json deleted file mode 100644 index a4258ddb..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_cyan.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:cyan_terracotta" - } - }, - "result": { - "item": "absentbydesign:slab_terracotta_cyan", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_cyan_from_cyan_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_cyan_from_cyan_terracotta_stonecutting.json deleted file mode 100644 index ead86c90..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_cyan_from_cyan_terracotta_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cyan_terracotta" - }, - "result": "absentbydesign:slab_terracotta_cyan", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_gray.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_gray.json deleted file mode 100644 index ecbaf5fd..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_gray.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:gray_terracotta" - } - }, - "result": { - "item": "absentbydesign:slab_terracotta_gray", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_gray_from_gray_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_gray_from_gray_terracotta_stonecutting.json deleted file mode 100644 index 9f9b0cab..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_gray_from_gray_terracotta_stonecutting.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:gray_terracotta" - }, - "result": "absentbydesign:slab_terracotta_gray", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_green.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_green.json deleted file mode 100644 index d0e0ece2..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_green.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:green_terracotta" - } - }, - "result": { - "item": "absentbydesign:slab_terracotta_green", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_green_from_green_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_green_from_green_terracotta_stonecutting.json deleted file mode 100644 index 0d2482d1..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_green_from_green_terracotta_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:green_terracotta" - }, - "result": "absentbydesign:slab_terracotta_green", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_light_blue.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_light_blue.json deleted file mode 100644 index 83b078cc..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_light_blue.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:light_blue_terracotta" - } - }, - "result": { - "item": "absentbydesign:slab_terracotta_light_blue", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_light_blue_from_light_blue_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_light_blue_from_light_blue_terracotta_stonecutting.json deleted file mode 100644 index a2f4c773..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_light_blue_from_light_blue_terracotta_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:light_blue_terracotta" - }, - "result": "absentbydesign:slab_terracotta_light_blue", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_light_gray.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_light_gray.json deleted file mode 100644 index 50e8905c..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_light_gray.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:light_gray_terracotta" - } - }, - "result": { - "item": "absentbydesign:slab_terracotta_light_gray", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_light_gray_from_light_gray_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_light_gray_from_light_gray_terracotta_stonecutting.json deleted file mode 100644 index 6d87b884..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_light_gray_from_light_gray_terracotta_stonecutting.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:light_gray_terracotta" - }, - "result": "absentbydesign:slab_terracotta_light_gray", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_lime.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_lime.json deleted file mode 100644 index 6b87c2af..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_lime.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:lime_terracotta" - } - }, - "result": { - "item": "absentbydesign:slab_terracotta_lime", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_lime_from_lime_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_lime_from_lime_terracotta_stonecutting.json deleted file mode 100644 index 3d7a59c3..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_lime_from_lime_terracotta_stonecutting.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:lime_terracotta" - }, - "result": "absentbydesign:slab_terracotta_lime", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_magenta.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_magenta.json deleted file mode 100644 index 08ad020e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_magenta.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:magenta_terracotta" - } - }, - "result": { - "item": "absentbydesign:slab_terracotta_magenta", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_magenta_from_magenta_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_magenta_from_magenta_terracotta_stonecutting.json deleted file mode 100644 index d2c13c60..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_magenta_from_magenta_terracotta_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:magenta_terracotta" - }, - "result": "absentbydesign:slab_terracotta_magenta", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_orange.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_orange.json deleted file mode 100644 index a168ed92..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_orange.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:orange_terracotta" - } - }, - "result": { - "item": "absentbydesign:slab_terracotta_orange", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_orange_from_orange_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_orange_from_orange_terracotta_stonecutting.json deleted file mode 100644 index 30bd1f1a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_orange_from_orange_terracotta_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:orange_terracotta" - }, - "result": "absentbydesign:slab_terracotta_orange", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_pink.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_pink.json deleted file mode 100644 index 562ffcdd..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_pink.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:pink_terracotta" - } - }, - "result": { - "item": "absentbydesign:slab_terracotta_pink", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_pink_from_pink_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_pink_from_pink_terracotta_stonecutting.json deleted file mode 100644 index c4bb413d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_pink_from_pink_terracotta_stonecutting.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:pink_terracotta" - }, - "result": "absentbydesign:slab_terracotta_pink", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_purple.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_purple.json deleted file mode 100644 index 26381b9e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_purple.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:purple_terracotta" - } - }, - "result": { - "item": "absentbydesign:slab_terracotta_purple", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_purple_from_purple_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_purple_from_purple_terracotta_stonecutting.json deleted file mode 100644 index bcb5695e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_purple_from_purple_terracotta_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:purple_terracotta" - }, - "result": "absentbydesign:slab_terracotta_purple", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_red.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_red.json deleted file mode 100644 index 44215850..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_red.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:red_terracotta" - } - }, - "result": { - "item": "absentbydesign:slab_terracotta_red", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_red_from_red_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_red_from_red_terracotta_stonecutting.json deleted file mode 100644 index 20c5aace..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_red_from_red_terracotta_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:red_terracotta" - }, - "result": "absentbydesign:slab_terracotta_red", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_stonecutting.json deleted file mode 100644 index 9f72446d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:terracotta" - }, - "result": "absentbydesign:slab_terracotta", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_white.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_white.json deleted file mode 100644 index 4eee02db..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_white.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:white_terracotta" - } - }, - "result": { - "item": "absentbydesign:slab_terracotta_white", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_white_from_white_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_white_from_white_terracotta_stonecutting.json deleted file mode 100644 index 5b15ac4b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_white_from_white_terracotta_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:white_terracotta" - }, - "result": "absentbydesign:slab_terracotta_white", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_yellow.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_yellow.json deleted file mode 100644 index 76957dd3..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_yellow.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:yellow_terracotta" - } - }, - "result": { - "item": "absentbydesign:slab_terracotta_yellow", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_yellow_from_yellow_terracotta_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/slab_terracotta_yellow_from_yellow_terracotta_stonecutting.json deleted file mode 100644 index 122b0905..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_terracotta_yellow_from_yellow_terracotta_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:yellow_terracotta" - }, - "result": "absentbydesign:slab_terracotta_yellow", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_tuff.json b/src/main/resources/data/absentbydesign/recipes/slab_tuff.json deleted file mode 100644 index 08e1ff60..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_tuff.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:tuff" - } - }, - "result": { - "item": "absentbydesign:slab_tuff", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_tuff_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_tuff_sc.json deleted file mode 100644 index a2553268..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_tuff_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:tuff" - }, - "result": "absentbydesign:slab_tuff", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_verdant_froglight.json b/src/main/resources/data/absentbydesign/recipes/slab_verdant_froglight.json deleted file mode 100644 index 08ffe5b6..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_verdant_froglight.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:verdant_froglight" - } - }, - "result": { - "item": "absentbydesign:slab_verdant_froglight", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_verdant_froglight_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_verdant_froglight_sc.json deleted file mode 100644 index 625dc1a1..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_verdant_froglight_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:verdant_froglight" - }, - "result": "absentbydesign:slab_verdant_froglight", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_black.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_black.json deleted file mode 100644 index 2fabaa16..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_black.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:black_wool" - } - }, - "result": { - "item": "absentbydesign:slab_wool_black", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_black_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_black_sc.json deleted file mode 100644 index d336f294..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_black_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:black_wool" - }, - "result": "absentbydesign:slab_wool_black", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_blue.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_blue.json deleted file mode 100644 index e0507b4a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_blue.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:blue_wool" - } - }, - "result": { - "item": "absentbydesign:slab_wool_blue", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_blue_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_blue_sc.json deleted file mode 100644 index cacd8b37..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_blue_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:blue_wool" - }, - "result": "absentbydesign:slab_wool_blue", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_brown.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_brown.json deleted file mode 100644 index 9d08feba..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_brown.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:brown_wool" - } - }, - "result": { - "item": "absentbydesign:slab_wool_brown", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_brown_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_brown_sc.json deleted file mode 100644 index 0a7f07f2..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_brown_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:brown_wool" - }, - "result": "absentbydesign:slab_wool_brown", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_cyan.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_cyan.json deleted file mode 100644 index 0fff0422..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_cyan.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:cyan_wool" - } - }, - "result": { - "item": "absentbydesign:slab_wool_cyan", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_cyan_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_cyan_sc.json deleted file mode 100644 index 5a983b50..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_cyan_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cyan_wool" - }, - "result": "absentbydesign:slab_wool_cyan", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_gray.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_gray.json deleted file mode 100644 index ca759b7f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_gray.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:gray_wool" - } - }, - "result": { - "item": "absentbydesign:slab_wool_gray", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_gray_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_gray_sc.json deleted file mode 100644 index 3d6c379e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_gray_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:gray_wool" - }, - "result": "absentbydesign:slab_wool_gray", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_green.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_green.json deleted file mode 100644 index d5c8e2b5..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_green.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:green_wool" - } - }, - "result": { - "item": "absentbydesign:slab_wool_green", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_green_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_green_sc.json deleted file mode 100644 index 423f9cb9..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_green_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:green_wool" - }, - "result": "absentbydesign:slab_wool_green", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_light_blue.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_light_blue.json deleted file mode 100644 index 4030cfd1..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_light_blue.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:light_blue_wool" - } - }, - "result": { - "item": "absentbydesign:slab_wool_light_blue", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_light_blue_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_light_blue_sc.json deleted file mode 100644 index 3ed9cdc5..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_light_blue_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:light_blue_wool" - }, - "result": "absentbydesign:slab_wool_light_blue", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_lime.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_lime.json deleted file mode 100644 index 91f829ab..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_lime.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:lime_wool" - } - }, - "result": { - "item": "absentbydesign:slab_wool_lime", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_lime_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_lime_sc.json deleted file mode 100644 index 559cfa7e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_lime_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:lime_wool" - }, - "result": "absentbydesign:slab_wool_lime", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_magenta.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_magenta.json deleted file mode 100644 index 5d866ccd..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_magenta.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:magenta_wool" - } - }, - "result": { - "item": "absentbydesign:slab_wool_magenta", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_magenta_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_magenta_sc.json deleted file mode 100644 index e1c084b4..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_magenta_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:magenta_wool" - }, - "result": "absentbydesign:slab_wool_magenta", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_orange.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_orange.json deleted file mode 100644 index ff23ebc5..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_orange.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:orange_wool" - } - }, - "result": { - "item": "absentbydesign:slab_wool_orange", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_orange_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_orange_sc.json deleted file mode 100644 index e463c57c..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_orange_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:orange_wool" - }, - "result": "absentbydesign:slab_wool_orange", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_pink.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_pink.json deleted file mode 100644 index 61e9e0c0..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_pink.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:pink_wool" - } - }, - "result": { - "item": "absentbydesign:slab_wool_pink", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_pink_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_pink_sc.json deleted file mode 100644 index 45e15a17..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_pink_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:pink_wool" - }, - "result": "absentbydesign:slab_wool_pink", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_purple.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_purple.json deleted file mode 100644 index e9e4c4fb..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_purple.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:purple_wool" - } - }, - "result": { - "item": "absentbydesign:slab_wool_purple", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_purple_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_purple_sc.json deleted file mode 100644 index bfcf84a1..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_purple_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:purple_wool" - }, - "result": "absentbydesign:slab_wool_purple", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_red.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_red.json deleted file mode 100644 index f12dc796..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_red.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:red_wool" - } - }, - "result": { - "item": "absentbydesign:slab_wool_red", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_red_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_red_sc.json deleted file mode 100644 index 1cee9675..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_red_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:red_wool" - }, - "result": "absentbydesign:slab_wool_red", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_silver.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_silver.json deleted file mode 100644 index 1716a1e2..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_silver.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:light_gray_wool" - } - }, - "result": { - "item": "absentbydesign:slab_wool_silver", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_silver_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_silver_sc.json deleted file mode 100644 index 32b1fdc0..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_silver_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:light_gray_wool" - }, - "result": "absentbydesign:slab_wool_silver", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_white.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_white.json deleted file mode 100644 index 0d0f5e36..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_white.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:white_wool" - } - }, - "result": { - "item": "absentbydesign:slab_wool_white", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_white_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_white_sc.json deleted file mode 100644 index 1cc546ed..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_white_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:white_wool" - }, - "result": "absentbydesign:slab_wool_white", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_yellow.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_yellow.json deleted file mode 100644 index 088b10f6..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_yellow.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "minecraft:yellow_wool" - } - }, - "result": { - "item": "absentbydesign:slab_wool_yellow", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/slab_wool_yellow_sc.json b/src/main/resources/data/absentbydesign/recipes/slab_wool_yellow_sc.json deleted file mode 100644 index 3c78c976..00000000 --- a/src/main/resources/data/absentbydesign/recipes/slab_wool_yellow_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:yellow_wool" - }, - "result": "absentbydesign:slab_wool_yellow", - "count": 2 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_amethyst.json b/src/main/resources/data/absentbydesign/recipes/stairs_amethyst.json deleted file mode 100644 index fc170360..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_amethyst.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:amethyst_block" - } - }, - "result": { - "item": "absentbydesign:stairs_amethyst", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_amethyst_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_amethyst_sc.json deleted file mode 100644 index 3b199a4d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_amethyst_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:amethyst_block" - }, - "result": "absentbydesign:stairs_amethyst", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_basalt.json b/src/main/resources/data/absentbydesign/recipes/stairs_basalt.json deleted file mode 100644 index 986565ec..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_basalt.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:basalt" - } - }, - "result": { - "item": "absentbydesign:stairs_basalt", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_basalt_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/stairs_basalt_stonecutting.json deleted file mode 100644 index 9ae13796..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_basalt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:basalt" - }, - "result": "absentbydesign:stairs_basalt", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_blue_ice.json b/src/main/resources/data/absentbydesign/recipes/stairs_blue_ice.json deleted file mode 100644 index dfeb74bc..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_blue_ice.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:blue_ice" - } - }, - "result": { - "item": "absentbydesign:stairs_blue_ice", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_blue_ice_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_blue_ice_sc.json deleted file mode 100644 index 6adba34e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_blue_ice_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:blue_ice" - }, - "result": "absentbydesign:stairs_blue_ice", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_bone_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_bone_sc.json deleted file mode 100644 index 0c9553c0..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_bone_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:bone_block" - }, - "result": "absentbydesign:stairs_bone", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_bricks_cracked.json b/src/main/resources/data/absentbydesign/recipes/stairs_bricks_cracked.json deleted file mode 100644 index b3636f42..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_bricks_cracked.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:cracked_stone_bricks" - } - }, - "result": { - "item": "absentbydesign:stairs_bricks_cracked", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_bricks_cracked_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/stairs_bricks_cracked_stonecutting.json deleted file mode 100644 index e1fefc2b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_bricks_cracked_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cracked_stone_bricks" - }, - "result": "absentbydesign:stairs_bricks_cracked", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_brown_mushroom.json b/src/main/resources/data/absentbydesign/recipes/stairs_brown_mushroom.json deleted file mode 100644 index 88978191..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_brown_mushroom.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:brown_mushroom_block" - } - }, - "result": { - "item": "absentbydesign:stairs_brown_mushroom", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_brown_mushroom_stonecutting.json b/src/main/resources/data/absentbydesign/recipes/stairs_brown_mushroom_stonecutting.json deleted file mode 100644 index b2005839..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_brown_mushroom_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:brown_mushroom_block" - }, - "result": "absentbydesign:stairs_brown_mushroom", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_calcite.json b/src/main/resources/data/absentbydesign/recipes/stairs_calcite.json deleted file mode 100644 index e159bd3d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_calcite.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:calcite" - } - }, - "result": { - "item": "absentbydesign:stairs_calcite", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_calcite_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_calcite_sc.json deleted file mode 100644 index 1a53319d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_calcite_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:calcite" - }, - "result": "absentbydesign:stairs_calcite", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_coarse_dirt.json b/src/main/resources/data/absentbydesign/recipes/stairs_coarse_dirt.json deleted file mode 100644 index 484744d0..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_coarse_dirt.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:coarse_dirt" - } - }, - "result": { - "item": "absentbydesign:stairs_coarse_dirt", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_coarse_dirt_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_coarse_dirt_sc.json deleted file mode 100644 index 91f0a641..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_coarse_dirt_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:coarse_dirt" - }, - "result": "absentbydesign:stairs_coarse_dirt", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_black.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_black.json deleted file mode 100644 index 864ae03d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_black.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:black_concrete" - } - }, - "result": { - "item": "absentbydesign:stairs_concrete_black", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_black_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_black_sc.json deleted file mode 100644 index f2e97fb2..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_black_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:black_concrete" - }, - "result": "absentbydesign:stairs_concrete_black", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_blue.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_blue.json deleted file mode 100644 index 125aa1ec..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_blue.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:blue_concrete" - } - }, - "result": { - "item": "absentbydesign:stairs_concrete_blue", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_blue_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_blue_sc.json deleted file mode 100644 index 2550d24b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_blue_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:blue_concrete" - }, - "result": "absentbydesign:stairs_concrete_blue", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_brown.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_brown.json deleted file mode 100644 index 4b2d7834..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_brown.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:brown_concrete" - } - }, - "result": { - "item": "absentbydesign:stairs_concrete_brown", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_brown_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_brown_sc.json deleted file mode 100644 index 8d0d5c5e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_brown_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:brown_concrete" - }, - "result": "absentbydesign:stairs_concrete_brown", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_cyan.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_cyan.json deleted file mode 100644 index d17c01de..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_cyan.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:cyan_concrete" - } - }, - "result": { - "item": "absentbydesign:stairs_concrete_cyan", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_cyan_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_cyan_sc.json deleted file mode 100644 index d79fe184..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_cyan_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cyan_concrete" - }, - "result": "absentbydesign:stairs_concrete_cyan", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_gray.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_gray.json deleted file mode 100644 index b42ca95c..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_gray.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:gray_concrete" - } - }, - "result": { - "item": "absentbydesign:stairs_concrete_gray", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_gray_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_gray_sc.json deleted file mode 100644 index 19676c6c..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_gray_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:gray_concrete" - }, - "result": "absentbydesign:stairs_concrete_gray", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_green.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_green.json deleted file mode 100644 index 4266c8a4..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_green.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:green_concrete" - } - }, - "result": { - "item": "absentbydesign:stairs_concrete_green", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_green_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_green_sc.json deleted file mode 100644 index 05820e81..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_green_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:green_concrete" - }, - "result": "absentbydesign:stairs_concrete_green", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_light_blue.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_light_blue.json deleted file mode 100644 index d4983215..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_light_blue.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:light_blue_concrete" - } - }, - "result": { - "item": "absentbydesign:stairs_concrete_light_blue", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_light_blue_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_light_blue_sc.json deleted file mode 100644 index 0ba71415..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_light_blue_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:light_blue_concrete" - }, - "result": "absentbydesign:stairs_concrete_light_blue", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_lime.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_lime.json deleted file mode 100644 index 32898a22..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_lime.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:lime_concrete" - } - }, - "result": { - "item": "absentbydesign:stairs_concrete_lime", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_lime_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_lime_sc.json deleted file mode 100644 index b1648657..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_lime_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:lime_concrete" - }, - "result": "absentbydesign:stairs_concrete_lime", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_magenta.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_magenta.json deleted file mode 100644 index 471d7f0b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_magenta.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:magenta_concrete" - } - }, - "result": { - "item": "absentbydesign:stairs_concrete_magenta", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_magenta_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_magenta_sc.json deleted file mode 100644 index 192689fb..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_magenta_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:magenta_concrete" - }, - "result": "absentbydesign:stairs_concrete_magenta", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_orange.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_orange.json deleted file mode 100644 index b578bac7..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_orange.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:orange_concrete" - } - }, - "result": { - "item": "absentbydesign:stairs_concrete_orange", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_orange_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_orange_sc.json deleted file mode 100644 index 635282d7..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_orange_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:orange_concrete" - }, - "result": "absentbydesign:stairs_concrete_orange", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_pink.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_pink.json deleted file mode 100644 index 7037e73b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_pink.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:pink_concrete" - } - }, - "result": { - "item": "absentbydesign:stairs_concrete_pink", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_pink_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_pink_sc.json deleted file mode 100644 index ef6a1104..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_pink_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:pink_concrete" - }, - "result": "absentbydesign:stairs_concrete_pink", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_purple.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_purple.json deleted file mode 100644 index c368f53f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_purple.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:purple_concrete" - } - }, - "result": { - "item": "absentbydesign:stairs_concrete_purple", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_purple_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_purple_sc.json deleted file mode 100644 index 244af0b3..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_purple_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:purple_concrete" - }, - "result": "absentbydesign:stairs_concrete_purple", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_red.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_red.json deleted file mode 100644 index b7c03860..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_red.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:red_concrete" - } - }, - "result": { - "item": "absentbydesign:stairs_concrete_red", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_red_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_red_sc.json deleted file mode 100644 index 5aed67d2..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_red_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:red_concrete" - }, - "result": "absentbydesign:stairs_concrete_red", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_silver.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_silver.json deleted file mode 100644 index 54b35331..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_silver.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:light_gray_concrete" - } - }, - "result": { - "item": "absentbydesign:stairs_concrete_silver", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_silver_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_silver_sc.json deleted file mode 100644 index b50743d7..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_silver_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:light_gray_concrete" - }, - "result": "absentbydesign:stairs_concrete_silver", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_white.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_white.json deleted file mode 100644 index 06e37ef5..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_white.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:white_concrete" - } - }, - "result": { - "item": "absentbydesign:stairs_concrete_white", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_white_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_white_sc.json deleted file mode 100644 index 330dd582..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_white_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:white_concrete" - }, - "result": "absentbydesign:stairs_concrete_white", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_yellow.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_yellow.json deleted file mode 100644 index 790d8d2d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_yellow.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:yellow_concrete" - } - }, - "result": { - "item": "absentbydesign:stairs_concrete_yellow", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_yellow_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_concrete_yellow_sc.json deleted file mode 100644 index 18136722..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_concrete_yellow_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:yellow_concrete" - }, - "result": "absentbydesign:stairs_concrete_yellow", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_cracked_deepslate_bricks.json b/src/main/resources/data/absentbydesign/recipes/stairs_cracked_deepslate_bricks.json deleted file mode 100644 index e5584b49..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_cracked_deepslate_bricks.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:cracked_deepslate_bricks" - } - }, - "result": { - "item": "absentbydesign:stairs_cracked_deepslate_bricks", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_cracked_deepslate_bricks_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_cracked_deepslate_bricks_sc.json deleted file mode 100644 index 66bf3e27..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_cracked_deepslate_bricks_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cracked_deepslate_bricks" - }, - "result": "absentbydesign:stairs_cracked_deepslate_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_cracked_deepslate_tiles.json b/src/main/resources/data/absentbydesign/recipes/stairs_cracked_deepslate_tiles.json deleted file mode 100644 index 452adc53..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_cracked_deepslate_tiles.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:cracked_deepslate_tiles" - } - }, - "result": { - "item": "absentbydesign:stairs_cracked_deepslate_tiles", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_cracked_deepslate_tiles_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_cracked_deepslate_tiles_sc.json deleted file mode 100644 index b4d0864a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_cracked_deepslate_tiles_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cracked_deepslate_tiles" - }, - "result": "absentbydesign:stairs_cracked_deepslate_tiles", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_cracked_nether_bricks.json b/src/main/resources/data/absentbydesign/recipes/stairs_cracked_nether_bricks.json deleted file mode 100644 index 5c8626e8..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_cracked_nether_bricks.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:cracked_nether_bricks" - } - }, - "result": { - "item": "absentbydesign:stairs_cracked_nether_bricks", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_cracked_nether_bricks_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_cracked_nether_bricks_sc.json deleted file mode 100644 index 01f874b5..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_cracked_nether_bricks_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cracked_nether_bricks" - }, - "result": "absentbydesign:stairs_cracked_nether_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_cracked_polished_blackstone_bricks.json b/src/main/resources/data/absentbydesign/recipes/stairs_cracked_polished_blackstone_bricks.json deleted file mode 100644 index 7a26e5f2..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_cracked_polished_blackstone_bricks.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:cracked_polished_blackstone_bricks" - } - }, - "result": { - "item": "absentbydesign:stairs_cracked_polished_blackstone_bricks", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_cracked_polished_blackstone_bricks_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_cracked_polished_blackstone_bricks_sc.json deleted file mode 100644 index a28e1358..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_cracked_polished_blackstone_bricks_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cracked_polished_blackstone_bricks" - }, - "result": "absentbydesign:stairs_cracked_polished_blackstone_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_crying_obsidian.json b/src/main/resources/data/absentbydesign/recipes/stairs_crying_obsidian.json deleted file mode 100644 index dfdfaa65..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_crying_obsidian.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:crying_obsidian" - } - }, - "result": { - "item": "absentbydesign:stairs_crying_obsidian", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_crying_obsidian_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_crying_obsidian_sc.json deleted file mode 100644 index 149c0036..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_crying_obsidian_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:crying_obsidian" - }, - "result": "absentbydesign:stairs_crying_obsidian", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_deepslate.json b/src/main/resources/data/absentbydesign/recipes/stairs_deepslate.json deleted file mode 100644 index 0c891f3e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_deepslate.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:deepslate" - } - }, - "result": { - "item": "absentbydesign:stairs_deepslate", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_deepslate_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_deepslate_sc.json deleted file mode 100644 index 38852a28..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_deepslate_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:deepslate" - }, - "result": "absentbydesign:stairs_deepslate", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_diamond_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_diamond_sc.json deleted file mode 100644 index ebdc663c..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_diamond_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:diamond_block" - }, - "result": "absentbydesign:stairs_diamond", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_dripstone.json b/src/main/resources/data/absentbydesign/recipes/stairs_dripstone.json deleted file mode 100644 index f7e46082..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_dripstone.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:dripstone_block" - } - }, - "result": { - "item": "absentbydesign:stairs_dripstone", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_dripstone_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_dripstone_sc.json deleted file mode 100644 index e6c8e926..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_dripstone_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:dripstone_block" - }, - "result": "absentbydesign:stairs_dripstone", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_emerald_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_emerald_sc.json deleted file mode 100644 index f1a3738e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_emerald_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:emerald_block" - }, - "result": "absentbydesign:stairs_emerald", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_end_stone.json b/src/main/resources/data/absentbydesign/recipes/stairs_end_stone.json deleted file mode 100644 index 2ab2a272..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_end_stone.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:end_stone" - } - }, - "result": { - "item": "absentbydesign:stairs_end_stone", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_end_stone_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_end_stone_sc.json deleted file mode 100644 index 541c459d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_end_stone_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:end_stone" - }, - "result": "absentbydesign:stairs_end_stone", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_gilded_blackstone.json b/src/main/resources/data/absentbydesign/recipes/stairs_gilded_blackstone.json deleted file mode 100644 index c9ceca24..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_gilded_blackstone.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:gilded_blackstone" - } - }, - "result": { - "item": "absentbydesign:stairs_gilded_blackstone", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_gilded_blackstone_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_gilded_blackstone_sc.json deleted file mode 100644 index 94a4fcc0..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_gilded_blackstone_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:gilded_blackstone" - }, - "result": "absentbydesign:stairs_gilded_blackstone", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass.json deleted file mode 100644 index 35d3f9d6..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:glass" - } - }, - "result": { - "item": "absentbydesign:stairs_glass", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_black.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_black.json deleted file mode 100644 index 29759ac8..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_black.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:black_stained_glass" - } - }, - "result": { - "item": "absentbydesign:stairs_glass_black", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_black_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_black_sc.json deleted file mode 100644 index 87525957..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_black_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:black_stained_glass" - }, - "result": "absentbydesign:stairs_glass_black", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_blue.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_blue.json deleted file mode 100644 index e686736c..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_blue.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:blue_stained_glass" - } - }, - "result": { - "item": "absentbydesign:stairs_glass_blue", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_blue_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_blue_sc.json deleted file mode 100644 index 7a4a424f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_blue_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:blue_stained_glass" - }, - "result": "absentbydesign:stairs_glass_blue", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_brown.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_brown.json deleted file mode 100644 index d9e767b6..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_brown.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:brown_stained_glass" - } - }, - "result": { - "item": "absentbydesign:stairs_glass_brown", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_brown_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_brown_sc.json deleted file mode 100644 index 908ac3b3..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_brown_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:brown_stained_glass" - }, - "result": "absentbydesign:stairs_glass_brown", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_cyan.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_cyan.json deleted file mode 100644 index 96abb405..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_cyan.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:cyan_stained_glass" - } - }, - "result": { - "item": "absentbydesign:stairs_glass_cyan", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_cyan_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_cyan_sc.json deleted file mode 100644 index 95a7bd87..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_cyan_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cyan_stained_glass" - }, - "result": "absentbydesign:stairs_glass_cyan", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_gray.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_gray.json deleted file mode 100644 index fc579e7e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_gray.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:gray_stained_glass" - } - }, - "result": { - "item": "absentbydesign:stairs_glass_gray", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_gray_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_gray_sc.json deleted file mode 100644 index df2e5065..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_gray_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:gray_stained_glass" - }, - "result": "absentbydesign:stairs_glass_gray", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_green.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_green.json deleted file mode 100644 index e93945ac..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_green.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:green_stained_glass" - } - }, - "result": { - "item": "absentbydesign:stairs_glass_green", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_green_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_green_sc.json deleted file mode 100644 index fa7a52c3..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_green_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:green_stained_glass" - }, - "result": "absentbydesign:stairs_glass_green", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_light_blue.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_light_blue.json deleted file mode 100644 index c40eeaab..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_light_blue.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:light_blue_stained_glass" - } - }, - "result": { - "item": "absentbydesign:stairs_glass_light_blue", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_light_blue_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_light_blue_sc.json deleted file mode 100644 index 1596f558..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_light_blue_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:light_blue_stained_glass" - }, - "result": "absentbydesign:stairs_glass_light_blue", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_light_gray.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_light_gray.json deleted file mode 100644 index 8be93955..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_light_gray.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:light_gray_stained_glass" - } - }, - "result": { - "item": "absentbydesign:stairs_glass_light_gray", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_light_gray_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_light_gray_sc.json deleted file mode 100644 index 5c2e0a60..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_light_gray_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:light_gray_stained_glass" - }, - "result": "absentbydesign:stairs_glass_light_gray", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_lime.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_lime.json deleted file mode 100644 index c064cbb2..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_lime.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:lime_stained_glass" - } - }, - "result": { - "item": "absentbydesign:stairs_glass_lime", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_lime_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_lime_sc.json deleted file mode 100644 index 0a1b6120..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_lime_sc.json +++ /dev/null @@ -1,8 +0,0 @@ - { - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:lime_stained_glass" - }, - "result": "absentbydesign:stairs_glass_lime", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_magenta.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_magenta.json deleted file mode 100644 index 68f29ac9..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_magenta.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:magenta_stained_glass" - } - }, - "result": { - "item": "absentbydesign:stairs_glass_magenta", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_magenta_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_magenta_sc.json deleted file mode 100644 index 50ec0532..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_magenta_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:magenta_stained_glass" - }, - "result": "absentbydesign:stairs_glass_magenta", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_orange.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_orange.json deleted file mode 100644 index dab2350f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_orange.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:orange_stained_glass" - } - }, - "result": { - "item": "absentbydesign:stairs_glass_orange", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_orange_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_orange_sc.json deleted file mode 100644 index 97014f64..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_orange_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:orange_stained_glass" - }, - "result": "absentbydesign:stairs_glass_orange", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_pink.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_pink.json deleted file mode 100644 index fd75e54c..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_pink.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:pink_stained_glass" - } - }, - "result": { - "item": "absentbydesign:stairs_glass_pink", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_pink_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_pink_sc.json deleted file mode 100644 index 8a011252..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_pink_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:pink_stained_glass" - }, - "result": "absentbydesign:stairs_glass_pink", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_purple.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_purple.json deleted file mode 100644 index e13dd693..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_purple.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:purple_stained_glass" - } - }, - "result": { - "item": "absentbydesign:stairs_glass_purple", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_purple_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_purple_sc.json deleted file mode 100644 index 77b242a6..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_purple_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:purple_stained_glass" - }, - "result": "absentbydesign:stairs_glass_purple", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_red.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_red.json deleted file mode 100644 index b9335c43..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_red.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:red_stained_glass" - } - }, - "result": { - "item": "absentbydesign:stairs_glass_red", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_red_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_red_sc.json deleted file mode 100644 index 37f847e6..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_red_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:red_stained_glass" - }, - "result": "absentbydesign:stairs_glass_red", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_sc.json deleted file mode 100644 index dc6732b4..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:glass" - }, - "result": "absentbydesign:stairs_glass", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_white.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_white.json deleted file mode 100644 index 1777d5bf..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_white.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:white_stained_glass" - } - }, - "result": { - "item": "absentbydesign:stairs_glass_white", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_white_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_white_sc.json deleted file mode 100644 index b2eada6a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_white_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:white_stained_glass" - }, - "result": "absentbydesign:stairs_glass_white", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_yellow.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_yellow.json deleted file mode 100644 index 04c8d9e3..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_yellow.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:yellow_stained_glass" - } - }, - "result": { - "item": "absentbydesign:stairs_glass_yellow", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glass_yellow_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_glass_yellow_sc.json deleted file mode 100644 index b6ab2c3c..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glass_yellow_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:yellow_stained_glass" - }, - "result": "absentbydesign:stairs_glass_yellow", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glowstone.json b/src/main/resources/data/absentbydesign/recipes/stairs_glowstone.json deleted file mode 100644 index c36b3f9c..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glowstone.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:glowstone" - } - }, - "result": { - "item": "absentbydesign:stairs_glowstone", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_glowstone_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_glowstone_sc.json deleted file mode 100644 index 58e5142e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_glowstone_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:glowstone" - }, - "result": "absentbydesign:stairs_glowstone", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_gold_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_gold_sc.json deleted file mode 100644 index 4403ebf6..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_gold_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:gold_block" - }, - "result": "absentbydesign:stairs_gold", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_honeycomb.json b/src/main/resources/data/absentbydesign/recipes/stairs_honeycomb.json deleted file mode 100644 index 752a5001..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_honeycomb.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:honeycomb_block" - } - }, - "result": { - "item": "absentbydesign:stairs_honeycomb", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_honeycomb_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_honeycomb_sc.json deleted file mode 100644 index 58dee204..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_honeycomb_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:honeycomb_block" - }, - "result": "absentbydesign:stairs_honeycomb", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_iron_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_iron_sc.json deleted file mode 100644 index 3604d718..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_iron_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:iron_block" - }, - "result": "absentbydesign:stairs_iron", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_lapis_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_lapis_sc.json deleted file mode 100644 index 48614b09..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_lapis_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:lapis_block" - }, - "result": "absentbydesign:stairs_lapis", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_lodestone.json b/src/main/resources/data/absentbydesign/recipes/stairs_lodestone.json deleted file mode 100644 index 983e0ce2..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_lodestone.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:lodestone" - } - }, - "result": { - "item": "absentbydesign:stairs_lodestone", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_lodestone_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_lodestone_sc.json deleted file mode 100644 index c94550e1..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_lodestone_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:lodestone" - }, - "result": "absentbydesign:stairs_lodestone", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_magma_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_magma_sc.json deleted file mode 100644 index 37e295dc..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_magma_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:magma_block" - }, - "result": "absentbydesign:stairs_magma", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_moss_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_moss_sc.json deleted file mode 100644 index 7c7462c1..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_moss_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:moss_block" - }, - "result": "absentbydesign:stairs_moss", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_mud_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_mud_sc.json deleted file mode 100644 index 1d18fd20..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_mud_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:mud" - }, - "result": "absentbydesign:stairs_mud", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_muddy_mangrove_roots.json b/src/main/resources/data/absentbydesign/recipes/stairs_muddy_mangrove_roots.json deleted file mode 100644 index 7d6cae45..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_muddy_mangrove_roots.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:muddy_mangrove_roots" - } - }, - "result": { - "item": "absentbydesign:stairs_muddy_mangrove_roots", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_muddy_mangrove_roots_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_muddy_mangrove_roots_sc.json deleted file mode 100644 index 34deea9c..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_muddy_mangrove_roots_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:muddy_mangrove_roots" - }, - "result": "absentbydesign:stairs_muddy_mangrove_roots", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_mushroom_polished.json b/src/main/resources/data/absentbydesign/recipes/stairs_mushroom_polished.json deleted file mode 100644 index 94601423..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_mushroom_polished.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "#" - ], - "key": { - "#": { - "item": "absentbydesign:stairs_mushroom_stem" - } - }, - "result": { - "item": "absentbydesign:stairs_mushroom_polished", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_mushroom_polished_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_mushroom_polished_sc.json deleted file mode 100644 index 922680d6..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_mushroom_polished_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "absentbydesign:stairs_mushroom_stem" - }, - "result": "absentbydesign:stairs_mushroom_polished", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_mushroom_stem.json b/src/main/resources/data/absentbydesign/recipes/stairs_mushroom_stem.json deleted file mode 100644 index af0342ce..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_mushroom_stem.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:mushroom_stem" - } - }, - "result": { - "item": "absentbydesign:stairs_mushroom_stem", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_mushroom_stem_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_mushroom_stem_sc.json deleted file mode 100644 index cc29e6b5..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_mushroom_stem_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:mushroom_stem" - }, - "result": "absentbydesign:stairs_mushroom_stem", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_netherite.json b/src/main/resources/data/absentbydesign/recipes/stairs_netherite.json deleted file mode 100644 index 8abfad5e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_netherite.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:netherite_block" - } - }, - "result": { - "item": "absentbydesign:stairs_netherite", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_netherite_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_netherite_sc.json deleted file mode 100644 index 5dd2d96b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_netherite_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:netherite_block" - }, - "result": "absentbydesign:stairs_netherite", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_netherrack.json b/src/main/resources/data/absentbydesign/recipes/stairs_netherrack.json deleted file mode 100644 index 4a7bfa30..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_netherrack.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:netherrack" - } - }, - "result": { - "item": "absentbydesign:stairs_netherrack", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_netherrack_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_netherrack_sc.json deleted file mode 100644 index f3a6d5ee..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_netherrack_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:netherrack" - }, - "result": "absentbydesign:stairs_netherrack", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_obsidian.json b/src/main/resources/data/absentbydesign/recipes/stairs_obsidian.json deleted file mode 100644 index 57da3ddd..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_obsidian.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:obsidian" - } - }, - "result": { - "item": "absentbydesign:stairs_obsidian", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_obsidian_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_obsidian_sc.json deleted file mode 100644 index 91db3f5e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_obsidian_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:obsidian" - }, - "result": "absentbydesign:stairs_obsidian", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_ochre_froglight.json b/src/main/resources/data/absentbydesign/recipes/stairs_ochre_froglight.json deleted file mode 100644 index 6976f9ea..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_ochre_froglight.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:ochre_froglight" - } - }, - "result": { - "item": "absentbydesign:stairs_ochre_froglight", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_ochre_froglight_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_ochre_froglight_sc.json deleted file mode 100644 index 42943dfc..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_ochre_froglight_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:ochre_froglight" - }, - "result": "absentbydesign:stairs_ochre_froglight", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_packed_ice.json b/src/main/resources/data/absentbydesign/recipes/stairs_packed_ice.json deleted file mode 100644 index 0878cb03..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_packed_ice.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:packed_ice" - } - }, - "result": { - "item": "absentbydesign:stairs_packed_ice", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_packed_ice_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_packed_ice_sc.json deleted file mode 100644 index 30ee87b9..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_packed_ice_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:packed_ice" - }, - "result": "absentbydesign:stairs_packed_ice", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_packed_mud.json b/src/main/resources/data/absentbydesign/recipes/stairs_packed_mud.json deleted file mode 100644 index 86738990..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_packed_mud.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:packed_mud" - } - }, - "result": { - "item": "absentbydesign:stairs_packed_mud", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_packed_mud_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_packed_mud_sc.json deleted file mode 100644 index a4a6420e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_packed_mud_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:packed_mud" - }, - "result": "absentbydesign:stairs_packed_mud", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_pearlescent_froglight.json b/src/main/resources/data/absentbydesign/recipes/stairs_pearlescent_froglight.json deleted file mode 100644 index 388dd76b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_pearlescent_froglight.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:pearlescent_froglight" - } - }, - "result": { - "item": "absentbydesign:stairs_pearlescent_froglight", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_pearlescent_froglight_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_pearlescent_froglight_sc.json deleted file mode 100644 index a62b7fde..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_pearlescent_froglight_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:pearlescent_froglight" - }, - "result": "absentbydesign:stairs_pearlescent_froglight", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_polished_basalt.json b/src/main/resources/data/absentbydesign/recipes/stairs_polished_basalt.json deleted file mode 100644 index 552cc043..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_polished_basalt.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:polished_basalt" - } - }, - "result": { - "item": "absentbydesign:stairs_polished_basalt", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_polished_basalt_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_polished_basalt_sc.json deleted file mode 100644 index 067518f9..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_polished_basalt_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:polished_basalt" - }, - "result": "absentbydesign:stairs_polished_basalt", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_quartz_bricks.json b/src/main/resources/data/absentbydesign/recipes/stairs_quartz_bricks.json deleted file mode 100644 index 46d460c6..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_quartz_bricks.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:quartz_bricks" - } - }, - "result": { - "item": "absentbydesign:stairs_quartz_bricks", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_quartz_bricks_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_quartz_bricks_sc.json deleted file mode 100644 index 5167a265..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_quartz_bricks_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:quartz_bricks" - }, - "result": "absentbydesign:stairs_quartz_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_raw_copper.json b/src/main/resources/data/absentbydesign/recipes/stairs_raw_copper.json deleted file mode 100644 index aac06b46..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_raw_copper.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:raw_copper_block" - } - }, - "result": { - "item": "absentbydesign:stairs_raw_copper", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_raw_copper_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_raw_copper_sc.json deleted file mode 100644 index 06726a5a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_raw_copper_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:raw_copper_block" - }, - "result": "absentbydesign:stairs_raw_copper", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_raw_gold.json b/src/main/resources/data/absentbydesign/recipes/stairs_raw_gold.json deleted file mode 100644 index 3aa01f3d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_raw_gold.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:raw_gold_block" - } - }, - "result": { - "item": "absentbydesign:stairs_raw_gold", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_raw_gold_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_raw_gold_sc.json deleted file mode 100644 index 57376734..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_raw_gold_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:raw_gold_block" - }, - "result": "absentbydesign:stairs_raw_gold", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_raw_iron.json b/src/main/resources/data/absentbydesign/recipes/stairs_raw_iron.json deleted file mode 100644 index 2e1a81b1..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_raw_iron.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:raw_iron_block" - } - }, - "result": { - "item": "absentbydesign:stairs_raw_iron", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_raw_iron_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_raw_iron_sc.json deleted file mode 100644 index a59cd101..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_raw_iron_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:raw_iron_block" - }, - "result": "absentbydesign:stairs_raw_iron", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_red_mushroom.json b/src/main/resources/data/absentbydesign/recipes/stairs_red_mushroom.json deleted file mode 100644 index b449b1d7..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_red_mushroom.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:red_mushroom_block" - } - }, - "result": { - "item": "absentbydesign:stairs_red_mushroom", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_red_mushroom_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_red_mushroom_sc.json deleted file mode 100644 index 77062416..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_red_mushroom_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:red_mushroom_block" - }, - "result": "absentbydesign:stairs_red_mushroom", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_reinforced_deepslate.json b/src/main/resources/data/absentbydesign/recipes/stairs_reinforced_deepslate.json deleted file mode 100644 index 7fa57e47..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_reinforced_deepslate.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:reinforced_deepslate" - } - }, - "result": { - "item": "absentbydesign:stairs_reinforced_deepslate", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_reinforced_deepslate_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_reinforced_deepslate_sc.json deleted file mode 100644 index 3a27da44..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_reinforced_deepslate_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:reinforced_deepslate" - }, - "result": "absentbydesign:stairs_reinforced_deepslate", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_rooted_dirt.json b/src/main/resources/data/absentbydesign/recipes/stairs_rooted_dirt.json deleted file mode 100644 index b9f215aa..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_rooted_dirt.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:rooted_dirt" - } - }, - "result": { - "item": "absentbydesign:stairs_rooted_dirt", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_rooted_dirt_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_rooted_dirt_sc.json deleted file mode 100644 index fcba06b3..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_rooted_dirt_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:rooted_dirt" - }, - "result": "absentbydesign:stairs_rooted_dirt", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_sculk.json b/src/main/resources/data/absentbydesign/recipes/stairs_sculk.json deleted file mode 100644 index 0b4f1f87..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_sculk.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:sculk" - } - }, - "result": { - "item": "absentbydesign:stairs_sculk", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_sculk_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_sculk_sc.json deleted file mode 100644 index be9bfdd0..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_sculk_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:sculk" - }, - "result": "absentbydesign:stairs_sculk", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_sea_lantern.json b/src/main/resources/data/absentbydesign/recipes/stairs_sea_lantern.json deleted file mode 100644 index 5e5d6509..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_sea_lantern.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:sea_lantern" - } - }, - "result": { - "item": "absentbydesign:stairs_sea_lantern", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_sea_lantern_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_sea_lantern_sc.json deleted file mode 100644 index 4c9798d8..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_sea_lantern_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:sea_lantern" - }, - "result": "absentbydesign:stairs_sea_lantern", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_shroomlight.json b/src/main/resources/data/absentbydesign/recipes/stairs_shroomlight.json deleted file mode 100644 index 12648d64..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_shroomlight.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:shroomlight" - } - }, - "result": { - "item": "absentbydesign:stairs_shroomlight", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_shroomlight_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_shroomlight_sc.json deleted file mode 100644 index 274bd95a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_shroomlight_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:shroomlight" - }, - "result": "absentbydesign:stairs_shroomlight", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_smooth_basalt.json b/src/main/resources/data/absentbydesign/recipes/stairs_smooth_basalt.json deleted file mode 100644 index 9594cf81..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_smooth_basalt.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:smooth_basalt" - } - }, - "result": { - "item": "absentbydesign:stairs_smooth_basalt", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_smooth_basalt_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_smooth_basalt_sc.json deleted file mode 100644 index ad845566..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_smooth_basalt_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:smooth_basalt" - }, - "result": "absentbydesign:stairs_smooth_basalt", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_smooth_stone.json b/src/main/resources/data/absentbydesign/recipes/stairs_smooth_stone.json deleted file mode 100644 index a89d0cd6..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_smooth_stone.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:smooth_stone" - } - }, - "result": { - "item": "absentbydesign:stairs_smooth_stone", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_smooth_stone_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_smooth_stone_sc.json deleted file mode 100644 index 245b1058..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_smooth_stone_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:smooth_stone" - }, - "result": "absentbydesign:stairs_smooth_stone", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_snow_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_snow_sc.json deleted file mode 100644 index c344074a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_snow_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:snow_block" - }, - "result": "absentbydesign:stairs_snow", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_soul_sand.json b/src/main/resources/data/absentbydesign/recipes/stairs_soul_sand.json deleted file mode 100644 index 6d3886cf..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_soul_sand.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:soul_sand" - } - }, - "result": { - "item": "absentbydesign:stairs_soul_sand", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_soul_sand_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_soul_sand_sc.json deleted file mode 100644 index deef9b00..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_soul_sand_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:soul_sand" - }, - "result": "absentbydesign:stairs_soul_sand", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_soul_soil.json b/src/main/resources/data/absentbydesign/recipes/stairs_soul_soil.json deleted file mode 100644 index 57fd3aec..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_soul_soil.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:soul_soil" - } - }, - "result": { - "item": "absentbydesign:stairs_soul_soil", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_soul_soil_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_soul_soil_sc.json deleted file mode 100644 index 71e4eb5e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_soul_soil_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:soul_soil" - }, - "result": "absentbydesign:stairs_soul_soil", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta.json deleted file mode 100644 index 83348663..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:terracotta" - } - }, - "result": { - "item": "absentbydesign:stairs_terracotta", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_black.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_black.json deleted file mode 100644 index 43b7138e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_black.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:black_terracotta" - } - }, - "result": { - "item": "absentbydesign:stairs_terracotta_black", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_black_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_black_sc.json deleted file mode 100644 index 88ae433c..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_black_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:black_terracotta" - }, - "result": "absentbydesign:stairs_terracotta_black", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_blue.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_blue.json deleted file mode 100644 index 51dc5d5e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_blue.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:blue_terracotta" - } - }, - "result": { - "item": "absentbydesign:stairs_terracotta_blue", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_blue_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_blue_sc.json deleted file mode 100644 index 0b6e4d4e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_blue_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:yellow_terracotta" - }, - "result": "absentbydesign:stairs_terracotta_yellow", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_brown.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_brown.json deleted file mode 100644 index d0309e4d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_brown.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:brown_terracotta" - } - }, - "result": { - "item": "absentbydesign:stairs_terracotta_brown", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_brown_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_brown_sc.json deleted file mode 100644 index d5813b87..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_brown_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:brown_terracotta" - }, - "result": "absentbydesign:stairs_terracotta_brown", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_cyan.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_cyan.json deleted file mode 100644 index 44539acd..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_cyan.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:cyan_terracotta" - } - }, - "result": { - "item": "absentbydesign:stairs_terracotta_cyan", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_cyan_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_cyan_sc.json deleted file mode 100644 index 8e731d79..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_cyan_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cyan_terracotta" - }, - "result": "absentbydesign:stairs_terracotta_cyan", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_gray.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_gray.json deleted file mode 100644 index e929dc03..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_gray.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:gray_terracotta" - } - }, - "result": { - "item": "absentbydesign:stairs_terracotta_gray", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_gray_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_gray_sc.json deleted file mode 100644 index c93f90e6..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_gray_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:gray_terracotta" - }, - "result": "absentbydesign:stairs_terracotta_gray", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_green.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_green.json deleted file mode 100644 index eb02c30f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_green.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:green_terracotta" - } - }, - "result": { - "item": "absentbydesign:stairs_terracotta_green", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_green_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_green_sc.json deleted file mode 100644 index 464e0c4b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_green_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:green_terracotta" - }, - "result": "absentbydesign:stairs_terracotta_green", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_light_blue.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_light_blue.json deleted file mode 100644 index 04eb6bf5..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_light_blue.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:light_blue_terracotta" - } - }, - "result": { - "item": "absentbydesign:stairs_terracotta_light_blue", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_light_blue_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_light_blue_sc.json deleted file mode 100644 index efd132a7..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_light_blue_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:light_blue_terracotta" - }, - "result": "absentbydesign:stairs_terracotta_light_blue", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_light_gray.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_light_gray.json deleted file mode 100644 index d767d8d2..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_light_gray.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:light_gray_terracotta" - } - }, - "result": { - "item": "absentbydesign:stairs_terracotta_light_gray", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_light_gray_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_light_gray_sc.json deleted file mode 100644 index 0745c38a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_light_gray_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:light_gray_terracotta" - }, - "result": "absentbydesign:stairs_terracotta_light_gray", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_lime.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_lime.json deleted file mode 100644 index a3b231c9..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_lime.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:lime_terracotta" - } - }, - "result": { - "item": "absentbydesign:stairs_terracotta_lime", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_lime_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_lime_sc.json deleted file mode 100644 index dc4ff7ce..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_lime_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:lime_terracotta" - }, - "result": "absentbydesign:stairs_terracotta_lime", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_magenta.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_magenta.json deleted file mode 100644 index eaeb8012..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_magenta.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:magenta_terracotta" - } - }, - "result": { - "item": "absentbydesign:stairs_terracotta_magenta", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_magenta_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_magenta_sc.json deleted file mode 100644 index ec6f3940..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_magenta_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:magenta_terracotta" - }, - "result": "absentbydesign:stairs_terracotta_magenta", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_orange.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_orange.json deleted file mode 100644 index e7e5a0c1..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_orange.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:orange_terracotta" - } - }, - "result": { - "item": "absentbydesign:stairs_terracotta_orange", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_orange_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_orange_sc.json deleted file mode 100644 index 127b9d0e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_orange_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:orange_terracotta" - }, - "result": "absentbydesign:stairs_terracotta_orange", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_pink.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_pink.json deleted file mode 100644 index a18556bd..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_pink.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:pink_terracotta" - } - }, - "result": { - "item": "absentbydesign:stairs_terracotta_pink", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_pink_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_pink_sc.json deleted file mode 100644 index e8fd8b6e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_pink_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:pink_terracotta" - }, - "result": "absentbydesign:stairs_terracotta_pink", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_purple.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_purple.json deleted file mode 100644 index fd9963d5..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_purple.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:purple_terracotta" - } - }, - "result": { - "item": "absentbydesign:stairs_terracotta_purple", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_purple_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_purple_sc.json deleted file mode 100644 index a83ce3e3..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_purple_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:purple_terracotta" - }, - "result": "absentbydesign:stairs_terracotta_purple", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_red.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_red.json deleted file mode 100644 index e88fe96f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_red.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:red_terracotta" - } - }, - "result": { - "item": "absentbydesign:stairs_terracotta_red", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_red_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_red_sc.json deleted file mode 100644 index 0bba8b70..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_red_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:red_terracotta" - }, - "result": "absentbydesign:stairs_terracotta_red", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_sc.json deleted file mode 100644 index 179c4976..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:terracotta" - }, - "result": "absentbydesign:stairs_terracotta", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_white.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_white.json deleted file mode 100644 index 2f465386..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_white.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:white_terracotta" - } - }, - "result": { - "item": "absentbydesign:stairs_terracotta_white", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_white_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_white_sc.json deleted file mode 100644 index c441e497..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_white_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:white_terracotta" - }, - "result": "absentbydesign:stairs_terracotta_white", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_yellow.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_yellow.json deleted file mode 100644 index 0ce635cf..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_yellow.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:yellow_terracotta" - } - }, - "result": { - "item": "absentbydesign:stairs_terracotta_yellow", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_yellow_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_yellow_sc.json deleted file mode 100644 index 0b6e4d4e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_terracotta_yellow_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:yellow_terracotta" - }, - "result": "absentbydesign:stairs_terracotta_yellow", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_tuff_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_tuff_sc.json deleted file mode 100644 index 68afb144..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_tuff_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:tuff" - }, - "result": "absentbydesign:stairs_tuff", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_verdant_froglight.json b/src/main/resources/data/absentbydesign/recipes/stairs_verdant_froglight.json deleted file mode 100644 index a5ca6972..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_verdant_froglight.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:verdant_froglight" - } - }, - "result": { - "item": "absentbydesign:stairs_verdant_froglight", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_verdant_froglight_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_verdant_froglight_sc.json deleted file mode 100644 index 3dfad003..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_verdant_froglight_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:verdant_froglight" - }, - "result": "absentbydesign:stairs_verdant_froglight", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_black.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_black.json deleted file mode 100644 index cf28ca7e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_black.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:black_wool" - } - }, - "result": { - "item": "absentbydesign:stairs_wool_black", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_black_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_black_sc.json deleted file mode 100644 index 902fc0d2..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_black_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:black_wool" - }, - "result": "absentbydesign:stairs_wool_black", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_blue.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_blue.json deleted file mode 100644 index 8aa5ce08..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_blue.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:blue_wool" - } - }, - "result": { - "item": "absentbydesign:stairs_wool_blue", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_blue_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_blue_sc.json deleted file mode 100644 index 8b217a93..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_blue_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:blue_wool" - }, - "result": "absentbydesign:stairs_wool_blue", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_brown.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_brown.json deleted file mode 100644 index fb3fa188..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_brown.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:brown_wool" - } - }, - "result": { - "item": "absentbydesign:stairs_wool_brown", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_brown_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_brown_sc.json deleted file mode 100644 index 341e2f04..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_brown_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:brown_wool" - }, - "result": "absentbydesign:stairs_wool_brown", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_cyan.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_cyan.json deleted file mode 100644 index b0d8eda1..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_cyan.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:cyan_wool" - } - }, - "result": { - "item": "absentbydesign:stairs_wool_cyan", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_cyan_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_cyan_sc.json deleted file mode 100644 index 050b05bd..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_cyan_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cyan_wool" - }, - "result": "absentbydesign:stairs_wool_cyan", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_gray.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_gray.json deleted file mode 100644 index 2cdf1441..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_gray.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:gray_wool" - } - }, - "result": { - "item": "absentbydesign:stairs_wool_gray", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_gray_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_gray_sc.json deleted file mode 100644 index d2f463de..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_gray_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:gray_wool" - }, - "result": "absentbydesign:stairs_wool_gray", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_green.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_green.json deleted file mode 100644 index 40075a25..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_green.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:green_wool" - } - }, - "result": { - "item": "absentbydesign:stairs_wool_green", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_green_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_green_sc.json deleted file mode 100644 index e6f34a26..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_green_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:green_wool" - }, - "result": "absentbydesign:stairs_wool_green", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_light_blue.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_light_blue.json deleted file mode 100644 index fca0094a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_light_blue.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:light_blue_wool" - } - }, - "result": { - "item": "absentbydesign:stairs_wool_light_blue", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_light_blue_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_light_blue_sc.json deleted file mode 100644 index 679f98ec..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_light_blue_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:light_blue_wool" - }, - "result": "absentbydesign:stairs_wool_light_blue", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_lime.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_lime.json deleted file mode 100644 index 12057a64..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_lime.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:lime_wool" - } - }, - "result": { - "item": "absentbydesign:stairs_wool_lime", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_lime_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_lime_sc.json deleted file mode 100644 index 706ca8fe..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_lime_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:lime_wool" - }, - "result": "absentbydesign:stairs_wool_lime", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_magenta.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_magenta.json deleted file mode 100644 index f14314f5..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_magenta.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:magenta_wool" - } - }, - "result": { - "item": "absentbydesign:stairs_wool_magenta", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_magenta_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_magenta_sc.json deleted file mode 100644 index a3793ef3..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_magenta_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:magenta_wool" - }, - "result": "absentbydesign:stairs_wool_magenta", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_orange.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_orange.json deleted file mode 100644 index c41ace04..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_orange.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:orange_wool" - } - }, - "result": { - "item": "absentbydesign:stairs_wool_orange", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_orange_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_orange_sc.json deleted file mode 100644 index 3cec7d32..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_orange_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:orange_wool" - }, - "result": "absentbydesign:stairs_wool_orange", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_pink.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_pink.json deleted file mode 100644 index c359042e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_pink.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:pink_wool" - } - }, - "result": { - "item": "absentbydesign:stairs_wool_pink", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_pink_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_pink_sc.json deleted file mode 100644 index b3c2fda5..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_pink_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:pink_wool" - }, - "result": "absentbydesign:stairs_wool_pink", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_purple.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_purple.json deleted file mode 100644 index 8c33e633..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_purple.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:purple_wool" - } - }, - "result": { - "item": "absentbydesign:stairs_wool_purple", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_purple_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_purple_sc.json deleted file mode 100644 index 6093f3c4..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_purple_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:purple_wool" - }, - "result": "absentbydesign:stairs_wool_purple", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_red.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_red.json deleted file mode 100644 index 72435bba..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_red.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:red_wool" - } - }, - "result": { - "item": "absentbydesign:stairs_wool_red", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_red_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_red_sc.json deleted file mode 100644 index 2b0a7d67..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_red_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:red_wool" - }, - "result": "absentbydesign:stairs_wool_red", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_silver.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_silver.json deleted file mode 100644 index 740ede89..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_silver.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:light_gray_wool" - } - }, - "result": { - "item": "absentbydesign:stairs_wool_silver", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_silver_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_silver_sc.json deleted file mode 100644 index 147682a5..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_silver_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:light_gray_wool" - }, - "result": "absentbydesign:stairs_wool_silver", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_white.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_white.json deleted file mode 100644 index 3fd0f90e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_white.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:white_wool" - } - }, - "result": { - "item": "absentbydesign:stairs_wool_white", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_white_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_white_sc.json deleted file mode 100644 index 38b330e8..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_white_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:white_wool" - }, - "result": "absentbydesign:stairs_wool_white", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_yellow.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_yellow.json deleted file mode 100644 index 15007827..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_yellow.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:yellow_wool" - } - }, - "result": { - "item": "absentbydesign:stairs_wool_yellow", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stairs_wool_yellow_sc.json b/src/main/resources/data/absentbydesign/recipes/stairs_wool_yellow_sc.json deleted file mode 100644 index 3713dfe3..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stairs_wool_yellow_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:yellow_wool" - }, - "result": "absentbydesign:stairs_wool_yellow", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/stripped_acacia_wood.json b/src/main/resources/data/absentbydesign/recipes/stripped_acacia_wood.json deleted file mode 100644 index 9699f6d7..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stripped_acacia_wood.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "#", - "#" - ], - "key": { - "#": { - "item": "minecraft:stripped_acacia_log" - } - }, - "result": { - "item": "minecraft:stripped_acacia_wood", - "count": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stripped_birch_wood.json b/src/main/resources/data/absentbydesign/recipes/stripped_birch_wood.json deleted file mode 100644 index b3fcc24b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stripped_birch_wood.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "#", - "#" - ], - "key": { - "#": { - "item": "minecraft:stripped_birch_log" - } - }, - "result": { - "item": "minecraft:stripped_birch_wood", - "count": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stripped_dark_oak_wood.json b/src/main/resources/data/absentbydesign/recipes/stripped_dark_oak_wood.json deleted file mode 100644 index cf4e3064..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stripped_dark_oak_wood.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "#", - "#" - ], - "key": { - "#": { - "item": "minecraft:stripped_dark_oak_log" - } - }, - "result": { - "item": "minecraft:stripped_dark_oak_wood", - "count": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stripped_jungle_wood.json b/src/main/resources/data/absentbydesign/recipes/stripped_jungle_wood.json deleted file mode 100644 index de152954..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stripped_jungle_wood.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "#", - "#" - ], - "key": { - "#": { - "item": "minecraft:stripped_jungle_log" - } - }, - "result": { - "item": "minecraft:stripped_jungle_wood", - "count": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stripped_oak_wood.json b/src/main/resources/data/absentbydesign/recipes/stripped_oak_wood.json deleted file mode 100644 index 95e83ce9..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stripped_oak_wood.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "#", - "#" - ], - "key": { - "#": { - "item": "minecraft:stripped_oak_log" - } - }, - "result": { - "item": "minecraft:stripped_oak_wood", - "count": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/stripped_spruce_wood.json b/src/main/resources/data/absentbydesign/recipes/stripped_spruce_wood.json deleted file mode 100644 index 030965cb..00000000 --- a/src/main/resources/data/absentbydesign/recipes/stripped_spruce_wood.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "#", - "#" - ], - "key": { - "#": { - "item": "minecraft:stripped_spruce_log" - } - }, - "result": { - "item": "minecraft:stripped_spruce_wood", - "count": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/trapdoor_amethyst.json b/src/main/resources/data/absentbydesign/recipes/trapdoor_amethyst.json deleted file mode 100644 index f4804de0..00000000 --- a/src/main/resources/data/absentbydesign/recipes/trapdoor_amethyst.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "minecraft:amethyst_shard" - } - }, - "result": { - "item": "absentbydesign:trapdoor_amethyst", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/trapdoor_andesite.json b/src/main/resources/data/absentbydesign/recipes/trapdoor_andesite.json deleted file mode 100644 index f1450607..00000000 --- a/src/main/resources/data/absentbydesign/recipes/trapdoor_andesite.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:andesite" - } - }, - "result": { - "item": "absentbydesign:trapdoor_andesite", - "count": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/trapdoor_basalt.json b/src/main/resources/data/absentbydesign/recipes/trapdoor_basalt.json deleted file mode 100644 index 416c8245..00000000 --- a/src/main/resources/data/absentbydesign/recipes/trapdoor_basalt.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:basalt" - } - }, - "result": { - "item": "absentbydesign:trapdoor_basalt", - "count": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/trapdoor_blackstone.json b/src/main/resources/data/absentbydesign/recipes/trapdoor_blackstone.json deleted file mode 100644 index c0186a95..00000000 --- a/src/main/resources/data/absentbydesign/recipes/trapdoor_blackstone.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:blackstone" - } - }, - "result": { - "item": "absentbydesign:trapdoor_blackstone", - "count": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/trapdoor_blackstone_bricks.json b/src/main/resources/data/absentbydesign/recipes/trapdoor_blackstone_bricks.json deleted file mode 100644 index 23a94963..00000000 --- a/src/main/resources/data/absentbydesign/recipes/trapdoor_blackstone_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:polished_blackstone_bricks" - } - }, - "result": { - "item": "absentbydesign:trapdoor_blackstone_bricks", - "count": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/trapdoor_bricks.json b/src/main/resources/data/absentbydesign/recipes/trapdoor_bricks.json deleted file mode 100644 index 26643a55..00000000 --- a/src/main/resources/data/absentbydesign/recipes/trapdoor_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:bricks" - } - }, - "result": { - "item": "absentbydesign:trapdoor_bricks", - "count": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/trapdoor_crying_obsidian.json b/src/main/resources/data/absentbydesign/recipes/trapdoor_crying_obsidian.json deleted file mode 100644 index 725f48ee..00000000 --- a/src/main/resources/data/absentbydesign/recipes/trapdoor_crying_obsidian.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "minecraft:crying_obsidian" - } - }, - "result": { - "item": "absentbydesign:trapdoor_crying_obsidian", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/trapdoor_diamond.json b/src/main/resources/data/absentbydesign/recipes/trapdoor_diamond.json deleted file mode 100644 index f8e8e1a3..00000000 --- a/src/main/resources/data/absentbydesign/recipes/trapdoor_diamond.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "minecraft:diamond" - } - }, - "result": { - "item": "absentbydesign:trapdoor_diamond", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/trapdoor_diorite.json b/src/main/resources/data/absentbydesign/recipes/trapdoor_diorite.json deleted file mode 100644 index 4e2c4ed4..00000000 --- a/src/main/resources/data/absentbydesign/recipes/trapdoor_diorite.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:diorite" - } - }, - "result": { - "item": "absentbydesign:trapdoor_diorite", - "count": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/trapdoor_emerald.json b/src/main/resources/data/absentbydesign/recipes/trapdoor_emerald.json deleted file mode 100644 index 8c9391aa..00000000 --- a/src/main/resources/data/absentbydesign/recipes/trapdoor_emerald.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "minecraft:emerald" - } - }, - "result": { - "item": "absentbydesign:trapdoor_emerald", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/trapdoor_end_stone.json b/src/main/resources/data/absentbydesign/recipes/trapdoor_end_stone.json deleted file mode 100644 index 16e81c52..00000000 --- a/src/main/resources/data/absentbydesign/recipes/trapdoor_end_stone.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:end_stone" - } - }, - "result": { - "item": "absentbydesign:trapdoor_end_stone", - "count": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/trapdoor_gold.json b/src/main/resources/data/absentbydesign/recipes/trapdoor_gold.json deleted file mode 100644 index 75ed30d0..00000000 --- a/src/main/resources/data/absentbydesign/recipes/trapdoor_gold.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "minecraft:gold_ingot" - } - }, - "result": { - "item": "absentbydesign:trapdoor_gold", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/trapdoor_granite.json b/src/main/resources/data/absentbydesign/recipes/trapdoor_granite.json deleted file mode 100644 index 419a4dfd..00000000 --- a/src/main/resources/data/absentbydesign/recipes/trapdoor_granite.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:granite" - } - }, - "result": { - "item": "absentbydesign:trapdoor_granite", - "count": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/trapdoor_lapis.json b/src/main/resources/data/absentbydesign/recipes/trapdoor_lapis.json deleted file mode 100644 index 53d5f2d2..00000000 --- a/src/main/resources/data/absentbydesign/recipes/trapdoor_lapis.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "minecraft:lapis_lazuli" - } - }, - "result": { - "item": "absentbydesign:trapdoor_lapis", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/trapdoor_mud_bricks.json b/src/main/resources/data/absentbydesign/recipes/trapdoor_mud_bricks.json deleted file mode 100644 index 8fce7501..00000000 --- a/src/main/resources/data/absentbydesign/recipes/trapdoor_mud_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "minecraft:mud_bricks" - } - }, - "result": { - "item": "absentbydesign:trapdoor_mud_bricks", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/trapdoor_obsidian.json b/src/main/resources/data/absentbydesign/recipes/trapdoor_obsidian.json deleted file mode 100644 index d3c4e9c8..00000000 --- a/src/main/resources/data/absentbydesign/recipes/trapdoor_obsidian.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "minecraft:obsidian" - } - }, - "result": { - "item": "absentbydesign:trapdoor_obsidian", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/trapdoor_purpur.json b/src/main/resources/data/absentbydesign/recipes/trapdoor_purpur.json deleted file mode 100644 index d3c2053b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/trapdoor_purpur.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:purpur_block" - } - }, - "result": { - "item": "absentbydesign:trapdoor_purpur", - "count": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/trapdoor_quartz.json b/src/main/resources/data/absentbydesign/recipes/trapdoor_quartz.json deleted file mode 100644 index b9c72488..00000000 --- a/src/main/resources/data/absentbydesign/recipes/trapdoor_quartz.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:quartz_block" - } - }, - "result": { - "item": "absentbydesign:trapdoor_quartz", - "count": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/trapdoor_quartz_bricks.json b/src/main/resources/data/absentbydesign/recipes/trapdoor_quartz_bricks.json deleted file mode 100644 index 13e9015e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/trapdoor_quartz_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:quartz_bricks" - } - }, - "result": { - "item": "absentbydesign:trapdoor_quartz_bricks", - "count": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/trapdoor_stone.json b/src/main/resources/data/absentbydesign/recipes/trapdoor_stone.json deleted file mode 100644 index 4df2aee0..00000000 --- a/src/main/resources/data/absentbydesign/recipes/trapdoor_stone.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:stone" - } - }, - "result": { - "item": "absentbydesign:trapdoor_stone", - "count": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/trapdoor_stone_bricks.json b/src/main/resources/data/absentbydesign/recipes/trapdoor_stone_bricks.json deleted file mode 100644 index dcec9c26..00000000 --- a/src/main/resources/data/absentbydesign/recipes/trapdoor_stone_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:stone_bricks" - } - }, - "result": { - "item": "absentbydesign:trapdoor_stone_bricks", - "count": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_acacia_log.json b/src/main/resources/data/absentbydesign/recipes/wall_acacia_log.json deleted file mode 100644 index 369f96ba..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_acacia_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:acacia_wood" - } - }, - "result": { - "item": "absentbydesign:wall_acacia_log", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_acacia_log_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_acacia_log_sc.json deleted file mode 100644 index db191045..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_acacia_log_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:acacia_wood" - }, - "result": "absentbydesign:wall_acacia_log", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_acacia_planks.json b/src/main/resources/data/absentbydesign/recipes/wall_acacia_planks.json deleted file mode 100644 index d80661ec..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_acacia_planks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:acacia_planks" - } - }, - "result": { - "item": "absentbydesign:wall_acacia_planks", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_acacia_planks_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_acacia_planks_sc.json deleted file mode 100644 index 68c647d9..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_acacia_planks_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:acacia_planks" - }, - "result": "absentbydesign:wall_acacia_planks", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_amethyst.json b/src/main/resources/data/absentbydesign/recipes/wall_amethyst.json deleted file mode 100644 index e66aa6ef..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_amethyst.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:amethyst_block" - } - }, - "result": { - "item": "absentbydesign:wall_amethyst", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_amethyst_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_amethyst_sc.json deleted file mode 100644 index 72d9235a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_amethyst_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:amethyst_block" - }, - "result": "absentbydesign:wall_amethyst", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_andesite_smooth.json b/src/main/resources/data/absentbydesign/recipes/wall_andesite_smooth.json deleted file mode 100644 index 800bfccc..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_andesite_smooth.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:polished_andesite" - } - }, - "result": { - "item": "absentbydesign:wall_andesite_smooth", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_andesite_smooth_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_andesite_smooth_sc.json deleted file mode 100644 index 67968508..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_andesite_smooth_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:polished_andesite" - }, - "result": "absentbydesign:wall_andesite_smooth", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_bamboo_mosaic.json b/src/main/resources/data/absentbydesign/recipes/wall_bamboo_mosaic.json deleted file mode 100644 index 88aa533f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_bamboo_mosaic.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:bamboo_mosaic" - } - }, - "result": { - "item": "absentbydesign:wall_bamboo_mosaic", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_bamboo_mosaic_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_bamboo_mosaic_sc.json deleted file mode 100644 index 738b8a76..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_bamboo_mosaic_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:bamboo_mosaic" - }, - "result": "absentbydesign:wall_bamboo_mosaic", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_bamboo_planks.json b/src/main/resources/data/absentbydesign/recipes/wall_bamboo_planks.json deleted file mode 100644 index 385b79b5..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_bamboo_planks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:bamboo_planks" - } - }, - "result": { - "item": "absentbydesign:wall_bamboo_planks", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_bamboo_planks_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_bamboo_planks_sc.json deleted file mode 100644 index e439b4e2..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_bamboo_planks_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:bamboo_planks" - }, - "result": "absentbydesign:wall_bamboo_planks", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_basalt.json b/src/main/resources/data/absentbydesign/recipes/wall_basalt.json deleted file mode 100644 index 9c02b9ca..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_basalt.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:basalt" - } - }, - "result": { - "item": "absentbydesign:wall_basalt", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_basalt_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_basalt_sc.json deleted file mode 100644 index 54405c10..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_basalt_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:basalt" - }, - "result": "absentbydesign:wall_basalt", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_birch_log.json b/src/main/resources/data/absentbydesign/recipes/wall_birch_log.json deleted file mode 100644 index a16db61f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_birch_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:birch_wood" - } - }, - "result": { - "item": "absentbydesign:wall_birch_log", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_birch_log_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_birch_log_sc.json deleted file mode 100644 index d98e8643..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_birch_log_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:birch_wood" - }, - "result": "absentbydesign:wall_birch_log", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_birch_planks.json b/src/main/resources/data/absentbydesign/recipes/wall_birch_planks.json deleted file mode 100644 index 847c0fc7..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_birch_planks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:birch_planks" - } - }, - "result": { - "item": "absentbydesign:wall_birch_planks", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_birch_planks_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_birch_planks_sc.json deleted file mode 100644 index 156a7d7f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_birch_planks_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:birch_planks" - }, - "result": "absentbydesign:wall_birch_planks", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_blue_ice.json b/src/main/resources/data/absentbydesign/recipes/wall_blue_ice.json deleted file mode 100644 index cf5a39f0..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_blue_ice.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:blue_ice" - } - }, - "result": { - "item": "absentbydesign:wall_blue_ice", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_blue_ice_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_blue_ice_sc.json deleted file mode 100644 index c779ae14..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_blue_ice_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:blue_ice" - }, - "result": "absentbydesign:wall_blue_ice", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_bone_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_bone_sc.json deleted file mode 100644 index 4619c149..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_bone_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:bone_block" - }, - "result": "absentbydesign:wall_bone", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_brown_mushroom.json b/src/main/resources/data/absentbydesign/recipes/wall_brown_mushroom.json deleted file mode 100644 index a8fc1f1d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_brown_mushroom.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:brown_mushroom_block" - } - }, - "result": { - "item": "absentbydesign:wall_brown_mushroom", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_brown_mushroom_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_brown_mushroom_sc.json deleted file mode 100644 index 43277bc9..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_brown_mushroom_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:brown_mushroom_block" - }, - "result": "absentbydesign:wall_brown_mushroom", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_calcite.json b/src/main/resources/data/absentbydesign/recipes/wall_calcite.json deleted file mode 100644 index 4d7d4fa9..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_calcite.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:calcite" - } - }, - "result": { - "item": "absentbydesign:wall_calcite", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_calcite_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_calcite_sc.json deleted file mode 100644 index 643c8c63..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_calcite_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:calcite" - }, - "result": "absentbydesign:wall_calcite", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_cherry_log.json b/src/main/resources/data/absentbydesign/recipes/wall_cherry_log.json deleted file mode 100644 index 6c5c2564..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_cherry_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:cherry_wood" - } - }, - "result": { - "item": "absentbydesign:wall_cherry_log", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_cherry_log_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_cherry_log_sc.json deleted file mode 100644 index e17e196d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_cherry_log_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cherry_wood" - }, - "result": "absentbydesign:wall_cherry_log", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_cherry_planks.json b/src/main/resources/data/absentbydesign/recipes/wall_cherry_planks.json deleted file mode 100644 index 39237a0e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_cherry_planks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:cherry_planks" - } - }, - "result": { - "item": "absentbydesign:wall_cherry_planks", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_cherry_planks_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_cherry_planks_sc.json deleted file mode 100644 index 50d5bcf5..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_cherry_planks_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cherry_planks" - }, - "result": "absentbydesign:wall_cherry_planks", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_cherry_stripped_log.json b/src/main/resources/data/absentbydesign/recipes/wall_cherry_stripped_log.json deleted file mode 100644 index 8f0cf9d8..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_cherry_stripped_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:stripped_cherry_log" - } - }, - "result": { - "item": "absentbydesign:wall_cherry_stripped_log", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_cherry_stripped_log_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_cherry_stripped_log_sc.json deleted file mode 100644 index bfaa838d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_cherry_stripped_log_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:stripped_cherry_log" - }, - "result": "absentbydesign:wall_cherry_stripped_log", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_coarse_dirt.json b/src/main/resources/data/absentbydesign/recipes/wall_coarse_dirt.json deleted file mode 100644 index 02656802..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_coarse_dirt.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:coarse_dirt" - } - }, - "result": { - "item": "absentbydesign:wall_coarse_dirt", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_coarse_dirt_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_coarse_dirt_sc.json deleted file mode 100644 index bf22aefc..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_coarse_dirt_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:coarse_dirt" - }, - "result": "absentbydesign:wall_coarse_dirt", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_black.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_black.json deleted file mode 100644 index 78a3c91d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_black.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:black_concrete" - } - }, - "result": { - "item": "absentbydesign:wall_concrete_black", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_black_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_black_sc.json deleted file mode 100644 index e44fa4ac..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_black_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:black_concrete" - }, - "result": "absentbydesign:wall_concrete_black", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_blue.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_blue.json deleted file mode 100644 index 63f06851..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_blue.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:blue_concrete" - } - }, - "result": { - "item": "absentbydesign:wall_concrete_blue", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_blue_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_blue_sc.json deleted file mode 100644 index 7cf3fee9..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_blue_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:blue_concrete" - }, - "result": "absentbydesign:wall_concrete_blue", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_brown.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_brown.json deleted file mode 100644 index 83e8b89d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_brown.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:brown_concrete" - } - }, - "result": { - "item": "absentbydesign:wall_concrete_brown", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_brown_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_brown_sc.json deleted file mode 100644 index b10e7844..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_brown_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:brown_concrete" - }, - "result": "absentbydesign:wall_concrete_brown", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_cyan.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_cyan.json deleted file mode 100644 index f3c24ee0..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_cyan.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:cyan_concrete" - } - }, - "result": { - "item": "absentbydesign:wall_concrete_cyan", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_cyan_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_cyan_sc.json deleted file mode 100644 index 8937dad9..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_cyan_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cyan_concrete" - }, - "result": "absentbydesign:wall_concrete_cyan", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_gray.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_gray.json deleted file mode 100644 index 33799f4e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_gray.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:gray_concrete" - } - }, - "result": { - "item": "absentbydesign:wall_concrete_gray", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_gray_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_gray_sc.json deleted file mode 100644 index 07cf6fd4..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_gray_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:gray_concrete" - }, - "result": "absentbydesign:wall_concrete_gray", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_green.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_green.json deleted file mode 100644 index 99b93a5c..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_green.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:gray_concrete" - } - }, - "result": { - "item": "absentbydesign:wall_concrete_green", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_green_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_green_sc.json deleted file mode 100644 index 532dc7c9..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_green_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:green_concrete" - }, - "result": "absentbydesign:wall_concrete_green", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_light_blue.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_light_blue.json deleted file mode 100644 index f6d64359..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_light_blue.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:light_blue_concrete" - } - }, - "result": { - "item": "absentbydesign:wall_concrete_light_blue", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_light_blue_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_light_blue_sc.json deleted file mode 100644 index d72453da..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_light_blue_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:light_blue_concrete" - }, - "result": "absentbydesign:wall_concrete_light_blue", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_light_gray.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_light_gray.json deleted file mode 100644 index 15ef71e0..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_light_gray.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:light_gray_concrete" - } - }, - "result": { - "item": "absentbydesign:wall_concrete_light_gray", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_light_gray_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_light_gray_sc.json deleted file mode 100644 index c9aedf98..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_light_gray_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:light_gray_concrete" - }, - "result": "absentbydesign:wall_concrete_light_gray", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_lime.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_lime.json deleted file mode 100644 index bdb8a3c2..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_lime.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:lime_concrete" - } - }, - "result": { - "item": "absentbydesign:wall_concrete_lime", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_lime_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_lime_sc.json deleted file mode 100644 index cc04672a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_lime_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:lime_concrete" - }, - "result": "absentbydesign:wall_concrete_lime", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_magenta.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_magenta.json deleted file mode 100644 index e2a20749..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_magenta.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "magenta_concrete" - } - }, - "result": { - "item": "absentbydesign:wall_concrete_magenta", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_magenta_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_magenta_sc.json deleted file mode 100644 index 6dbe099d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_magenta_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:magenta_concrete" - }, - "result": "absentbydesign:wall_concrete_magenta", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_orange.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_orange.json deleted file mode 100644 index a8bdee3b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_orange.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:orange_concrete" - } - }, - "result": { - "item": "absentbydesign:wall_concrete_orange", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_orange_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_orange_sc.json deleted file mode 100644 index 037c7d3e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_orange_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:orange_concrete" - }, - "result": "absentbydesign:wall_concrete_orange", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_pink.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_pink.json deleted file mode 100644 index 82d2aeeb..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_pink.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:pink_concrete" - } - }, - "result": { - "item": "absentbydesign:wall_concrete_pink", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_pink_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_pink_sc.json deleted file mode 100644 index e1368c45..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_pink_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:pink_concrete" - }, - "result": "absentbydesign:wall_concrete_pink", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_purple.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_purple.json deleted file mode 100644 index d9aa25ae..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_purple.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:purple_concrete" - } - }, - "result": { - "item": "absentbydesign:wall_concrete_purple", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_purple_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_purple_sc.json deleted file mode 100644 index aa7ba4f5..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_purple_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:purple_concrete" - }, - "result": "absentbydesign:wall_concrete_purple", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_red.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_red.json deleted file mode 100644 index 2ae94e04..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_red.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:red_concrete" - } - }, - "result": { - "item": "absentbydesign:wall_concrete_red", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_red_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_red_sc.json deleted file mode 100644 index 99ace759..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_red_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:red_concrete" - }, - "result": "absentbydesign:wall_concrete_red", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_white.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_white.json deleted file mode 100644 index 263dfc70..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_white.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:white_concrete" - } - }, - "result": { - "item": "absentbydesign:wall_concrete_white", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_white_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_white_sc.json deleted file mode 100644 index 8a659369..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_white_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:white_concrete" - }, - "result": "absentbydesign:wall_concrete_white", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_yellow.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_yellow.json deleted file mode 100644 index 37751377..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_yellow.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:yellow_concrete" - } - }, - "result": { - "item": "absentbydesign:wall_concrete_yellow", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_concrete_yellow_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_concrete_yellow_sc.json deleted file mode 100644 index 9af2dded..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_concrete_yellow_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:yellow_concrete" - }, - "result": "absentbydesign:wall_concrete_yellow", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_cracked_deepslate_bricks.json b/src/main/resources/data/absentbydesign/recipes/wall_cracked_deepslate_bricks.json deleted file mode 100644 index 4b2ed1a1..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_cracked_deepslate_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:cracked_deepslate_bricks" - } - }, - "result": { - "item": "absentbydesign:wall_cracked_deepslate_bricks", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_cracked_deepslate_bricks_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_cracked_deepslate_bricks_sc.json deleted file mode 100644 index 8f85ac17..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_cracked_deepslate_bricks_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cracked_deepslate_bricks" - }, - "result": "absentbydesign:wall_cracked_deepslate_bricks", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_cracked_deepslate_tiles.json b/src/main/resources/data/absentbydesign/recipes/wall_cracked_deepslate_tiles.json deleted file mode 100644 index 3aa025b0..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_cracked_deepslate_tiles.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:cracked_deepslate_tiles" - } - }, - "result": { - "item": "absentbydesign:wall_cracked_deepslate_tiles", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_cracked_deepslate_tiles_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_cracked_deepslate_tiles_sc.json deleted file mode 100644 index 492971fd..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_cracked_deepslate_tiles_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cracked_deepslate_tiles" - }, - "result": "absentbydesign:wall_cracked_deepslate_tiles", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_cracked_nether_bricks.json b/src/main/resources/data/absentbydesign/recipes/wall_cracked_nether_bricks.json deleted file mode 100644 index 3ccffb4f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_cracked_nether_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:cracked_nether_bricks" - } - }, - "result": { - "item": "absentbydesign:wall_cracked_nether_bricks", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_cracked_nether_bricks_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_cracked_nether_bricks_sc.json deleted file mode 100644 index 478b18f1..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_cracked_nether_bricks_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cracked_nether_bricks" - }, - "result": "absentbydesign:wall_cracked_nether_bricks", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_cracked_polished_blackstone_bricks.json b/src/main/resources/data/absentbydesign/recipes/wall_cracked_polished_blackstone_bricks.json deleted file mode 100644 index cc23bdd0..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_cracked_polished_blackstone_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:cracked_polished_blackstone_bricks" - } - }, - "result": { - "item": "absentbydesign:wall_cracked_polished_blackstone_bricks", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_cracked_polished_blackstone_bricks_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_cracked_polished_blackstone_bricks_sc.json deleted file mode 100644 index 150ceb92..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_cracked_polished_blackstone_bricks_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cracked_polished_blackstone_bricks" - }, - "result": "absentbydesign:wall_cracked_polished_blackstone_bricks", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_crimson.json b/src/main/resources/data/absentbydesign/recipes/wall_crimson.json deleted file mode 100644 index f2b6ef20..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_crimson.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:crimson_hyphae" - } - }, - "result": { - "item": "absentbydesign:wall_crimson", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_crimson_planks.json b/src/main/resources/data/absentbydesign/recipes/wall_crimson_planks.json deleted file mode 100644 index 5b32c468..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_crimson_planks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:crimson_planks" - } - }, - "result": { - "item": "absentbydesign:wall_crimson_planks", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_crimson_planks_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_crimson_planks_sc.json deleted file mode 100644 index 11681253..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_crimson_planks_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:crimson_planks" - }, - "result": "absentbydesign:wall_crimson_planks", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_crimson_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_crimson_sc.json deleted file mode 100644 index 8b7ac881..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_crimson_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:crimson_hyphae" - }, - "result": "absentbydesign:wall_crimson", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_crying_obsidian.json b/src/main/resources/data/absentbydesign/recipes/wall_crying_obsidian.json deleted file mode 100644 index 5b043371..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_crying_obsidian.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:crying_obsidian" - } - }, - "result": { - "item": "absentbydesign:wall_crying_obsidian", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_crying_obsidian_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_crying_obsidian_sc.json deleted file mode 100644 index f5d1d0a2..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_crying_obsidian_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:crying_obsidian" - }, - "result": "absentbydesign:wall_crying_obsidian", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_dark_oak_log.json b/src/main/resources/data/absentbydesign/recipes/wall_dark_oak_log.json deleted file mode 100644 index 97240e0d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_dark_oak_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:dark_oak_wood" - } - }, - "result": { - "item": "absentbydesign:wall_dark_oak_log", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_dark_oak_log_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_dark_oak_log_sc.json deleted file mode 100644 index 08c45609..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_dark_oak_log_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:dark_oak_wood" - }, - "result": "absentbydesign:wall_dark_oak_log", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_dark_oak_planks.json b/src/main/resources/data/absentbydesign/recipes/wall_dark_oak_planks.json deleted file mode 100644 index 79e9707a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_dark_oak_planks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:dark_oak_planks" - } - }, - "result": { - "item": "absentbydesign:wall_dark_oak_planks", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_dark_oak_planks_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_dark_oak_planks_sc.json deleted file mode 100644 index 362c9929..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_dark_oak_planks_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:dark_oak_planks" - }, - "result": "absentbydesign:wall_dark_oak_planks", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_dark_prismarine.json b/src/main/resources/data/absentbydesign/recipes/wall_dark_prismarine.json deleted file mode 100644 index 5fa6417b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_dark_prismarine.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:dark_prismarine" - } - }, - "result": { - "item": "absentbydesign:wall_dark_prismarine", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_dark_prismarine_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_dark_prismarine_sc.json deleted file mode 100644 index 44201c46..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_dark_prismarine_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:dark_prismarine" - }, - "result": "absentbydesign:wall_dark_prismarine", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_deepslate.json b/src/main/resources/data/absentbydesign/recipes/wall_deepslate.json deleted file mode 100644 index ff6e5ab7..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_deepslate.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:deepslate" - } - }, - "result": { - "item": "absentbydesign:wall_deepslate", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_deepslate_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_deepslate_sc.json deleted file mode 100644 index 185bb78a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_deepslate_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:deepslate" - }, - "result": "absentbydesign:wall_deepslate", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_diamond.json b/src/main/resources/data/absentbydesign/recipes/wall_diamond.json deleted file mode 100644 index bf34ae4f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_diamond.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:diamond_block" - } - }, - "result": { - "item": "absentbydesign:wall_diamond", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_diamond_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_diamond_sc.json deleted file mode 100644 index 87825dbd..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_diamond_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:diamond_block" - }, - "result": "absentbydesign:wall_diamond", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_diorite_smooth.json b/src/main/resources/data/absentbydesign/recipes/wall_diorite_smooth.json deleted file mode 100644 index e23c1183..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_diorite_smooth.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:polished_diorite" - } - }, - "result": { - "item": "absentbydesign:wall_diorite_smooth", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_diorite_smooth_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_diorite_smooth_sc.json deleted file mode 100644 index b85002bd..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_diorite_smooth_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:polished_diorite" - }, - "result": "absentbydesign:wall_diorite_smooth", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_dripstone.json b/src/main/resources/data/absentbydesign/recipes/wall_dripstone.json deleted file mode 100644 index 76c9f861..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_dripstone.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:dripstone_block" - } - }, - "result": { - "item": "absentbydesign:wall_dripstone", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_dripstone_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_dripstone_sc.json deleted file mode 100644 index 4b6d7bda..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_dripstone_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:dripstone_block" - }, - "result": "absentbydesign:wall_dripstone", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_emerald.json b/src/main/resources/data/absentbydesign/recipes/wall_emerald.json deleted file mode 100644 index 4ec7bb02..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_emerald.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:emerald_block" - } - }, - "result": { - "item": "absentbydesign:wall_emerald", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_emerald_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_emerald_sc.json deleted file mode 100644 index 00421c9d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_emerald_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:emerald_block" - }, - "result": "absentbydesign:wall_emerald", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_end_stone.json b/src/main/resources/data/absentbydesign/recipes/wall_end_stone.json deleted file mode 100644 index 43239f2a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_end_stone.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:end_stone" - } - }, - "result": { - "item": "absentbydesign:wall_end_stone", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_end_stone_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_end_stone_sc.json deleted file mode 100644 index 5a49e2f2..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_end_stone_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:end_stone" - }, - "result": "absentbydesign:wall_end_stone", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_gilded_blackstone.json b/src/main/resources/data/absentbydesign/recipes/wall_gilded_blackstone.json deleted file mode 100644 index f70c5840..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_gilded_blackstone.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:gilded_blackstone" - } - }, - "result": { - "item": "absentbydesign:wall_gilded_blackstone", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_gilded_blackstone_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_gilded_blackstone_sc.json deleted file mode 100644 index c2135a40..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_gilded_blackstone_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:gilded_blackstone" - }, - "result": "absentbydesign:wall_gilded_blackstone", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass.json b/src/main/resources/data/absentbydesign/recipes/wall_glass.json deleted file mode 100644 index 1c286ec2..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:glass" - } - }, - "result": { - "item": "absentbydesign:wall_glass", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_black.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_black.json deleted file mode 100644 index dc721f7a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_black.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:black_stained_glass" - } - }, - "result": { - "item": "absentbydesign:wall_glass_black", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_black_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_black_sc.json deleted file mode 100644 index 7a3d48ad..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_black_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:black_stained_glass" - }, - "result": "absentbydesign:wall_glass_black", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_blue.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_blue.json deleted file mode 100644 index 736be178..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_blue.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:blue_stained_glass" - } - }, - "result": { - "item": "absentbydesign:wall_glass_blue", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_blue_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_blue_sc.json deleted file mode 100644 index e45d1ad2..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_blue_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:blue_stained_glass" - }, - "result": "absentbydesign:wall_glass_blue", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_brown.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_brown.json deleted file mode 100644 index 08e46749..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_brown.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:brown_stained_glass" - } - }, - "result": { - "item": "absentbydesign:wall_glass_brown", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_brown_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_brown_sc.json deleted file mode 100644 index e4fe0ce1..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_brown_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:brown_stained_glass" - }, - "result": "absentbydesign:wall_glass_brown", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_cyan.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_cyan.json deleted file mode 100644 index 80d7a070..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_cyan.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:cyan_stained_glass" - } - }, - "result": { - "item": "absentbydesign:wall_glass_cyan", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_cyan_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_cyan_sc.json deleted file mode 100644 index 5108f33a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_cyan_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cyan_stained_glass" - }, - "result": "absentbydesign:wall_glass_cyan", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_gray.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_gray.json deleted file mode 100644 index 8180b70e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_gray.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:gray_stained_glass" - } - }, - "result": { - "item": "absentbydesign:wall_glass_gray", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_gray_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_gray_sc.json deleted file mode 100644 index 15aeda87..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_gray_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:gray_stained_glass" - }, - "result": "absentbydesign:wall_glass_gray", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_green.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_green.json deleted file mode 100644 index 6ae37210..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_green.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:green_stained_glass" - } - }, - "result": { - "item": "absentbydesign:wall_glass_green", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_green_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_green_sc.json deleted file mode 100644 index 68a8f29c..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_green_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:green_stained_glass" - }, - "result": "absentbydesign:wall_glass_green", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_light_blue.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_light_blue.json deleted file mode 100644 index 753dbe38..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_light_blue.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:light_blue_stained_glass" - } - }, - "result": { - "item": "absentbydesign:wall_glass_light_blue", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_light_blue_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_light_blue_sc.json deleted file mode 100644 index 9f3c4b82..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_light_blue_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:light_blue_stained_glass" - }, - "result": "absentbydesign:wall_glass_light_blue", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_light_gray.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_light_gray.json deleted file mode 100644 index af66c539..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_light_gray.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:light_gray_stained_glass" - } - }, - "result": { - "item": "absentbydesign:wall_glass_light_gray", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_light_gray_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_light_gray_sc.json deleted file mode 100644 index 268ae87f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_light_gray_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:light_gray_stained_glass" - }, - "result": "absentbydesign:wall_glass_light_gray", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_lime.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_lime.json deleted file mode 100644 index 5e732506..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_lime.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:lime_stained_glass" - } - }, - "result": { - "item": "absentbydesign:wall_glass_lime", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_lime_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_lime_sc.json deleted file mode 100644 index d9b48112..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_lime_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:lime_stained_glass" - }, - "result": "absentbydesign:wall_glass_lime", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_magenta.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_magenta.json deleted file mode 100644 index aaadef96..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_magenta.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:magenta_stained_glass" - } - }, - "result": { - "item": "absentbydesign:wall_glass_magenta", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_magenta_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_magenta_sc.json deleted file mode 100644 index e2636bf8..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_magenta_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:magenta_stained_glass" - }, - "result": "absentbydesign:wall_glass_magenta", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_orange.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_orange.json deleted file mode 100644 index acfc1a60..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_orange.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:orange_stained_glass" - } - }, - "result": { - "item": "absentbydesign:wall_glass_orange", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_orange_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_orange_sc.json deleted file mode 100644 index 6f96b614..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_orange_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:orange_stained_glass" - }, - "result": "absentbydesign:wall_glass_orange", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_pink.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_pink.json deleted file mode 100644 index 968ac442..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_pink.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:pink_stained_glass" - } - }, - "result": { - "item": "absentbydesign:wall_glass_pink", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_pink_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_pink_sc.json deleted file mode 100644 index 82274ebc..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_pink_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:pink_stained_glass" - }, - "result": "absentbydesign:wall_glass_pink", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_purple.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_purple.json deleted file mode 100644 index 04587d07..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_purple.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:purple_stained_glass" - } - }, - "result": { - "item": "absentbydesign:wall_glass_purple", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_purple_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_purple_sc.json deleted file mode 100644 index 685e83c0..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_purple_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:purple_stained_glass" - }, - "result": "absentbydesign:wall_glass_purple", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_red.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_red.json deleted file mode 100644 index 8de8b236..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_red.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:red_stained_glass" - } - }, - "result": { - "item": "absentbydesign:wall_glass_red", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_red_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_red_sc.json deleted file mode 100644 index 2da7c7de..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_red_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:red_stained_glass" - }, - "result": "absentbydesign:wall_glass_red", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_sc.json deleted file mode 100644 index 7930fb61..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:glass" - }, - "result": "absentbydesign:wall_glass", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_white.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_white.json deleted file mode 100644 index f6ee5590..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_white.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:white_stained_glass" - } - }, - "result": { - "item": "absentbydesign:wall_glass_white", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_white_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_white_sc.json deleted file mode 100644 index 535cdff9..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_white_sc.json +++ /dev/null @@ -1,8 +0,0 @@ - { - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:white_stained_glass" - }, - "result": "absentbydesign:wall_glass_white", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_yellow.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_yellow.json deleted file mode 100644 index 15bd68f4..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_yellow.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:yellow_stained_glass" - } - }, - "result": { - "item": "absentbydesign:wall_glass_yellow", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glass_yellow_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_glass_yellow_sc.json deleted file mode 100644 index d0cedf0f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glass_yellow_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:yellow_stained_glass" - }, - "result": "absentbydesign:wall_glass_yellow", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glowstone.json b/src/main/resources/data/absentbydesign/recipes/wall_glowstone.json deleted file mode 100644 index 75781339..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glowstone.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:glowstone" - } - }, - "result": { - "item": "absentbydesign:wall_glowstone", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_glowstone_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_glowstone_sc.json deleted file mode 100644 index d7a4d37e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_glowstone_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:glowstone" - }, - "result": "absentbydesign:wall_glowstone", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_gold_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_gold_sc.json deleted file mode 100644 index 77a03107..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_gold_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:gold_block" - }, - "result": "absentbydesign:wall_gold", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_granite_smooth.json b/src/main/resources/data/absentbydesign/recipes/wall_granite_smooth.json deleted file mode 100644 index 962552d0..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_granite_smooth.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:polished_granite" - } - }, - "result": { - "item": "absentbydesign:wall_granite_smooth", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_granite_smooth_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_granite_smooth_sc.json deleted file mode 100644 index 54706724..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_granite_smooth_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:polished_granite" - }, - "result": "absentbydesign:wall_granite_smooth", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_honeycomb.json b/src/main/resources/data/absentbydesign/recipes/wall_honeycomb.json deleted file mode 100644 index d3173be7..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_honeycomb.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:honeycomb" - } - }, - "result": { - "item": "absentbydesign:wall_honeycomb", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_honeycomb_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_honeycomb_sc.json deleted file mode 100644 index 416c2145..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_honeycomb_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:honeycomb" - }, - "result": "absentbydesign:wall_honeycomb", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_iron_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_iron_sc.json deleted file mode 100644 index 8a258a47..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_iron_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:iron_block" - }, - "result": "absentbydesign:wall_iron", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_jungle_log.json b/src/main/resources/data/absentbydesign/recipes/wall_jungle_log.json deleted file mode 100644 index 4dece707..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_jungle_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:jungle_wood" - } - }, - "result": { - "item": "absentbydesign:wall_jungle_log", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_jungle_log_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_jungle_log_sc.json deleted file mode 100644 index 5553545e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_jungle_log_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:jungle_wood" - }, - "result": "absentbydesign:wall_jungle_log", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_jungle_planks.json b/src/main/resources/data/absentbydesign/recipes/wall_jungle_planks.json deleted file mode 100644 index 46ec2761..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_jungle_planks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:jungle_planks" - } - }, - "result": { - "item": "absentbydesign:wall_jungle_planks", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_jungle_planks_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_jungle_planks_sc.json deleted file mode 100644 index 302346c4..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_jungle_planks_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:jungle_planks" - }, - "result": "absentbydesign:wall_jungle_planks", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_lapis_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_lapis_sc.json deleted file mode 100644 index 112b66ec..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_lapis_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:lapis_block" - }, - "result": "absentbydesign:wall_lapis", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_lodestone.json b/src/main/resources/data/absentbydesign/recipes/wall_lodestone.json deleted file mode 100644 index 7c4475de..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_lodestone.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:lodestone" - } - }, - "result": { - "item": "absentbydesign:wall_lodestone", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_lodestone_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_lodestone_sc.json deleted file mode 100644 index 27209286..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_lodestone_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:lodestone" - }, - "result": "absentbydesign:wall_lodestone", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_magma_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_magma_sc.json deleted file mode 100644 index d58c416b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_magma_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:magma_block" - }, - "result": "absentbydesign:wall_magma", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_mangrove_log.json b/src/main/resources/data/absentbydesign/recipes/wall_mangrove_log.json deleted file mode 100644 index 4c456a03..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_mangrove_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:mangrove_log" - } - }, - "result": { - "item": "absentbydesign:wall_mangrove_log", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_mangrove_log_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_mangrove_log_sc.json deleted file mode 100644 index f16863d4..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_mangrove_log_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:mangrove_log" - }, - "result": "absentbydesign:wall_mangrove_log", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_mangrove_planks.json b/src/main/resources/data/absentbydesign/recipes/wall_mangrove_planks.json deleted file mode 100644 index 68c4fe79..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_mangrove_planks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:mangrove_planks" - } - }, - "result": { - "item": "absentbydesign:wall_mangrove_planks", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_mangrove_planks_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_mangrove_planks_sc.json deleted file mode 100644 index b6e08262..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_mangrove_planks_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:mangrove_planks" - }, - "result": "absentbydesign:wall_mangrove_planks", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_moss_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_moss_sc.json deleted file mode 100644 index f6ca97a1..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_moss_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:moss_block" - }, - "result": "absentbydesign:wall_moss", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_mud.json b/src/main/resources/data/absentbydesign/recipes/wall_mud.json deleted file mode 100644 index 7b0271ab..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_mud.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:mud" - } - }, - "result": { - "item": "absentbydesign:wall_mud", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_mud_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_mud_sc.json deleted file mode 100644 index d6688786..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_mud_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:mud" - }, - "result": "absentbydesign:wall_mud", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_muddy_mangrove_roots.json b/src/main/resources/data/absentbydesign/recipes/wall_muddy_mangrove_roots.json deleted file mode 100644 index 6a005245..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_muddy_mangrove_roots.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:muddy_mangrove_roots" - } - }, - "result": { - "item": "absentbydesign:wall_muddy_mangrove_roots", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_muddy_mangrove_roots_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_muddy_mangrove_roots_sc.json deleted file mode 100644 index 4ce9b938..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_muddy_mangrove_roots_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:muddy_mangrove_roots" - }, - "result": "absentbydesign:wall_muddy_mangrove_roots", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_mushroom_polished.json b/src/main/resources/data/absentbydesign/recipes/wall_mushroom_polished.json deleted file mode 100644 index bb764604..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_mushroom_polished.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "#" - ], - "key": { - "#": { - "item": "absentbydesign:wall_mushroom_stem" - } - }, - "result": { - "item": "absentbydesign:wall_mushroom_polished", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_mushroom_polished_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_mushroom_polished_sc.json deleted file mode 100644 index 00598878..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_mushroom_polished_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "absentbydesign:wall_mushroom_stem" - }, - "result": "absentbydesign:wall_mushroom_polished", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_mushroom_stem.json b/src/main/resources/data/absentbydesign/recipes/wall_mushroom_stem.json deleted file mode 100644 index 5df3c686..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_mushroom_stem.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:mushroom_stem" - } - }, - "result": { - "item": "absentbydesign:wall_mushroom_stem", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_mushroom_stem_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_mushroom_stem_sc.json deleted file mode 100644 index 86b79d67..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_mushroom_stem_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:mushroom_stem" - }, - "result": "absentbydesign:wall_mushroom_stem", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_netherite.json b/src/main/resources/data/absentbydesign/recipes/wall_netherite.json deleted file mode 100644 index fcd8a44b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_netherite.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:netherite_block" - } - }, - "result": { - "item": "absentbydesign:wall_netherite", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_netherite_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_netherite_sc.json deleted file mode 100644 index ab5e6799..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_netherite_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:netherite_block" - }, - "result": "absentbydesign:wall_netherite", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_netherrack.json b/src/main/resources/data/absentbydesign/recipes/wall_netherrack.json deleted file mode 100644 index b691c076..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_netherrack.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:netherrack" - } - }, - "result": { - "item": "absentbydesign:wall_netherrack", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_netherrack_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_netherrack_sc.json deleted file mode 100644 index e81e4764..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_netherrack_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:netherrack" - }, - "result": "absentbydesign:wall_netherrack", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_oak_log.json b/src/main/resources/data/absentbydesign/recipes/wall_oak_log.json deleted file mode 100644 index 5d3aa598..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_oak_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:oak_wood" - } - }, - "result": { - "item": "absentbydesign:wall_oak_log", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_oak_log_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_oak_log_sc.json deleted file mode 100644 index ee4807f7..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_oak_log_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:oak_wood" - }, - "result": "absentbydesign:wall_oak_log", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_oak_planks.json b/src/main/resources/data/absentbydesign/recipes/wall_oak_planks.json deleted file mode 100644 index b1ac8360..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_oak_planks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:oak_planks" - } - }, - "result": { - "item": "absentbydesign:wall_oak_planks", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_oak_planks_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_oak_planks_sc.json deleted file mode 100644 index 4cbb5c01..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_oak_planks_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:oak_planks" - }, - "result": "absentbydesign:wall_oak_planks", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_obsidian.json b/src/main/resources/data/absentbydesign/recipes/wall_obsidian.json deleted file mode 100644 index 013dea44..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_obsidian.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:obsidian" - } - }, - "result": { - "item": "absentbydesign:wall_obsidian", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_obsidian_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_obsidian_sc.json deleted file mode 100644 index af09147e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_obsidian_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:obsidian" - }, - "result": "absentbydesign:wall_obsidian", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_ochre_froglight.json b/src/main/resources/data/absentbydesign/recipes/wall_ochre_froglight.json deleted file mode 100644 index 20fb4a47..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_ochre_froglight.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:ochre_froglight" - } - }, - "result": { - "item": "absentbydesign:wall_ochre_froglight", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_ochre_froglight_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_ochre_froglight_sc.json deleted file mode 100644 index 2c5a1d8f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_ochre_froglight_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:ochre_froglight" - }, - "result": "absentbydesign:wall_ochre_froglight", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_packed_ice.json b/src/main/resources/data/absentbydesign/recipes/wall_packed_ice.json deleted file mode 100644 index 0ced4453..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_packed_ice.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:packed_ice" - } - }, - "result": { - "item": "absentbydesign:wall_packed_ice", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_packed_ice_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_packed_ice_sc.json deleted file mode 100644 index 0788d0ce..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_packed_ice_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:packed_ice" - }, - "result": "absentbydesign:wall_packed_ice", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_packed_mud.json b/src/main/resources/data/absentbydesign/recipes/wall_packed_mud.json deleted file mode 100644 index cc942ad0..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_packed_mud.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:packed_mud" - } - }, - "result": { - "item": "absentbydesign:wall_packed_mud", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_packed_mud_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_packed_mud_sc.json deleted file mode 100644 index 0f0e7f19..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_packed_mud_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:packed_mud" - }, - "result": "absentbydesign:wall_packed_mud", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_pearlescent_froglight.json b/src/main/resources/data/absentbydesign/recipes/wall_pearlescent_froglight.json deleted file mode 100644 index 902fd40f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_pearlescent_froglight.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:pearlescent_froglight" - } - }, - "result": { - "item": "absentbydesign:wall_pearlescent_froglight", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_pearlescent_froglight_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_pearlescent_froglight_sc.json deleted file mode 100644 index 10c72fac..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_pearlescent_froglight_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:pearlescent_froglight" - }, - "result": "absentbydesign:wall_pearlescent_froglight", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_polished_basalt.json b/src/main/resources/data/absentbydesign/recipes/wall_polished_basalt.json deleted file mode 100644 index f93db06a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_polished_basalt.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:polished_basalt" - } - }, - "result": { - "item": "absentbydesign:wall_polished_basalt", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_polished_basalt_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_polished_basalt_sc.json deleted file mode 100644 index 146e059b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_polished_basalt_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:polished_basalt" - }, - "result": "absentbydesign:wall_polished_basalt", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_prismarine_bricks.json b/src/main/resources/data/absentbydesign/recipes/wall_prismarine_bricks.json deleted file mode 100644 index ee6e8508..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_prismarine_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:prismarine_bricks" - } - }, - "result": { - "item": "absentbydesign:wall_prismarine_bricks", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_prismarine_bricks_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_prismarine_bricks_sc.json deleted file mode 100644 index 8f13f703..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_prismarine_bricks_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:prismarine_bricks" - }, - "result": "absentbydesign:wall_prismarine_bricks", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_purpur.json b/src/main/resources/data/absentbydesign/recipes/wall_purpur.json deleted file mode 100644 index 0d1d5925..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_purpur.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:purpur_block" - } - }, - "result": { - "item": "absentbydesign:wall_purpur", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_purpur_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_purpur_sc.json deleted file mode 100644 index 015f9b4d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_purpur_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:purpur_block" - }, - "result": "absentbydesign:wall_purpur", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_quartz.json b/src/main/resources/data/absentbydesign/recipes/wall_quartz.json deleted file mode 100644 index e8be1d44..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_quartz.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:quartz_block" - } - }, - "result": { - "item": "absentbydesign:wall_quartz", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_quartz_bricks.json b/src/main/resources/data/absentbydesign/recipes/wall_quartz_bricks.json deleted file mode 100644 index bf5acb98..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_quartz_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:quartz_bricks" - } - }, - "result": { - "item": "absentbydesign:wall_quartz_bricks", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_quartz_bricks_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_quartz_bricks_sc.json deleted file mode 100644 index 2517ecf5..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_quartz_bricks_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:quartz_bricks" - }, - "result": "absentbydesign:wall_quartz_bricks", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_quartz_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_quartz_sc.json deleted file mode 100644 index 56617a4e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_quartz_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:quartz_block" - }, - "result": "absentbydesign:wall_quartz", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_raw_copper.json b/src/main/resources/data/absentbydesign/recipes/wall_raw_copper.json deleted file mode 100644 index a78a1193..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_raw_copper.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:raw_copper_block" - } - }, - "result": { - "item": "absentbydesign:wall_raw_copper", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_raw_copper_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_raw_copper_sc.json deleted file mode 100644 index 1e5f150b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_raw_copper_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:raw_copper_block" - }, - "result": "absentbydesign:wall_raw_copper", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_raw_gold.json b/src/main/resources/data/absentbydesign/recipes/wall_raw_gold.json deleted file mode 100644 index e62c31a2..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_raw_gold.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:raw_gold_block" - } - }, - "result": { - "item": "absentbydesign:wall_raw_gold", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_raw_gold_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_raw_gold_sc.json deleted file mode 100644 index ec133e28..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_raw_gold_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:raw_gold_block" - }, - "result": "absentbydesign:wall_raw_gold", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_raw_iron.json b/src/main/resources/data/absentbydesign/recipes/wall_raw_iron.json deleted file mode 100644 index 3230db58..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_raw_iron.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:raw_iron_block" - } - }, - "result": { - "item": "absentbydesign:wall_raw_iron", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_raw_iron_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_raw_iron_sc.json deleted file mode 100644 index b03b038a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_raw_iron_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:raw_iron_block" - }, - "result": "absentbydesign:wall_raw_iron", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_red_mushroom.json b/src/main/resources/data/absentbydesign/recipes/wall_red_mushroom.json deleted file mode 100644 index b812550e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_red_mushroom.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:red_mushroom_block" - } - }, - "result": { - "item": "absentbydesign:wall_red_mushroom", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_red_mushroom_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_red_mushroom_sc.json deleted file mode 100644 index 20830301..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_red_mushroom_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:red_mushroom_block" - }, - "result": "absentbydesign:wall_red_mushroom", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_reinforced_deepslate.json b/src/main/resources/data/absentbydesign/recipes/wall_reinforced_deepslate.json deleted file mode 100644 index da64ad21..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_reinforced_deepslate.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:reinforced_deepslate" - } - }, - "result": { - "item": "absentbydesign:wall_reinforced_deepslate", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_reinforced_deepslate_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_reinforced_deepslate_sc.json deleted file mode 100644 index 807228f9..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_reinforced_deepslate_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:reinforced_deepslate" - }, - "result": "absentbydesign:wall_reinforced_deepslate", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_rooted_dirt.json b/src/main/resources/data/absentbydesign/recipes/wall_rooted_dirt.json deleted file mode 100644 index 9b266e82..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_rooted_dirt.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:rooted_dirt" - } - }, - "result": { - "item": "absentbydesign:wall_rooted_dirt", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_rooted_dirt_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_rooted_dirt_sc.json deleted file mode 100644 index 463afa48..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_rooted_dirt_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:rooted_dirt" - }, - "result": "absentbydesign:wall_rooted_dirt", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_sandstone_red_smooth.json b/src/main/resources/data/absentbydesign/recipes/wall_sandstone_red_smooth.json deleted file mode 100644 index f3b4b5db..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_sandstone_red_smooth.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:smooth_red_sandstone" - } - }, - "result": { - "item": "absentbydesign:wall_sandstone_red_smooth", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_sandstone_red_smooth_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_sandstone_red_smooth_sc.json deleted file mode 100644 index 0d4012ca..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_sandstone_red_smooth_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:smooth_red_sandstone" - }, - "result": "absentbydesign:wall_sandstone_red_smooth", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_sandstone_smooth.json b/src/main/resources/data/absentbydesign/recipes/wall_sandstone_smooth.json deleted file mode 100644 index 9230547a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_sandstone_smooth.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:smooth_sandstone" - } - }, - "result": { - "item": "absentbydesign:wall_sandstone_smooth", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_sandstone_smooth_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_sandstone_smooth_sc.json deleted file mode 100644 index 1cec023b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_sandstone_smooth_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:smooth_sandstone" - }, - "result": "absentbydesign:wall_sandstone_smooth", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_sculk.json b/src/main/resources/data/absentbydesign/recipes/wall_sculk.json deleted file mode 100644 index b15d59d4..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_sculk.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:sculk" - } - }, - "result": { - "item": "absentbydesign:wall_sculk", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_sculk_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_sculk_sc.json deleted file mode 100644 index f9402676..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_sculk_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:sculk" - }, - "result": "absentbydesign:wall_sculk", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_sea_lantern.json b/src/main/resources/data/absentbydesign/recipes/wall_sea_lantern.json deleted file mode 100644 index 22ce841a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_sea_lantern.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:sea_lantern" - } - }, - "result": { - "item": "absentbydesign:wall_sea_lantern", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_sea_lantern_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_sea_lantern_sc.json deleted file mode 100644 index 3593c459..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_sea_lantern_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:sea_lantern" - }, - "result": "absentbydesign:wall_sea_lantern", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_shroomlight.json b/src/main/resources/data/absentbydesign/recipes/wall_shroomlight.json deleted file mode 100644 index 94c427ab..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_shroomlight.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:shroomlight" - } - }, - "result": { - "item": "absentbydesign:wall_shroomlight", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_shroomlight_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_shroomlight_sc.json deleted file mode 100644 index 4905a709..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_shroomlight_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:shroomlight" - }, - "result": "absentbydesign:wall_shroomlight", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_smooth_basalt.json b/src/main/resources/data/absentbydesign/recipes/wall_smooth_basalt.json deleted file mode 100644 index 94493c3a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_smooth_basalt.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:smooth_basalt" - } - }, - "result": { - "item": "absentbydesign:wall_smooth_basalt", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_smooth_basalt_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_smooth_basalt_sc.json deleted file mode 100644 index 4aaa0085..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_smooth_basalt_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:smooth_basalt" - }, - "result": "absentbydesign:wall_smooth_basalt", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_snow_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_snow_sc.json deleted file mode 100644 index 429bd1c1..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_snow_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:snow_block" - }, - "result": "absentbydesign:wall_snow", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_soul_sand.json b/src/main/resources/data/absentbydesign/recipes/wall_soul_sand.json deleted file mode 100644 index 0c9524ff..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_soul_sand.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:soul_sand" - } - }, - "result": { - "item": "absentbydesign:wall_soul_sand", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_soul_sand_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_soul_sand_sc.json deleted file mode 100644 index e888246f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_soul_sand_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:soul_sand" - }, - "result": "absentbydesign:wall_soul_sand", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_soul_soil.json b/src/main/resources/data/absentbydesign/recipes/wall_soul_soil.json deleted file mode 100644 index 6adf4cb4..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_soul_soil.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:soul_soil" - } - }, - "result": { - "item": "absentbydesign:wall_soul_soil", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_soul_soil_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_soul_soil_sc.json deleted file mode 100644 index b0d17190..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_soul_soil_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:soul_soil" - }, - "result": "absentbydesign:wall_soul_soil", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_spruce_log.json b/src/main/resources/data/absentbydesign/recipes/wall_spruce_log.json deleted file mode 100644 index 6f25aa03..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_spruce_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:spruce_wood" - } - }, - "result": { - "item": "absentbydesign:wall_spruce_log", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_spruce_log_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_spruce_log_sc.json deleted file mode 100644 index 1444f646..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_spruce_log_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:spruce_wood" - }, - "result": "absentbydesign:wall_spruce_log", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_spruce_planks.json b/src/main/resources/data/absentbydesign/recipes/wall_spruce_planks.json deleted file mode 100644 index 30e8c4a5..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_spruce_planks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:spruce_planks" - } - }, - "result": { - "item": "absentbydesign:wall_spruce_planks", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_spruce_planks_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_spruce_planks_sc.json deleted file mode 100644 index 159e1343..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_spruce_planks_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:spruce_planks" - }, - "result": "absentbydesign:wall_spruce_planks", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stone.json b/src/main/resources/data/absentbydesign/recipes/wall_stone.json deleted file mode 100644 index c5b386bd..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stone.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:stone" - } - }, - "result": { - "item": "absentbydesign:wall_stone", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stone_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_stone_sc.json deleted file mode 100644 index 2416b34b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stone_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:stone" - }, - "result": "absentbydesign:wall_stone", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stone_slab.json b/src/main/resources/data/absentbydesign/recipes/wall_stone_slab.json deleted file mode 100644 index f24b97d5..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stone_slab.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:smooth_stone" - } - }, - "result": { - "item": "absentbydesign:wall_stone_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stone_slab_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_stone_slab_sc.json deleted file mode 100644 index c5e61053..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stone_slab_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:smooth_stone" - }, - "result": "absentbydesign:wall_stone_slab", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stonebrick_carved.json b/src/main/resources/data/absentbydesign/recipes/wall_stonebrick_carved.json deleted file mode 100644 index e5ce12a3..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stonebrick_carved.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:chiseled_stone_bricks" - } - }, - "result": { - "item": "absentbydesign:wall_stonebrick_carved", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stonebrick_carved_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_stonebrick_carved_sc.json deleted file mode 100644 index 6ecc658e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stonebrick_carved_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:chiseled_stone_bricks" - }, - "result": "absentbydesign:wall_stonebrick_carved", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stonebrick_cracked.json b/src/main/resources/data/absentbydesign/recipes/wall_stonebrick_cracked.json deleted file mode 100644 index 17bd5242..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stonebrick_cracked.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:cracked_stone_bricks" - } - }, - "result": { - "item": "absentbydesign:wall_stonebrick_cracked", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stonebrick_cracked_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_stonebrick_cracked_sc.json deleted file mode 100644 index 1b6670e1..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stonebrick_cracked_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cracked_stone_bricks" - }, - "result": "absentbydesign:wall_stonebrick_cracked", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stripped_acacia_log.json b/src/main/resources/data/absentbydesign/recipes/wall_stripped_acacia_log.json deleted file mode 100644 index 022aa2a4..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stripped_acacia_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:stripped_acacia_wood" - } - }, - "result": { - "item": "absentbydesign:wall_stripped_acacia_log", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stripped_acacia_log_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_stripped_acacia_log_sc.json deleted file mode 100644 index 5d5da2e8..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stripped_acacia_log_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:stripped_acacia_wood" - }, - "result": "absentbydesign:wall_stripped_acacia_log", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stripped_birch_log.json b/src/main/resources/data/absentbydesign/recipes/wall_stripped_birch_log.json deleted file mode 100644 index 3fcb2614..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stripped_birch_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:stripped_birch_wood" - } - }, - "result": { - "item": "absentbydesign:wall_stripped_birch_log", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stripped_birch_log_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_stripped_birch_log_sc.json deleted file mode 100644 index 76f0cbfc..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stripped_birch_log_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:stripped_birch_wood" - }, - "result": "absentbydesign:wall_stripped_birch_log", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stripped_crimson.json b/src/main/resources/data/absentbydesign/recipes/wall_stripped_crimson.json deleted file mode 100644 index e4eea045..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stripped_crimson.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:stripped_crimson_hyphae" - } - }, - "result": { - "item": "absentbydesign:wall_stripped_crimson", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stripped_crimson_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_stripped_crimson_sc.json deleted file mode 100644 index 5434757f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stripped_crimson_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:stripped_crimson_hyphae" - }, - "result": "absentbydesign:wall_stripped_crimson", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stripped_dark_oak_log.json b/src/main/resources/data/absentbydesign/recipes/wall_stripped_dark_oak_log.json deleted file mode 100644 index 7829cb4d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stripped_dark_oak_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:stripped_dark_oak_wood" - } - }, - "result": { - "item": "absentbydesign:wall_stripped_dark_oak_log", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stripped_dark_oak_log_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_stripped_dark_oak_log_sc.json deleted file mode 100644 index 543559b7..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stripped_dark_oak_log_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:stripped_dark_oak_wood" - }, - "result": "absentbydesign:wall_stripped_dark_oak_log", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stripped_jungle_log.json b/src/main/resources/data/absentbydesign/recipes/wall_stripped_jungle_log.json deleted file mode 100644 index ce86e929..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stripped_jungle_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:stripped_jungle_wood" - } - }, - "result": { - "item": "absentbydesign:wall_stripped_jungle_log", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stripped_jungle_log_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_stripped_jungle_log_sc.json deleted file mode 100644 index 417f591c..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stripped_jungle_log_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:stripped_jungle_wood" - }, - "result": "absentbydesign:wall_stripped_jungle_log", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stripped_mangrove_log.json b/src/main/resources/data/absentbydesign/recipes/wall_stripped_mangrove_log.json deleted file mode 100644 index 8ea52031..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stripped_mangrove_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:stripped_mangrove_log" - } - }, - "result": { - "item": "absentbydesign:wall_stripped_mangrove_log", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stripped_mangrove_log_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_stripped_mangrove_log_sc.json deleted file mode 100644 index 9d0c303d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stripped_mangrove_log_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:stripped_mangrove_log" - }, - "result": "absentbydesign:wall_stripped_mangrove_log", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stripped_oak_log.json b/src/main/resources/data/absentbydesign/recipes/wall_stripped_oak_log.json deleted file mode 100644 index a80692e9..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stripped_oak_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:stripped_oak_wood" - } - }, - "result": { - "item": "absentbydesign:wall_stripped_oak_log", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stripped_oak_log_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_stripped_oak_log_sc.json deleted file mode 100644 index f802ed80..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stripped_oak_log_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:stripped_oak_wood" - }, - "result": "absentbydesign:wall_stripped_oak_log", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stripped_spruce_log.json b/src/main/resources/data/absentbydesign/recipes/wall_stripped_spruce_log.json deleted file mode 100644 index 141cf1ca..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stripped_spruce_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:stripped_spruce_wood" - } - }, - "result": { - "item": "absentbydesign:wall_stripped_spruce_log", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stripped_spruce_log_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_stripped_spruce_log_sc.json deleted file mode 100644 index 8d53d4ca..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stripped_spruce_log_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:stripped_spruce_wood" - }, - "result": "absentbydesign:wall_stripped_spruce_log", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stripped_warped.json b/src/main/resources/data/absentbydesign/recipes/wall_stripped_warped.json deleted file mode 100644 index 32ee49ac..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stripped_warped.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:stripped_warped_hyphae" - } - }, - "result": { - "item": "absentbydesign:wall_stripped_warped", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_stripped_warped_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_stripped_warped_sc.json deleted file mode 100644 index 000aa9f9..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_stripped_warped_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:stripped_warped_hyphae" - }, - "result": "absentbydesign:wall_stripped_warped", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_black.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_black.json deleted file mode 100644 index 541fc620..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_black.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:black_terracotta" - } - }, - "result": { - "item": "absentbydesign:wall_terracotta_black", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_black_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_black_sc.json deleted file mode 100644 index 3290999f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_black_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:black_terracotta" - }, - "result": "absentbydesign:wall_terracotta_black", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_blue.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_blue.json deleted file mode 100644 index 0c515fdd..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_blue.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:blue_terracotta" - } - }, - "result": { - "item": "absentbydesign:wall_terracotta_blue", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_blue_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_blue_sc.json deleted file mode 100644 index a628df57..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_blue_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:blue_terracotta" - }, - "result": "absentbydesign:wall_terracotta_blue", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_brown.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_brown.json deleted file mode 100644 index 777333f1..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_brown.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:brown_terracotta" - } - }, - "result": { - "item": "absentbydesign:wall_terracotta_brown", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_brown_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_brown_sc.json deleted file mode 100644 index 2293e212..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_brown_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:brown_terracotta" - }, - "result": "absentbydesign:wall_terracotta_brown", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_cyan.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_cyan.json deleted file mode 100644 index 3dcf0a29..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_cyan.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:cyan_terracotta" - } - }, - "result": { - "item": "absentbydesign:wall_terracotta_cyan", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_cyan_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_cyan_sc.json deleted file mode 100644 index dc3fdf98..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_cyan_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cyan_terracotta" - }, - "result": "absentbydesign:wall_terracotta_cyan", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_gray.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_gray.json deleted file mode 100644 index 0d4c74a9..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_gray.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:gray_terracotta" - } - }, - "result": { - "item": "absentbydesign:wall_terracotta_gray", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_gray_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_gray_sc.json deleted file mode 100644 index fc00a1b7..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_gray_sc.json +++ /dev/null @@ -1,9 +0,0 @@ - -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:gray_terracotta" - }, - "result": "absentbydesign:wall_terracotta_gray", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_green.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_green.json deleted file mode 100644 index d5a345eb..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_green.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:green_terracotta" - } - }, - "result": { - "item": "absentbydesign:wall_terracotta_green", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_green_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_green_sc.json deleted file mode 100644 index 4b3a9560..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_green_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:green_terracotta" - }, - "result": "absentbydesign:wall_terracotta_green", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_light_blue.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_light_blue.json deleted file mode 100644 index cef2a426..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_light_blue.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:light_blue_terracotta" - } - }, - "result": { - "item": "absentbydesign:wall_terracotta_light_blue", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_light_blue_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_light_blue_sc.json deleted file mode 100644 index edf1387a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_light_blue_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:light_blue_terracotta" - }, - "result": "absentbydesign:wall_terracotta_light_blue", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_light_gray.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_light_gray.json deleted file mode 100644 index 0ea84f00..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_light_gray.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:light_gray_terracotta" - } - }, - "result": { - "item": "absentbydesign:wall_terracotta_light_gray", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_light_gray_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_light_gray_sc.json deleted file mode 100644 index fa69a9de..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_light_gray_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:light_gray_terracotta" - }, - "result": "absentbydesign:wall_terracotta_light_gray", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_lime.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_lime.json deleted file mode 100644 index a7c86c7d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_lime.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:lime_terracotta" - } - }, - "result": { - "item": "absentbydesign:wall_terracotta_lime", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_lime_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_lime_sc.json deleted file mode 100644 index 98a2a44b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_lime_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:lime_terracotta" - }, - "result": "absentbydesign:wall_terracotta_lime", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_magenta.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_magenta.json deleted file mode 100644 index fec681b3..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_magenta.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:magenta_terracotta" - } - }, - "result": { - "item": "absentbydesign:wall_terracotta_magenta", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_magenta_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_magenta_sc.json deleted file mode 100644 index 72aa3c30..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_magenta_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:magenta_terracotta" - }, - "result": "absentbydesign:wall_terracotta_magenta", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_orange.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_orange.json deleted file mode 100644 index 29933802..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_orange.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:orange_terracotta" - } - }, - "result": { - "item": "absentbydesign:wall_terracotta_orange", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_orange_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_orange_sc.json deleted file mode 100644 index 747cc9d0..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_orange_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:orange_terracotta" - }, - "result": "absentbydesign:wall_terracotta_orange", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_pink.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_pink.json deleted file mode 100644 index dbcbac0b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_pink.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:pink_terracotta" - } - }, - "result": { - "item": "absentbydesign:wall_terracotta_pink", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_pink_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_pink_sc.json deleted file mode 100644 index 3683678f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_pink_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:pink_terracotta" - }, - "result": "absentbydesign:wall_terracotta_pink", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_purple.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_purple.json deleted file mode 100644 index 995cad23..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_purple.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:purple_terracotta" - } - }, - "result": { - "item": "absentbydesign:wall_terracotta_purple", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_purple_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_purple_sc.json deleted file mode 100644 index 0739fb15..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_purple_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:purple_terracotta" - }, - "result": "absentbydesign:wall_terracotta_purple", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_red.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_red.json deleted file mode 100644 index e4f32656..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_red.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:red_terracotta" - } - }, - "result": { - "item": "absentbydesign:wall_terracotta_red", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_red_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_red_sc.json deleted file mode 100644 index 44979b16..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_red_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:red_terracotta" - }, - "result": "absentbydesign:wall_terracotta_red", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_white.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_white.json deleted file mode 100644 index 465710e3..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_white.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:white_terracotta" - } - }, - "result": { - "item": "absentbydesign:wall_terracotta_white", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_white_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_white_sc.json deleted file mode 100644 index 7cb78d94..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_white_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:white_terracotta" - }, - "result": "absentbydesign:wall_terracotta_white", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_yellow.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_yellow.json deleted file mode 100644 index a57e6fe5..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_yellow.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:yellow_terracotta" - } - }, - "result": { - "item": "absentbydesign:wall_terracotta_yellow", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_yellow_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_terracotta_yellow_sc.json deleted file mode 100644 index 2c9d638e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_terracotta_yellow_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:yellow_terracotta" - }, - "result": "absentbydesign:wall_terracotta_yellow", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_tuff.json b/src/main/resources/data/absentbydesign/recipes/wall_tuff.json deleted file mode 100644 index 100b32dd..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_tuff.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:tuff" - } - }, - "result": { - "item": "absentbydesign:wall_tuff", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_tuff_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_tuff_sc.json deleted file mode 100644 index ff31bd8e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_tuff_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:tuff" - }, - "result": "absentbydesign:wall_tuff", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_verdant_froglight.json b/src/main/resources/data/absentbydesign/recipes/wall_verdant_froglight.json deleted file mode 100644 index e6a939a9..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_verdant_froglight.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:verdant_froglight" - } - }, - "result": { - "item": "absentbydesign:wall_verdant_froglight", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_verdant_froglight_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_verdant_froglight_sc.json deleted file mode 100644 index 5ba08c39..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_verdant_froglight_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:verdant_froglight" - }, - "result": "absentbydesign:wall_verdant_froglight", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_warped.json b/src/main/resources/data/absentbydesign/recipes/wall_warped.json deleted file mode 100644 index 16d8a9df..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_warped.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:warped_hyphae" - } - }, - "result": { - "item": "absentbydesign:wall_warped", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_warped_planks.json b/src/main/resources/data/absentbydesign/recipes/wall_warped_planks.json deleted file mode 100644 index 71b5b6bf..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_warped_planks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "# #" - ], - "key": { - "#": { - "item": "minecraft:warped_planks" - } - }, - "result": { - "item": "absentbydesign:wall_warped_planks", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_warped_planks_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_warped_planks_sc.json deleted file mode 100644 index 2982ba07..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_warped_planks_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:warped_planks" - }, - "result": "absentbydesign:wall_warped_planks", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_warped_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_warped_sc.json deleted file mode 100644 index 7f78f027..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_warped_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:warped_hyphae" - }, - "result": "absentbydesign:wall_warped", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_black.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_black.json deleted file mode 100644 index 52bb95a7..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_black.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:black_wool" - } - }, - "result": { - "item": "absentbydesign:wall_wool_black", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_black_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_black_sc.json deleted file mode 100644 index 1265aad2..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_black_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:black_wool" - }, - "result": "absentbydesign:wall_wool_black", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_blue.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_blue.json deleted file mode 100644 index 10fbaeba..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_blue.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:blue_wool" - } - }, - "result": { - "item": "absentbydesign:wall_wool_blue", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_blue_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_blue_sc.json deleted file mode 100644 index 293fc737..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_blue_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:blue_wool" - }, - "result": "absentbydesign:wall_wool_blue", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_brown.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_brown.json deleted file mode 100644 index 9e46b18e..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_brown.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:brown_wool" - } - }, - "result": { - "item": "absentbydesign:wall_wool_brown", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_brown_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_brown_sc.json deleted file mode 100644 index 41d5f06f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_brown_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:brown_wool" - }, - "result": "absentbydesign:wall_wool_brown", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_cyan.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_cyan.json deleted file mode 100644 index 48369178..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_cyan.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:cyan_wool" - } - }, - "result": { - "item": "absentbydesign:wall_wool_cyan", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_cyan_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_cyan_sc.json deleted file mode 100644 index 00f22b68..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_cyan_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cyan_wool" - }, - "result": "absentbydesign:wall_wool_cyan", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_gray.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_gray.json deleted file mode 100644 index 45dc603f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_gray.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:gray_wool" - } - }, - "result": { - "item": "absentbydesign:wall_wool_gray", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_gray_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_gray_sc.json deleted file mode 100644 index e6b71dd4..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_gray_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:gray_wool" - }, - "result": "absentbydesign:wall_wool_gray", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_green.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_green.json deleted file mode 100644 index 6e8e9d46..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_green.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:green_wool" - } - }, - "result": { - "item": "absentbydesign:wall_wool_green", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_green_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_green_sc.json deleted file mode 100644 index 9b36dfbc..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_green_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:green_wool" - }, - "result": "absentbydesign:wall_wool_green", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_light_blue.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_light_blue.json deleted file mode 100644 index 21934c7a..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_light_blue.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:light_blue_wool" - } - }, - "result": { - "item": "absentbydesign:wall_wool_light_blue", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_light_blue_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_light_blue_sc.json deleted file mode 100644 index e4a6882c..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_light_blue_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:light_blue_wool" - }, - "result": "absentbydesign:wall_wool_light_blue", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_light_gray.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_light_gray.json deleted file mode 100644 index 17fc918b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_light_gray.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:light_gray_wool" - } - }, - "result": { - "item": "absentbydesign:wall_wool_light_gray", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_light_gray_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_light_gray_sc.json deleted file mode 100644 index 818024c3..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_light_gray_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:light_gray_wool" - }, - "result": "absentbydesign:wall_wool_light_gray", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_lime.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_lime.json deleted file mode 100644 index 7afb324f..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_lime.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:lime_wool" - } - }, - "result": { - "item": "absentbydesign:wall_wool_lime", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_lime_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_lime_sc.json deleted file mode 100644 index f24d16aa..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_lime_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:lime_wool" - }, - "result": "absentbydesign:wall_wool_lime", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_magenta.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_magenta.json deleted file mode 100644 index 0621198d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_magenta.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:magenta_wool" - } - }, - "result": { - "item": "absentbydesign:wall_wool_magenta", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_magenta_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_magenta_sc.json deleted file mode 100644 index fb33e436..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_magenta_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:magenta_wool" - }, - "result": "absentbydesign:wall_wool_magenta", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_orange.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_orange.json deleted file mode 100644 index 05d6ae0d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_orange.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:orange_wool" - } - }, - "result": { - "item": "absentbydesign:wall_wool_orange", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_orange_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_orange_sc.json deleted file mode 100644 index f80e1d7b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_orange_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:orange_wool" - }, - "result": "absentbydesign:wall_wool_orange", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_pink.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_pink.json deleted file mode 100644 index 05dbbabf..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_pink.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:pink_wool" - } - }, - "result": { - "item": "absentbydesign:wall_wool_pink", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_pink_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_pink_sc.json deleted file mode 100644 index ef5d1d8b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_pink_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:pink_wool" - }, - "result": "absentbydesign:wall_wool_pink", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_purple.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_purple.json deleted file mode 100644 index 4207b9e4..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_purple.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:purple_wool" - } - }, - "result": { - "item": "absentbydesign:wall_wool_purple", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_purple_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_purple_sc.json deleted file mode 100644 index 1f9162ba..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_purple_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:purple_wool" - }, - "result": "absentbydesign:wall_wool_purple", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_red.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_red.json deleted file mode 100644 index ba6cb3fc..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_red.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:red_wool" - } - }, - "result": { - "item": "absentbydesign:wall_wool_red", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_red_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_red_sc.json deleted file mode 100644 index 90c52dda..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_red_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:red_wool" - }, - "result": "absentbydesign:wall_wool_red", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_white.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_white.json deleted file mode 100644 index 284a5d0d..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_white.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:white_wool" - } - }, - "result": { - "item": "absentbydesign:wall_wool_white", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_white_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_white_sc.json deleted file mode 100644 index 0e417806..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_white_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:white_wool" - }, - "result": "absentbydesign:wall_wool_white", - "count": 1 -} diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_yellow.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_yellow.json deleted file mode 100644 index db0a5c99..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_yellow.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:yellow_wool" - } - }, - "result": { - "item": "absentbydesign:wall_wool_yellow", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/absentbydesign/recipes/wall_wool_yellow_sc.json b/src/main/resources/data/absentbydesign/recipes/wall_wool_yellow_sc.json deleted file mode 100644 index 3849221b..00000000 --- a/src/main/resources/data/absentbydesign/recipes/wall_wool_yellow_sc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:yellow_wool" - }, - "result": "absentbydesign:wall_wool_yellow", - "count": 1 -} diff --git a/src/main/resources/data/minecraft/tags/blocks/dragon_immune.json b/src/main/resources/data/minecraft/tags/block/dragon_immune.json similarity index 100% rename from src/main/resources/data/minecraft/tags/blocks/dragon_immune.json rename to src/main/resources/data/minecraft/tags/block/dragon_immune.json diff --git a/src/main/resources/data/minecraft/tags/blocks/fence_gates.json b/src/main/resources/data/minecraft/tags/block/fence_gates.json similarity index 100% rename from src/main/resources/data/minecraft/tags/blocks/fence_gates.json rename to src/main/resources/data/minecraft/tags/block/fence_gates.json diff --git a/src/main/resources/data/minecraft/tags/blocks/fences.json b/src/main/resources/data/minecraft/tags/block/fences.json similarity index 100% rename from src/main/resources/data/minecraft/tags/blocks/fences.json rename to src/main/resources/data/minecraft/tags/block/fences.json diff --git a/src/main/resources/data/minecraft/tags/blocks/mineable/axe.json b/src/main/resources/data/minecraft/tags/block/mineable/axe.json similarity index 100% rename from src/main/resources/data/minecraft/tags/blocks/mineable/axe.json rename to src/main/resources/data/minecraft/tags/block/mineable/axe.json diff --git a/src/main/resources/data/minecraft/tags/blocks/mineable/hoe.json b/src/main/resources/data/minecraft/tags/block/mineable/hoe.json similarity index 100% rename from src/main/resources/data/minecraft/tags/blocks/mineable/hoe.json rename to src/main/resources/data/minecraft/tags/block/mineable/hoe.json diff --git a/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json b/src/main/resources/data/minecraft/tags/block/mineable/pickaxe.json similarity index 100% rename from src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json rename to src/main/resources/data/minecraft/tags/block/mineable/pickaxe.json diff --git a/src/main/resources/data/minecraft/tags/blocks/mineable/shears.json b/src/main/resources/data/minecraft/tags/block/mineable/shears.json similarity index 100% rename from src/main/resources/data/minecraft/tags/blocks/mineable/shears.json rename to src/main/resources/data/minecraft/tags/block/mineable/shears.json diff --git a/src/main/resources/data/minecraft/tags/blocks/mineable/shovel.json b/src/main/resources/data/minecraft/tags/block/mineable/shovel.json similarity index 100% rename from src/main/resources/data/minecraft/tags/blocks/mineable/shovel.json rename to src/main/resources/data/minecraft/tags/block/mineable/shovel.json diff --git a/src/main/resources/data/minecraft/tags/blocks/slabs.json b/src/main/resources/data/minecraft/tags/block/slabs.json similarity index 100% rename from src/main/resources/data/minecraft/tags/blocks/slabs.json rename to src/main/resources/data/minecraft/tags/block/slabs.json diff --git a/src/main/resources/data/minecraft/tags/blocks/soul_fire_base_blocks.json b/src/main/resources/data/minecraft/tags/block/soul_fire_base_blocks.json similarity index 100% rename from src/main/resources/data/minecraft/tags/blocks/soul_fire_base_blocks.json rename to src/main/resources/data/minecraft/tags/block/soul_fire_base_blocks.json diff --git a/src/main/resources/data/minecraft/tags/blocks/soul_speed_blocks.json b/src/main/resources/data/minecraft/tags/block/soul_speed_blocks.json similarity index 100% rename from src/main/resources/data/minecraft/tags/blocks/soul_speed_blocks.json rename to src/main/resources/data/minecraft/tags/block/soul_speed_blocks.json diff --git a/src/main/resources/data/minecraft/tags/blocks/stairs.json b/src/main/resources/data/minecraft/tags/block/stairs.json similarity index 100% rename from src/main/resources/data/minecraft/tags/blocks/stairs.json rename to src/main/resources/data/minecraft/tags/block/stairs.json diff --git a/src/main/resources/data/minecraft/tags/blocks/trapdoors.json b/src/main/resources/data/minecraft/tags/block/trapdoors.json similarity index 100% rename from src/main/resources/data/minecraft/tags/blocks/trapdoors.json rename to src/main/resources/data/minecraft/tags/block/trapdoors.json diff --git a/src/main/resources/data/minecraft/tags/blocks/walls.json b/src/main/resources/data/minecraft/tags/block/walls.json similarity index 100% rename from src/main/resources/data/minecraft/tags/blocks/walls.json rename to src/main/resources/data/minecraft/tags/block/walls.json diff --git a/src/main/resources/data/minecraft/tags/blocks/wither_immune.json b/src/main/resources/data/minecraft/tags/block/wither_immune.json similarity index 100% rename from src/main/resources/data/minecraft/tags/blocks/wither_immune.json rename to src/main/resources/data/minecraft/tags/block/wither_immune.json diff --git a/src/main/resources/data/minecraft/tags/items/fence_gates.json b/src/main/resources/data/minecraft/tags/item/fence_gates.json similarity index 100% rename from src/main/resources/data/minecraft/tags/items/fence_gates.json rename to src/main/resources/data/minecraft/tags/item/fence_gates.json diff --git a/src/main/resources/data/minecraft/tags/items/fences.json b/src/main/resources/data/minecraft/tags/item/fences.json similarity index 100% rename from src/main/resources/data/minecraft/tags/items/fences.json rename to src/main/resources/data/minecraft/tags/item/fences.json diff --git a/src/main/resources/data/minecraft/tags/items/slabs.json b/src/main/resources/data/minecraft/tags/item/slabs.json similarity index 100% rename from src/main/resources/data/minecraft/tags/items/slabs.json rename to src/main/resources/data/minecraft/tags/item/slabs.json diff --git a/src/main/resources/data/minecraft/tags/items/soul_fire_base_blocks.json b/src/main/resources/data/minecraft/tags/item/soul_fire_base_blocks.json similarity index 100% rename from src/main/resources/data/minecraft/tags/items/soul_fire_base_blocks.json rename to src/main/resources/data/minecraft/tags/item/soul_fire_base_blocks.json diff --git a/src/main/resources/data/minecraft/tags/items/stairs.json b/src/main/resources/data/minecraft/tags/item/stairs.json similarity index 100% rename from src/main/resources/data/minecraft/tags/items/stairs.json rename to src/main/resources/data/minecraft/tags/item/stairs.json diff --git a/src/main/resources/data/minecraft/tags/items/trapdoors.json b/src/main/resources/data/minecraft/tags/item/trapdoors.json similarity index 100% rename from src/main/resources/data/minecraft/tags/items/trapdoors.json rename to src/main/resources/data/minecraft/tags/item/trapdoors.json diff --git a/src/main/resources/data/minecraft/tags/items/walls.json b/src/main/resources/data/minecraft/tags/item/walls.json similarity index 100% rename from src/main/resources/data/minecraft/tags/items/walls.json rename to src/main/resources/data/minecraft/tags/item/walls.json diff --git a/src/main/templates/META-INF/neoforge.mods.toml b/src/main/templates/META-INF/neoforge.mods.toml new file mode 100644 index 00000000..4cf29c38 --- /dev/null +++ b/src/main/templates/META-INF/neoforge.mods.toml @@ -0,0 +1,76 @@ +# This is an example neoforge.mods.toml file. It contains the data relating to the loading mods. +# There are several mandatory fields (#mandatory), and many more that are optional (#optional). +# The overall format is standard TOML format, v0.5.0. +# Note that there are a couple of TOML lists in this file. +# Find more information on toml format here: https://github.com/toml-lang/toml +# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml +modLoader="javafml" #mandatory +license="${mod_license}" + +# A version range to match for said mod loader - for regular FML @Mod it will be the FML version. This is currently 2. +loaderVersion="${loader_version_range}" #mandatory + +# A URL to refer people to when problems occur with this mod +issueTrackerURL="https://github.com/Lothrazar/${mod_id}/issues" #optional +# A list of mods - how many allowed here is determined by the individual mod loader +[[mods]] #mandatory +# The modid of the mod +modId="${mod_id}" #mandatory +# The version number of the mod - there's a few well known ${} variables useable here or just hardcode it +version="${mod_version}" #mandatory + # A display name for the mod + +displayName="${mod_name}" #mandatory +# A URL to query for updates for this mod. See the JSON update specification +updateJSONURL="https://raw.githubusercontent.com/Lothrazar/${mod_id}/trunk/${minecraft_version}/update.json" #optional +# A URL for the "homepage" for this mod, displayed in the mod UI # replace with your website +displayURL="https://www.curseforge.com/minecraft/mc-mods/${mod_id}" + +# A file name (in the root of the mod JAR) containing a logo for display +logoFile="logoFile.png" #optional + +# A text field displayed in the mod UI +authors="${mod_authors}" #optional +# The description text for the mod (multi line!) (#mandatory) + +description=''' +${mod_description} +''' +# The [[mixins]] block allows you to declare your mixin config to FML so that it gets loaded. +#[[mixins]] +#config="${mod_id}.mixins.json" + + +# The [[accessTransformers]] block allows you to declare where your AT file is. +# If this block is omitted, a fallback attempt will be made to load an AT from META-INF/accesstransformer.cfg +[[accessTransformers]] + file="META-INF/accesstransformer.cfg" + +# A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional. +[[dependencies.${mod_id}]] #optional + # the modid of the dependency + modId="neoforge" #mandatory + # Does this dependency have to exist - if not, ordering below must be specified + type="required" # was mandatory=true + # The version range of the dependency + versionRange="[${neo_version},)" #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" +# Here's another dependency +[[dependencies.${mod_id}]] + modId="minecraft" + type="required" # was mandatory=true + versionRange="[${minecraft_version},)" + ordering="NONE" + side="BOTH" +[[dependencies.${mod_id}]] + modId="flib" + type="required" + versionRange="[0.1.0,)" + ordering="NONE" + side="BOTH" + +#[features.${mod_id}] +#openGLVersion="[3.2,)" \ No newline at end of file diff --git a/update.json b/update.json index 876844ec..f2260a2c 100644 --- a/update.json +++ b/update.json @@ -2,7 +2,8 @@ "homepage": "https://www.curseforge.com/minecraft/mc-mods/absent-by-design", "promos": { "1.19.4-latest": "1.7.1", - "1.20.1-latest": "1.9.1" + "1.20.1-latest": "1.9.1", + "1.21.1-latest": "1.9.1" }, "1.19.4": { "1.5.0": "ported",